Skip to content

Commit

Permalink
Fix incorrect summary item count label
Browse files Browse the repository at this point in the history
  • Loading branch information
syt0r committed Aug 30, 2024
1 parent 758d0c1 commit e3eb00b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -583,10 +583,9 @@ object EnglishCommonPracticeStrings : CommonPracticeStrings {
override val hardButton: String = "Hard"
override val goodButton: String = "Good"
override val easyButton: String = "Easy"
override val summaryItemsCountTitle: String = "Reviewed Words"
override val summaryItemsCountTitle: String = "Reviewed Items"
override val summaryNextReviewLabel: String = "Next review:"

override val summaryReviewedCountLabel: String = "Characters reviewed"
override val summaryTimeSpentLabel: String = "Time spent"
override val summaryTimeSpentValue: (Duration) -> String = { formatDuration(it) }
override val summaryAccuracyLabel: String = "Accuracy"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -569,11 +569,10 @@ object JapaneseCommonPracticeStrings : CommonPracticeStrings {
override val goodButton: String = "正解"
override val easyButton: String = "簡単"

override val summaryReviewedCountLabel: String = "練習した文字の数"
override val summaryTimeSpentLabel: String = "時間"
override val summaryTimeSpentValue: (Duration) -> String = { formatDuration(it) }
override val summaryAccuracyLabel: String = "正解率"
override val summaryItemsCountTitle: String = "練習した単語の数"
override val summaryItemsCountTitle: String = "練習した項目の数"
override val summaryNextReviewLabel: String = "次の復習:"
override val summaryButton: String = "終了"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,6 @@ interface CommonPracticeStrings {
val goodButton: String
val easyButton: String

val summaryReviewedCountLabel: String
val summaryTimeSpentLabel: String
val summaryTimeSpentValue: (Duration) -> String
val summaryAccuracyLabel: String
Expand Down

0 comments on commit e3eb00b

Please sign in to comment.