mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-21 09:02:47 +02:00
[i18n] Translatable Game Speed values (#5916)
This commit is contained in:
parent
831381e4ce
commit
7859fea26b
@ -1 +1 @@
|
|||||||
Subproject commit 88c60b6f8d5babfb0c157b31ceff22486712295c
|
Subproject commit 4dab23d6a78b6cf32db43c9953e3c2000f448007
|
@ -193,35 +193,35 @@ export const Setting: Array<Setting> = [
|
|||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
value: "1",
|
value: "1",
|
||||||
label: "1x",
|
label: i18next.t("settings:gameSpeed1x"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: "1.25",
|
value: "1.25",
|
||||||
label: "1.25x",
|
label: i18next.t("settings:gameSpeed1_25x"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: "1.5",
|
value: "1.5",
|
||||||
label: "1.5x",
|
label: i18next.t("settings:gameSpeed1_5x"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: "2",
|
value: "2",
|
||||||
label: "2x",
|
label: i18next.t("settings:gameSpeed2x"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: "2.5",
|
value: "2.5",
|
||||||
label: "2.5x",
|
label: i18next.t("settings:gameSpeed2_5x"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: "3",
|
value: "3",
|
||||||
label: "3x",
|
label: i18next.t("settings:gameSpeed3x"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: "4",
|
value: "4",
|
||||||
label: "4x",
|
label: i18next.t("settings:gameSpeed4x"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: "5",
|
value: "5",
|
||||||
label: "5x",
|
label: i18next.t("settings:gameSpeed5x"),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 3,
|
default: 3,
|
||||||
|
Loading…
Reference in New Issue
Block a user