diff --git a/apps/flipcash/core/src/main/res/values/strings.xml b/apps/flipcash/core/src/main/res/values/strings.xml index fb0429def..11c552e48 100644 --- a/apps/flipcash/core/src/main/res/values/strings.xml +++ b/apps/flipcash/core/src/main/res/values/strings.xml @@ -244,10 +244,10 @@ Insufficient Balance You don\'t have enough funds to complete this payment - - 0 people - 1 person - %1$s people + + 0 members + 1 member + %1$s members Add Cash @@ -826,7 +826,7 @@ Learn more Leaderboard Ranking - People must have a minimum balance of %1$s to be counted + Members must have a minimum balance of %1$s to be counted Invite Remove diff --git a/apps/flipcash/features/discovery/src/main/kotlin/com/flipcash/app/discovery/internal/components/TokenMetricsRow.kt b/apps/flipcash/features/discovery/src/main/kotlin/com/flipcash/app/discovery/internal/components/TokenMetricsRow.kt index 0a1395a6e..750359319 100644 --- a/apps/flipcash/features/discovery/src/main/kotlin/com/flipcash/app/discovery/internal/components/TokenMetricsRow.kt +++ b/apps/flipcash/features/discovery/src/main/kotlin/com/flipcash/app/discovery/internal/components/TokenMetricsRow.kt @@ -97,7 +97,7 @@ internal fun TokenMetricsRow( val subtitle = token.marketCap()?.formatted().orEmpty() val value = pluralStringResource( - R.plurals.subtitle_personCount, + R.plurals.subtitle_memberCount, token.holderMetrics.currentHolders.toInt(), token.holderMetrics.currentHolders.abbreviated() ) @@ -146,7 +146,7 @@ internal fun TokenMetricsRow( val value = currentCap?.let { "$currencySymbol${it.abbreviated()}" }.orEmpty() val subtitle = pluralStringResource( - R.plurals.subtitle_personCount, + R.plurals.subtitle_memberCount, token.holderMetrics.currentHolders.toInt(), token.holderMetrics.currentHolders.abbreviated() )