[i18n] Translatable Game Speed values (#5916)

This commit is contained in:
Lugiad 2025-06-01 21:37:47 +02:00 committed by GitHub
parent 831381e4ce
commit 7859fea26b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 9 deletions

@ -1 +1 @@
Subproject commit 88c60b6f8d5babfb0c157b31ceff22486712295c
Subproject commit 4dab23d6a78b6cf32db43c9953e3c2000f448007

View File

@ -193,35 +193,35 @@ export const Setting: Array<Setting> = [
options: [
{
value: "1",
label: "1x",
label: i18next.t("settings:gameSpeed1x"),
},
{
value: "1.25",
label: "1.25x",
label: i18next.t("settings:gameSpeed1_25x"),
},
{
value: "1.5",
label: "1.5x",
label: i18next.t("settings:gameSpeed1_5x"),
},
{
value: "2",
label: "2x",
label: i18next.t("settings:gameSpeed2x"),
},
{
value: "2.5",
label: "2.5x",
label: i18next.t("settings:gameSpeed2_5x"),
},
{
value: "3",
label: "3x",
label: i18next.t("settings:gameSpeed3x"),
},
{
value: "4",
label: "4x",
label: i18next.t("settings:gameSpeed4x"),
},
{
value: "5",
label: "5x",
label: i18next.t("settings:gameSpeed5x"),
},
],
default: 3,