File tree 2 files changed +3
-6
lines changed
kotlin/jp/co/yumemi/android/code_check/core/presenter/detail
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ fun RepositoryStatsCard(repository: RepositoryEntity) {
194
194
)
195
195
Spacer (modifier = Modifier .width(8 .dp))
196
196
Text (
197
- text = context.getString(R .string.stars_count_format , repository.stargazersCount),
197
+ text = context.getString(R .string.stars_count , repository.stargazersCount),
198
198
fontSize = 18 .sp,
199
199
fontWeight = FontWeight .Medium ,
200
200
)
@@ -209,7 +209,7 @@ fun RepositoryStatsCard(repository: RepositoryEntity) {
209
209
)
210
210
Spacer (modifier = Modifier .width(8 .dp))
211
211
Text (
212
- text = context.getString(R .string.forks_count_format , repository.forksCount),
212
+ text = context.getString(R .string.forks_count , repository.forksCount),
213
213
fontSize = 18 .sp,
214
214
fontWeight = FontWeight .Medium ,
215
215
)
@@ -224,7 +224,7 @@ fun RepositoryStatsCard(repository: RepositoryEntity) {
224
224
)
225
225
Spacer (modifier = Modifier .width(8 .dp))
226
226
Text (
227
- text = context.getString(R .string.issues_count_format , repository.openIssuesCount),
227
+ text = context.getString(R .string.open_issues_count , repository.openIssuesCount),
228
228
fontSize = 18 .sp,
229
229
fontWeight = FontWeight .Medium ,
230
230
)
Original file line number Diff line number Diff line change 26
26
<string name =" empty_state_icon_description" >検索アイコン</string >
27
27
<string name =" empty_state_title" >リポジトリが見つかりません</string >
28
28
<string name =" empty_state_description" >検索ワードを入力してリポジトリを探してください</string >
29
- <string name =" stars_count_format" >Stars: %d</string >
30
- <string name =" forks_count_format" >Forks: %d</string >
31
- <string name =" issues_count_format" >Open Issues: %d</string >
32
29
</resources >
You can’t perform that action at this time.
0 commit comments