Two translations
parent
68c9dafcbc
commit
d8b874ce51
|
|
@ -63,5 +63,7 @@ export const menu: SimpleTranslationEntries = {
|
|||
"cycleGender": 'G: Cycle Gender',
|
||||
"cycleAbility": 'E: Cycle Ability',
|
||||
"cycleNature": 'N: Cycle Nature',
|
||||
"cycleVariant": 'V: Cycle Variant'
|
||||
"cycleVariant": 'V: Cycle Variant',
|
||||
"enablePassive": "Enable Passive",
|
||||
"disablePassive": "Disable Passive"
|
||||
} as const;
|
||||
|
|
@ -63,5 +63,7 @@ export const menu: SimpleTranslationEntries = {
|
|||
"cycleGender": 'G: Cycle Gender',
|
||||
"cycleAbility": 'E: Cycle Ability',
|
||||
"cycleNature": 'N: Cycle Nature',
|
||||
"cycleVariant": 'V: Cycle Variant'
|
||||
"cycleVariant": 'V: Cycle Variant',
|
||||
"enablePassive": "Enable Passive",
|
||||
"disablePassive": "Disable Passive"
|
||||
} as const;
|
||||
|
|
@ -63,5 +63,7 @@ export const menu: SimpleTranslationEntries = {
|
|||
"cycleGender": 'G: Cambiar Género',
|
||||
"cycleAbility": 'E: Cambiar Habilidad',
|
||||
"cycleNature": 'N: Cambiar Naturaleza',
|
||||
"cycleVariant": 'V: Cambiar Variante'
|
||||
"cycleVariant": 'V: Cambiar Variante',
|
||||
"enablePassive": "Activar Pasiva",
|
||||
"disablePassive": "Desactivar Pasiva"
|
||||
} as const;
|
||||
|
|
@ -58,5 +58,7 @@ export const menu: SimpleTranslationEntries = {
|
|||
"cycleGender": 'G: Cycle Gender',
|
||||
"cycleAbility": 'E: Cycle Ability',
|
||||
"cycleNature": 'N: Cycle Nature',
|
||||
"cycleVariant": 'V: Cycle Variant'
|
||||
"cycleVariant": 'V: Cycle Variant',
|
||||
"enablePassive": "Enable Passive",
|
||||
"disablePassive": "Disable Passive"
|
||||
} as const;
|
||||
|
|
|
|||
|
|
@ -63,5 +63,7 @@ export const menu: SimpleTranslationEntries = {
|
|||
"cycleGender": 'G: Cycle Gender',
|
||||
"cycleAbility": 'E: Cycle Ability',
|
||||
"cycleNature": 'N: Cycle Nature',
|
||||
"cycleVariant": 'V: Cycle Variant'
|
||||
"cycleVariant": 'V: Cycle Variant',
|
||||
"enablePassive": "Enable Passive",
|
||||
"disablePassive": "Disable Passive"
|
||||
} as const;
|
||||
|
|
@ -836,7 +836,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler {
|
|||
if (passiveAttr & PassiveAttr.UNLOCKED) {
|
||||
if (!(passiveAttr & PassiveAttr.ENABLED)) {
|
||||
options.push({
|
||||
label: 'Enable Passive',
|
||||
label: i18next.t("menu:enablePassive"),
|
||||
handler: () => {
|
||||
starterData.passiveAttr |= PassiveAttr.ENABLED;
|
||||
ui.setMode(Mode.STARTER_SELECT);
|
||||
|
|
@ -846,7 +846,7 @@ export default class StarterSelectUiHandler extends MessageUiHandler {
|
|||
});
|
||||
} else {
|
||||
options.push({
|
||||
label: 'Disable Passive',
|
||||
label: i18next.t("menu:disablePassive"),
|
||||
handler: () => {
|
||||
starterData.passiveAttr ^= PassiveAttr.ENABLED;
|
||||
ui.setMode(Mode.STARTER_SELECT);
|
||||
|
|
|
|||
Loading…
Reference in New Issue