From 5cc6b8766a234f00c426ac1d9b3dbabc970333aa Mon Sep 17 00:00:00 2001 From: Brandon McAnsh Date: Wed, 26 Aug 2026 08:51:27 -0400 Subject: [PATCH] chore(discovery): say "members" instead of "people" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The leaderboard subtitle and the leaderboard info prompt both described token holders as people. Switch both to "members". `subtitle_personCount` is only referenced from the Discovery leaderboard rows, so it is renamed to `subtitle_memberCount` rather than left with a stale key. The internal `holder` naming (`HolderMetrics`, `RankingSystem.Holders`) is unchanged — it is not user-facing and mirrors the backend model. --- apps/flipcash/core/src/main/res/values/strings.xml | 10 +++++----- .../discovery/internal/components/TokenMetricsRow.kt | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) 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() )