diff --git a/crowdin.yml b/crowdin.yml index f502e1d..ca723a7 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -5,6 +5,7 @@ preserve_hierarchy: true files: - source: ui/src/commonMain/moko-resources/base/plurals.xml translation: ui/src/commonMain/moko-resources/%locale%/plurals.xml + update_option: update_as_unapproved ignore: - ui/src/commonMain/moko-resources/images/ - ui/src/commonMain/moko-resources/files/ diff --git a/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/home/component/FeedRepoCard.kt b/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/home/component/FeedRepoCard.kt index 56c6c14..45a0112 100644 --- a/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/home/component/FeedRepoCard.kt +++ b/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/home/component/FeedRepoCard.kt @@ -41,6 +41,7 @@ import com.materiiapps.gloom.api.dto.user.User import com.materiiapps.gloom.gql.fragment.FeedRepository import com.materiiapps.gloom.ui.component.Avatar import com.materiiapps.gloom.ui.screen.repo.RepoScreen +import com.materiiapps.gloom.ui.util.NumberFormatter import com.materiiapps.gloom.ui.util.navigate import com.materiiapps.gloom.ui.util.parsedColor import com.materiiapps.gloom.ui.util.pluralStringResource @@ -129,7 +130,7 @@ fun FeedRepoCard( modifier = Modifier.size(18.dp), tint = starColor ) - Text(text = starCount.toString()) + Text(text = NumberFormatter.compact(starCount)) } if (repo.primaryLanguage != null) { @@ -163,8 +164,9 @@ fun FeedRepoCard( text = pluralStringResource( res = Res.plurals.noun_contributors, count = repo.contributorsCount, - repo.contributorsCount - ), style = MaterialTheme.typography.labelLarge + NumberFormatter.compact(repo.contributorsCount) + ), + style = MaterialTheme.typography.labelLarge ) } diff --git a/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/home/component/FeedUserCard.kt b/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/home/component/FeedUserCard.kt index 94c8fd3..ec8203d 100644 --- a/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/home/component/FeedUserCard.kt +++ b/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/home/component/FeedUserCard.kt @@ -32,6 +32,7 @@ import com.materiiapps.gloom.gql.fragment.FeedOrg import com.materiiapps.gloom.gql.fragment.FeedUser import com.materiiapps.gloom.ui.component.Avatar import com.materiiapps.gloom.ui.screen.profile.ProfileScreen +import com.materiiapps.gloom.ui.util.NumberFormatter import com.materiiapps.gloom.ui.util.navigate import com.materiiapps.gloom.ui.util.pluralStringResource import dev.icerock.moko.resources.compose.stringResource @@ -131,7 +132,7 @@ fun FeedUserCard( pluralStringResource( Res.plurals.repositories, count = repos ?: 0, - repos ?: 0 + NumberFormatter.compact(repos ?: 0) ) ) } @@ -150,7 +151,7 @@ fun FeedUserCard( pluralStringResource( Res.plurals.followers, count = followers, - followers + NumberFormatter.compact(followers) ) ) } diff --git a/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/profile/ProfileScreen.kt b/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/profile/ProfileScreen.kt index cf2b159..8b2384c 100644 --- a/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/profile/ProfileScreen.kt +++ b/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/profile/ProfileScreen.kt @@ -101,6 +101,7 @@ import com.materiiapps.gloom.ui.screen.list.SponsoringScreen import com.materiiapps.gloom.ui.screen.list.StarredReposListScreen import com.materiiapps.gloom.ui.screen.settings.SettingsScreen import com.materiiapps.gloom.ui.util.EmojiUtil +import com.materiiapps.gloom.ui.util.NumberFormatter import com.materiiapps.gloom.ui.util.navigate import com.materiiapps.gloom.ui.screen.profile.viewmodel.ProfileViewModel import com.materiiapps.gloom.ui.widget.ReadMeCard @@ -382,7 +383,7 @@ open class ProfileScreen( pluralStringResource( Res.plurals.followers, (user.followers ?: 0).toInt(), - user.followers ?: 0 + NumberFormatter.compact((user.followers ?: 0).toInt()) ) ) } @@ -397,7 +398,7 @@ open class ProfileScreen( pluralStringResource( Res.plurals.following, (user.following ?: 0).toInt(), - user.following ?: 0 + NumberFormatter.compact((user.following ?: 0).toInt()) ) ) } diff --git a/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/repo/component/RepoItem.kt b/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/repo/component/RepoItem.kt index df5f542..aa3267e 100644 --- a/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/repo/component/RepoItem.kt +++ b/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/repo/component/RepoItem.kt @@ -35,6 +35,8 @@ import com.materiiapps.gloom.ui.component.Avatar import com.materiiapps.gloom.ui.icon.Custom import com.materiiapps.gloom.ui.icon.custom.Fork import com.materiiapps.gloom.ui.screen.repo.RepoScreen +import com.materiiapps.gloom.ui.theme.colors +import com.materiiapps.gloom.ui.util.NumberFormatter import com.materiiapps.gloom.ui.util.navigate import com.materiiapps.gloom.ui.util.parsedColor import dev.icerock.moko.resources.compose.stringResource @@ -141,9 +143,9 @@ fun RepoItem( Icons.Outlined.Star, contentDescription = null, modifier = Modifier.size(18.dp), - tint = Color(0xFFF1E05A) + tint = MaterialTheme.colors.statusYellow ) - Text(text = repo.stars.toString()) + Text(text = NumberFormatter.compact(repo.stars ?: 0)) } diff --git a/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/repo/tab/DetailsTab.kt b/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/repo/tab/DetailsTab.kt index 3953095..b087a06 100644 --- a/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/repo/tab/DetailsTab.kt +++ b/ui/src/commonMain/kotlin/com/materiiapps/gloom/ui/screen/repo/tab/DetailsTab.kt @@ -45,6 +45,7 @@ import com.materiiapps.gloom.ui.icon.Custom import com.materiiapps.gloom.ui.icon.custom.Fork import com.materiiapps.gloom.ui.screen.repo.LicenseScreen import com.materiiapps.gloom.ui.screen.repo.RepoScreen +import com.materiiapps.gloom.ui.util.NumberFormatter import com.materiiapps.gloom.ui.util.navigate import com.materiiapps.gloom.ui.util.pluralStringResource import com.materiiapps.gloom.ui.screen.repo.viewmodel.RepoDetailsViewModel @@ -154,7 +155,7 @@ class DetailsTab( text = pluralStringResource( res = Res.plurals.stars, count = repoDetails.stargazerCount, - repoDetails.stargazerCount + NumberFormatter.compact(repoDetails.stargazerCount) ), onClick = viewModel::toggleStar, enabled = !viewModel.isStarLoading @@ -173,7 +174,7 @@ class DetailsTab( text = pluralStringResource( res = Res.plurals.forks, count = repoDetails.forkCount, - repoDetails.forkCount + NumberFormatter.compact(repoDetails.forkCount) ), onClick = { /* TODO */ } ) diff --git a/ui/src/commonMain/moko-resources/af-ZA/plurals.xml b/ui/src/commonMain/moko-resources/af-ZA/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/af-ZA/plurals.xml +++ b/ui/src/commonMain/moko-resources/af-ZA/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/ar-SA/plurals.xml b/ui/src/commonMain/moko-resources/ar-SA/plurals.xml index 837cf00..8fe00ab 100644 --- a/ui/src/commonMain/moko-resources/ar-SA/plurals.xml +++ b/ui/src/commonMain/moko-resources/ar-SA/plurals.xml @@ -1,52 +1,52 @@ - %d Contributors - مساهم %d - المساهمين %d - %d Contributors - المساهمين %d - مساهم %d + %s Contributors + مساهم %s + المساهمين %s + %s Contributors + المساهمين %s + مساهم %s - %d Repositories - %d Repository - %d Repositories - %d Repositories - %d Repositories - %d Repositories + %s Repositories + %s Repository + %s Repositories + %s Repositories + %s Repositories + %s Repositories - %d Stars - %d Star - %d Stars - %d Stars - %d Stars - %d Stars + %s Stars + %s Star + %s Stars + %s Stars + %s Stars + %s Stars - %d Forks - %d Fork - %d Forks - %d Forks - %d Forks - %d Forks + %s Forks + %s Fork + %s Forks + %s Forks + %s Forks + %s Forks - %d Followers - %d Follower - %d Followers - %d Followers - %d Followers - %d Followers + %s Followers + %s Follower + %s Followers + %s Followers + %s Followers + %s Followers - %d Following - %d Following - %d Following - %d Following - %d Following - %d Following + %s Following + %s Following + %s Following + %s Following + %s Following + %s Following %1$s: %2$d Contributions diff --git a/ui/src/commonMain/moko-resources/base/plurals.xml b/ui/src/commonMain/moko-resources/base/plurals.xml index bcba5e7..1ea3de6 100644 --- a/ui/src/commonMain/moko-resources/base/plurals.xml +++ b/ui/src/commonMain/moko-resources/base/plurals.xml @@ -1,33 +1,33 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following diff --git a/ui/src/commonMain/moko-resources/ca-ES/plurals.xml b/ui/src/commonMain/moko-resources/ca-ES/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/ca-ES/plurals.xml +++ b/ui/src/commonMain/moko-resources/ca-ES/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/cs-CZ/plurals.xml b/ui/src/commonMain/moko-resources/cs-CZ/plurals.xml index c6752da..903eca2 100644 --- a/ui/src/commonMain/moko-resources/cs-CZ/plurals.xml +++ b/ui/src/commonMain/moko-resources/cs-CZ/plurals.xml @@ -1,40 +1,40 @@ - %d Contributor - %d Contributors - %d Contributors - %d Contributors + %s Contributor + %s Contributors + %s Contributors + %s Contributors - %d Repository - %d Repositories - %d Repositories - %d Repositories + %s Repository + %s Repositories + %s Repositories + %s Repositories - %d Star - %d Stars - %d Stars - %d Stars + %s Star + %s Stars + %s Stars + %s Stars - %d Fork - %d Forks - %d Forks - %d Forks + %s Fork + %s Forks + %s Forks + %s Forks - %d Follower - %d Followers - %d Followers - %d Followers + %s Follower + %s Followers + %s Followers + %s Followers - %d Following - %d Following - %d Following - %d Following + %s Following + %s Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/da-DK/plurals.xml b/ui/src/commonMain/moko-resources/da-DK/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/da-DK/plurals.xml +++ b/ui/src/commonMain/moko-resources/da-DK/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/de-DE/plurals.xml b/ui/src/commonMain/moko-resources/de-DE/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/de-DE/plurals.xml +++ b/ui/src/commonMain/moko-resources/de-DE/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/el-GR/plurals.xml b/ui/src/commonMain/moko-resources/el-GR/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/el-GR/plurals.xml +++ b/ui/src/commonMain/moko-resources/el-GR/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/en-PT/plurals.xml b/ui/src/commonMain/moko-resources/en-PT/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/en-PT/plurals.xml +++ b/ui/src/commonMain/moko-resources/en-PT/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/es-ES/plurals.xml b/ui/src/commonMain/moko-resources/es-ES/plurals.xml index f1cff2b..acb2718 100644 --- a/ui/src/commonMain/moko-resources/es-ES/plurals.xml +++ b/ui/src/commonMain/moko-resources/es-ES/plurals.xml @@ -1,28 +1,28 @@ - %d contribuidor - %d contribuidores + %s contribuidor + %s contribuidores - %d repositorio - %d repositorios + %s repositorio + %s repositorios - %d estrella - %d estrellas + %s estrella + %s estrellas - %d bifurcación - %d bifurcaciones + %s bifurcación + %s bifurcaciones - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d contribución diff --git a/ui/src/commonMain/moko-resources/es-MX/plurals.xml b/ui/src/commonMain/moko-resources/es-MX/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/es-MX/plurals.xml +++ b/ui/src/commonMain/moko-resources/es-MX/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/es-US/plurals.xml b/ui/src/commonMain/moko-resources/es-US/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/es-US/plurals.xml +++ b/ui/src/commonMain/moko-resources/es-US/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/fi-FI/plurals.xml b/ui/src/commonMain/moko-resources/fi-FI/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/fi-FI/plurals.xml +++ b/ui/src/commonMain/moko-resources/fi-FI/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/fr-FR/plurals.xml b/ui/src/commonMain/moko-resources/fr-FR/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/fr-FR/plurals.xml +++ b/ui/src/commonMain/moko-resources/fr-FR/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/he-IL/plurals.xml b/ui/src/commonMain/moko-resources/he-IL/plurals.xml index d5e6e5b..3085683 100644 --- a/ui/src/commonMain/moko-resources/he-IL/plurals.xml +++ b/ui/src/commonMain/moko-resources/he-IL/plurals.xml @@ -1,40 +1,40 @@ - %d Contributor - %d Contributors - %d Contributors - %d Contributors + %s Contributor + %s Contributors + %s Contributors + %s Contributors - %d Repository - %d Repositories - %d Repositories - %d Repositories + %s Repository + %s Repositories + %s Repositories + %s Repositories - %d Star - %d Stars - %d Stars - %d Stars + %s Star + %s Stars + %s Stars + %s Stars - %d Fork - %d Forks - %d Forks - %d Forks + %s Fork + %s Forks + %s Forks + %s Forks - %d Follower - %d Followers - %d Followers - %d Followers + %s Follower + %s Followers + %s Followers + %s Followers - %d Following - %d Following - %d Following - %d Following + %s Following + %s Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/hi-IN/plurals.xml b/ui/src/commonMain/moko-resources/hi-IN/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/hi-IN/plurals.xml +++ b/ui/src/commonMain/moko-resources/hi-IN/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/hu-HU/plurals.xml b/ui/src/commonMain/moko-resources/hu-HU/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/hu-HU/plurals.xml +++ b/ui/src/commonMain/moko-resources/hu-HU/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/id-ID/plurals.xml b/ui/src/commonMain/moko-resources/id-ID/plurals.xml index 94273ea..860ddbb 100644 --- a/ui/src/commonMain/moko-resources/id-ID/plurals.xml +++ b/ui/src/commonMain/moko-resources/id-ID/plurals.xml @@ -1,22 +1,22 @@ - %d Contributors + %s Contributors - %d Repositories + %s Repositories - %d Stars + %s Stars - %d Forks + %s Forks - %d Followers + %s Followers - %d Following + %s Following %1$s: %2$d Contributions diff --git a/ui/src/commonMain/moko-resources/it-IT/plurals.xml b/ui/src/commonMain/moko-resources/it-IT/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/it-IT/plurals.xml +++ b/ui/src/commonMain/moko-resources/it-IT/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/ja-JP/plurals.xml b/ui/src/commonMain/moko-resources/ja-JP/plurals.xml index 9b79325..b085aec 100644 --- a/ui/src/commonMain/moko-resources/ja-JP/plurals.xml +++ b/ui/src/commonMain/moko-resources/ja-JP/plurals.xml @@ -1,22 +1,22 @@ - %d 人のコントリビューター + %s 人のコントリビューター - %d 個のリポジトリ + %s 個のリポジトリ - %d スター + %s スター - %d フォーク + %s フォーク - %d Followers + %s Followers - %d Following + %s Following %1$s: %2$d 件のコントリビューション diff --git a/ui/src/commonMain/moko-resources/ko-KR/plurals.xml b/ui/src/commonMain/moko-resources/ko-KR/plurals.xml index 94273ea..860ddbb 100644 --- a/ui/src/commonMain/moko-resources/ko-KR/plurals.xml +++ b/ui/src/commonMain/moko-resources/ko-KR/plurals.xml @@ -1,22 +1,22 @@ - %d Contributors + %s Contributors - %d Repositories + %s Repositories - %d Stars + %s Stars - %d Forks + %s Forks - %d Followers + %s Followers - %d Following + %s Following %1$s: %2$d Contributions diff --git a/ui/src/commonMain/moko-resources/lol-US/plurals.xml b/ui/src/commonMain/moko-resources/lol-US/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/lol-US/plurals.xml +++ b/ui/src/commonMain/moko-resources/lol-US/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/nl-NL/plurals.xml b/ui/src/commonMain/moko-resources/nl-NL/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/nl-NL/plurals.xml +++ b/ui/src/commonMain/moko-resources/nl-NL/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/no-NO/plurals.xml b/ui/src/commonMain/moko-resources/no-NO/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/no-NO/plurals.xml +++ b/ui/src/commonMain/moko-resources/no-NO/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/pl-PL/plurals.xml b/ui/src/commonMain/moko-resources/pl-PL/plurals.xml index c6752da..903eca2 100644 --- a/ui/src/commonMain/moko-resources/pl-PL/plurals.xml +++ b/ui/src/commonMain/moko-resources/pl-PL/plurals.xml @@ -1,40 +1,40 @@ - %d Contributor - %d Contributors - %d Contributors - %d Contributors + %s Contributor + %s Contributors + %s Contributors + %s Contributors - %d Repository - %d Repositories - %d Repositories - %d Repositories + %s Repository + %s Repositories + %s Repositories + %s Repositories - %d Star - %d Stars - %d Stars - %d Stars + %s Star + %s Stars + %s Stars + %s Stars - %d Fork - %d Forks - %d Forks - %d Forks + %s Fork + %s Forks + %s Forks + %s Forks - %d Follower - %d Followers - %d Followers - %d Followers + %s Follower + %s Followers + %s Followers + %s Followers - %d Following - %d Following - %d Following - %d Following + %s Following + %s Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/pt-BR/plurals.xml b/ui/src/commonMain/moko-resources/pt-BR/plurals.xml index 53b2c4c..45f7219 100644 --- a/ui/src/commonMain/moko-resources/pt-BR/plurals.xml +++ b/ui/src/commonMain/moko-resources/pt-BR/plurals.xml @@ -1,28 +1,28 @@ - %d Contribuidor - %d Contribuidores + %s Contribuidor + %s Contribuidores - %d Repositório - %d Repositórios + %s Repositório + %s Repositórios - %d Estrela - %d Estrelas + %s Estrela + %s Estrelas - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribuição diff --git a/ui/src/commonMain/moko-resources/pt-PT/plurals.xml b/ui/src/commonMain/moko-resources/pt-PT/plurals.xml index 7ff1f2b..4b8515f 100644 --- a/ui/src/commonMain/moko-resources/pt-PT/plurals.xml +++ b/ui/src/commonMain/moko-resources/pt-PT/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/ro-RO/plurals.xml b/ui/src/commonMain/moko-resources/ro-RO/plurals.xml index e4c7591..8db9bb2 100644 --- a/ui/src/commonMain/moko-resources/ro-RO/plurals.xml +++ b/ui/src/commonMain/moko-resources/ro-RO/plurals.xml @@ -1,34 +1,34 @@ - %d Contributor - %d Contributors - %d Contributors + %s Contributor + %s Contributors + %s Contributors - %d Repository - %d Repositories - %d Repositories + %s Repository + %s Repositories + %s Repositories - %d Star - %d Stars - %d Stars + %s Star + %s Stars + %s Stars - %d Fork - %d Forks - %d Forks + %s Fork + %s Forks + %s Forks - %d Follower - %d Followers - %d Followers + %s Follower + %s Followers + %s Followers - %d Following - %d Following - %d Following + %s Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/ru-RU/plurals.xml b/ui/src/commonMain/moko-resources/ru-RU/plurals.xml index 40503b1..5158d19 100644 --- a/ui/src/commonMain/moko-resources/ru-RU/plurals.xml +++ b/ui/src/commonMain/moko-resources/ru-RU/plurals.xml @@ -1,40 +1,40 @@ - %d Участник - %d Contributors - %d Contributors - %d Contributors + %s Участник + %s Contributors + %s Contributors + %s Contributors - %d Репозиторий - %d Repositories - %d Repositories - %d Repositories + %s Репозиторий + %s Repositories + %s Repositories + %s Repositories - %d Star - %d Stars - %d Stars - %d Stars + %s Star + %s Stars + %s Stars + %s Stars - %d Fork - %d Forks - %d Forks - %d Forks + %s Fork + %s Forks + %s Forks + %s Forks - %d Follower - %d Followers - %d Followers - %d Followers + %s Follower + %s Followers + %s Followers + %s Followers - %d Following - %d Following - %d Following - %d Following + %s Following + %s Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/sr-SP/plurals.xml b/ui/src/commonMain/moko-resources/sr-SP/plurals.xml index e4c7591..8db9bb2 100644 --- a/ui/src/commonMain/moko-resources/sr-SP/plurals.xml +++ b/ui/src/commonMain/moko-resources/sr-SP/plurals.xml @@ -1,34 +1,34 @@ - %d Contributor - %d Contributors - %d Contributors + %s Contributor + %s Contributors + %s Contributors - %d Repository - %d Repositories - %d Repositories + %s Repository + %s Repositories + %s Repositories - %d Star - %d Stars - %d Stars + %s Star + %s Stars + %s Stars - %d Fork - %d Forks - %d Forks + %s Fork + %s Forks + %s Forks - %d Follower - %d Followers - %d Followers + %s Follower + %s Followers + %s Followers - %d Following - %d Following - %d Following + %s Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/sv-SE/plurals.xml b/ui/src/commonMain/moko-resources/sv-SE/plurals.xml index dd13240..212a51f 100644 --- a/ui/src/commonMain/moko-resources/sv-SE/plurals.xml +++ b/ui/src/commonMain/moko-resources/sv-SE/plurals.xml @@ -1,28 +1,28 @@ - %d Contributor - %d Contributors + %s Contributor + %s Contributors - %d Repository - %d Repositories + %s Repository + %s Repositories - %d Star - %d Stars + %s Star + %s Stars - %d Fork - %d Forks + %s Fork + %s Forks - %d Follower - %d Followers + %s Follower + %s Followers - %d Following - %d Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/tr-TR/plurals.xml b/ui/src/commonMain/moko-resources/tr-TR/plurals.xml index 6b0c035..05582d1 100644 --- a/ui/src/commonMain/moko-resources/tr-TR/plurals.xml +++ b/ui/src/commonMain/moko-resources/tr-TR/plurals.xml @@ -1,28 +1,28 @@ - %d Destekçi - %d Destekçiler + %s Destekçi + %s Destekçiler - %d Depo - %d Depolar + %s Depo + %s Depolar - %d Yıldız - %d Yıldızlar + %s Yıldız + %s Yıldızlar - %d çatallanma - %d çatallanma + %s çatallanma + %s çatallanma - %d Takipçi - %d Takipçi + %s Takipçi + %s Takipçi - %d Takip ediliyor - %d Takip ediliyor + %s Takip ediliyor + %s Takip ediliyor %1$s: %2$d Katkı diff --git a/ui/src/commonMain/moko-resources/uk-UA/plurals.xml b/ui/src/commonMain/moko-resources/uk-UA/plurals.xml index c6752da..903eca2 100644 --- a/ui/src/commonMain/moko-resources/uk-UA/plurals.xml +++ b/ui/src/commonMain/moko-resources/uk-UA/plurals.xml @@ -1,40 +1,40 @@ - %d Contributor - %d Contributors - %d Contributors - %d Contributors + %s Contributor + %s Contributors + %s Contributors + %s Contributors - %d Repository - %d Repositories - %d Repositories - %d Repositories + %s Repository + %s Repositories + %s Repositories + %s Repositories - %d Star - %d Stars - %d Stars - %d Stars + %s Star + %s Stars + %s Stars + %s Stars - %d Fork - %d Forks - %d Forks - %d Forks + %s Fork + %s Forks + %s Forks + %s Forks - %d Follower - %d Followers - %d Followers - %d Followers + %s Follower + %s Followers + %s Followers + %s Followers - %d Following - %d Following - %d Following - %d Following + %s Following + %s Following + %s Following + %s Following %1$s: %2$d Contribution diff --git a/ui/src/commonMain/moko-resources/vi-VN/plurals.xml b/ui/src/commonMain/moko-resources/vi-VN/plurals.xml index b4565d1..aa9586d 100644 --- a/ui/src/commonMain/moko-resources/vi-VN/plurals.xml +++ b/ui/src/commonMain/moko-resources/vi-VN/plurals.xml @@ -1,22 +1,22 @@ - %d Người đóng góp + %s Người đóng góp - %d Kho lưu trữ + %s Kho lưu trữ - %d Yêu thích + %s Yêu thích - %d Nhân bản + %s Nhân bản - %d Followers + %s Followers - %d Following + %s Following %1$s: %2$d Đóng góp diff --git a/ui/src/commonMain/moko-resources/zh-CN/plurals.xml b/ui/src/commonMain/moko-resources/zh-CN/plurals.xml index 06cf616..6a9b253 100644 --- a/ui/src/commonMain/moko-resources/zh-CN/plurals.xml +++ b/ui/src/commonMain/moko-resources/zh-CN/plurals.xml @@ -1,22 +1,22 @@ - %d 位贡献者 + %s 位贡献者 - %d 个存储库 + %s 个存储库 - %d 个星标 + %s 个星标 - %d 个分叉 + %s 个分叉 - %d Followers + %s Followers - %d Following + %s Following %1$s:%2$d 项贡献 diff --git a/ui/src/commonMain/moko-resources/zh-TW/plurals.xml b/ui/src/commonMain/moko-resources/zh-TW/plurals.xml index 94273ea..860ddbb 100644 --- a/ui/src/commonMain/moko-resources/zh-TW/plurals.xml +++ b/ui/src/commonMain/moko-resources/zh-TW/plurals.xml @@ -1,22 +1,22 @@ - %d Contributors + %s Contributors - %d Repositories + %s Repositories - %d Stars + %s Stars - %d Forks + %s Forks - %d Followers + %s Followers - %d Following + %s Following %1$s: %2$d Contributions