Skip to content

Commit

Permalink
generate i18n files with pnpm trans-dump
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Jan 6, 2025
1 parent 79a8def commit 82f0b60
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
3 changes: 3 additions & 0 deletions modules/coreI18n/src/main/key.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2207,8 +2207,11 @@ object I18nKey:
val `stats`: I18nKey = "stats"
val `opponentLeftCounter`: I18nKey = "opponentLeftCounter"
val `mateInXHalfMoves`: I18nKey = "mateInXHalfMoves"
val `nbBlunders`: I18nKey = "nbBlunders"
val `numberBlunders`: I18nKey = "numberBlunders"
val `nbMistakes`: I18nKey = "nbMistakes"
val `numberMistakes`: I18nKey = "numberMistakes"
val `nbInaccuracies`: I18nKey = "nbInaccuracies"
val `numberInaccuracies`: I18nKey = "numberInaccuracies"
val `nbPlayers`: I18nKey = "nbPlayers"
val `nbGames`: I18nKey = "nbGames"
Expand Down
12 changes: 9 additions & 3 deletions ui/@types/lichess/i18n.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3510,7 +3510,7 @@ interface I18n {
/** Navigate the move tree */
navigateMoveTree: string;
/** %s blunders */
numberBlunders: I18nPlural;
nbBlunders: I18nPlural;
/** %s bookmarks */
nbBookmarks: I18nPlural;
/** %s days */
Expand All @@ -3536,13 +3536,13 @@ interface I18n {
/** %s imported games */
nbImportedGames: I18nPlural;
/** %s inaccuracies */
numberInaccuracies: I18nPlural;
nbInaccuracies: I18nPlural;
/** %s losses */
nbLosses: I18nPlural;
/** %s minutes */
nbMinutes: I18nPlural;
/** %s mistakes */
numberMistakes: I18nPlural;
nbMistakes: I18nPlural;
/** %1$s %2$s players this week. */
nbPerfTypePlayersThisWeek: I18nPlural;
/** %s players */
Expand Down Expand Up @@ -3629,6 +3629,12 @@ interface I18n {
notifications: string;
/** Notifications: %1$s */
notificationsX: I18nFormat;
/** %s Blunders */
numberBlunders: I18nPlural;
/** %s Inaccuracies */
numberInaccuracies: I18nPlural;
/** %s Mistakes */
numberMistakes: I18nPlural;
/** Offer draw */
offerDraw: string;
/** OK */
Expand Down

0 comments on commit 82f0b60

Please sign in to comment.