Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions apps/flipcash/core/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -244,10 +244,10 @@
<string name="error_title_paymentFailedDueToInsufficientFunds">Insufficient Balance</string>
<string name="error_description_paymentFailedDueToInsufficientFunds">You don\'t have enough funds to complete this payment</string>

<plurals name="subtitle_personCount">
<item quantity="zero">0 people</item>
<item quantity="one">1 person</item>
<item quantity="other">%1$s people</item>
<plurals name="subtitle_memberCount">
<item quantity="zero">0 members</item>
<item quantity="one">1 member</item>
<item quantity="other">%1$s members</item>
</plurals>

<string name="action_addCash">Add Cash</string>
Expand Down Expand Up @@ -826,7 +826,7 @@

<string name="content_description_leaderboard">Learn more</string>
<string name="prompt_title_learnAboutLeaderboard">Leaderboard Ranking</string>
<string name="prompt_description_learnAboutLeaderboard">People must have a minimum balance of %1$s to be counted</string>
<string name="prompt_description_learnAboutLeaderboard">Members must have a minimum balance of %1$s to be counted</string>

<string name="action_invite">Invite</string>
<string name="action_remove">Remove</string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
)
Expand Down Expand Up @@ -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()
)
Expand Down
Loading