From 49f4f8ea71b2ae5d4324d3e315411b63b2475b16 Mon Sep 17 00:00:00 2001 From: flx-sta <50131232+flx-sta@users.noreply.github.com> Date: Sun, 25 Aug 2024 10:44:35 -0700 Subject: [PATCH] [Localization] fix `run-history` locale files namings (#3745) * fix `run-history` locale files namings * fix imports in `config.ts` --- src/locales/ca_ES/config.ts | 2 +- .../ca_ES/{run-history-ui-handler.json => run-history.json} | 0 src/locales/de/config.ts | 2 +- .../de/{run-history-ui-handler.json => run-history.json} | 0 src/locales/fr/config.ts | 2 +- .../fr/{run-history-ui-handler.json => run-history.json} | 0 src/locales/it/config.ts | 2 +- .../it/{run-history-ui-handler.json => run-history.json} | 0 src/locales/ja/config.ts | 2 +- .../ja/{run-history-ui-handler.json => run-history.json} | 0 src/locales/ko/config.ts | 2 +- .../ko/{run-history-ui-handler.json => run-history.json} | 0 src/locales/pt_BR/config.ts | 2 +- .../pt_BR/{run-history-ui-handler.json => run-history.json} | 0 src/locales/zh_CN/config.ts | 2 +- .../zh_CN/{run-history-ui-handler.json => run-history.json} | 0 src/locales/zh_TW/config.ts | 2 +- .../zh_TW/{run-history-ui-handler.json => run-history.json} | 0 18 files changed, 9 insertions(+), 9 deletions(-) rename src/locales/ca_ES/{run-history-ui-handler.json => run-history.json} (100%) rename src/locales/de/{run-history-ui-handler.json => run-history.json} (100%) rename src/locales/fr/{run-history-ui-handler.json => run-history.json} (100%) rename src/locales/it/{run-history-ui-handler.json => run-history.json} (100%) rename src/locales/ja/{run-history-ui-handler.json => run-history.json} (100%) rename src/locales/ko/{run-history-ui-handler.json => run-history.json} (100%) rename src/locales/pt_BR/{run-history-ui-handler.json => run-history.json} (100%) rename src/locales/zh_CN/{run-history-ui-handler.json => run-history.json} (100%) rename src/locales/zh_TW/{run-history-ui-handler.json => run-history.json} (100%) diff --git a/src/locales/ca_ES/config.ts b/src/locales/ca_ES/config.ts index 427dea40eda..4229b20a583 100644 --- a/src/locales/ca_ES/config.ts +++ b/src/locales/ca_ES/config.ts @@ -57,7 +57,7 @@ import weather from "./weather.json"; import terrain from "./terrain.json"; import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; import moveTriggers from "./move-trigger.json"; -import runHistory from "./run-history-ui-handler.json"; +import runHistory from "./run-history.json"; export const caEsConfig = { ability, diff --git a/src/locales/ca_ES/run-history-ui-handler.json b/src/locales/ca_ES/run-history.json similarity index 100% rename from src/locales/ca_ES/run-history-ui-handler.json rename to src/locales/ca_ES/run-history.json diff --git a/src/locales/de/config.ts b/src/locales/de/config.ts index 988468ef476..28c3332a55f 100644 --- a/src/locales/de/config.ts +++ b/src/locales/de/config.ts @@ -57,7 +57,7 @@ import weather from "./weather.json"; import terrain from "./terrain.json"; import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; import moveTriggers from "./move-trigger.json"; -import runHistory from "./run-history-ui-handler.json"; +import runHistory from "./run-history.json"; export const deConfig = { ability, diff --git a/src/locales/de/run-history-ui-handler.json b/src/locales/de/run-history.json similarity index 100% rename from src/locales/de/run-history-ui-handler.json rename to src/locales/de/run-history.json diff --git a/src/locales/fr/config.ts b/src/locales/fr/config.ts index a9ca99781fc..37ec76f3a20 100644 --- a/src/locales/fr/config.ts +++ b/src/locales/fr/config.ts @@ -57,7 +57,7 @@ import weather from "./weather.json"; import terrain from "./terrain.json"; import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; import moveTriggers from "./move-trigger.json"; -import runHistory from "./run-history-ui-handler.json"; +import runHistory from "./run-history.json"; export const frConfig = { ability, diff --git a/src/locales/fr/run-history-ui-handler.json b/src/locales/fr/run-history.json similarity index 100% rename from src/locales/fr/run-history-ui-handler.json rename to src/locales/fr/run-history.json diff --git a/src/locales/it/config.ts b/src/locales/it/config.ts index 19d2f92f04e..c671851f6a9 100644 --- a/src/locales/it/config.ts +++ b/src/locales/it/config.ts @@ -57,7 +57,7 @@ import weather from "./weather.json"; import terrain from "./terrain.json"; import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; import moveTriggers from "./move-trigger.json"; -import runHistory from "./run-history-ui-handler.json"; +import runHistory from "./run-history.json"; export const itConfig = { ability, diff --git a/src/locales/it/run-history-ui-handler.json b/src/locales/it/run-history.json similarity index 100% rename from src/locales/it/run-history-ui-handler.json rename to src/locales/it/run-history.json diff --git a/src/locales/ja/config.ts b/src/locales/ja/config.ts index fade2cd258f..b459ee12a9a 100644 --- a/src/locales/ja/config.ts +++ b/src/locales/ja/config.ts @@ -57,7 +57,7 @@ import weather from "./weather.json"; import terrain from "./terrain.json"; import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; import moveTriggers from "./move-trigger.json"; -import runHistory from "./run-history-ui-handler.json"; +import runHistory from "./run-history.json"; export const jaConfig = { ability, diff --git a/src/locales/ja/run-history-ui-handler.json b/src/locales/ja/run-history.json similarity index 100% rename from src/locales/ja/run-history-ui-handler.json rename to src/locales/ja/run-history.json diff --git a/src/locales/ko/config.ts b/src/locales/ko/config.ts index e570742bb73..b5b34cea0ae 100644 --- a/src/locales/ko/config.ts +++ b/src/locales/ko/config.ts @@ -57,7 +57,7 @@ import weather from "./weather.json"; import terrain from "./terrain.json"; import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; import moveTriggers from "./move-trigger.json"; -import runHistory from "./run-history-ui-handler.json"; +import runHistory from "./run-history.json"; export const koConfig = { ability, diff --git a/src/locales/ko/run-history-ui-handler.json b/src/locales/ko/run-history.json similarity index 100% rename from src/locales/ko/run-history-ui-handler.json rename to src/locales/ko/run-history.json diff --git a/src/locales/pt_BR/config.ts b/src/locales/pt_BR/config.ts index 74dce2dec3e..9cc8fe313a2 100644 --- a/src/locales/pt_BR/config.ts +++ b/src/locales/pt_BR/config.ts @@ -57,7 +57,7 @@ import weather from "./weather.json"; import terrain from "./terrain.json"; import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; import moveTriggers from "./move-trigger.json"; -import runHistory from "./run-history-ui-handler.json"; +import runHistory from "./run-history.json"; export const ptBrConfig = { ability, diff --git a/src/locales/pt_BR/run-history-ui-handler.json b/src/locales/pt_BR/run-history.json similarity index 100% rename from src/locales/pt_BR/run-history-ui-handler.json rename to src/locales/pt_BR/run-history.json diff --git a/src/locales/zh_CN/config.ts b/src/locales/zh_CN/config.ts index 63e3f46f7b3..7c29262ac1a 100644 --- a/src/locales/zh_CN/config.ts +++ b/src/locales/zh_CN/config.ts @@ -57,7 +57,7 @@ import weather from "./weather.json"; import terrain from "./terrain.json"; import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; import moveTriggers from "./move-trigger.json"; -import runHistory from "./run-history-ui-handler.json"; +import runHistory from "./run-history.json"; export const zhCnConfig = { ability, diff --git a/src/locales/zh_CN/run-history-ui-handler.json b/src/locales/zh_CN/run-history.json similarity index 100% rename from src/locales/zh_CN/run-history-ui-handler.json rename to src/locales/zh_CN/run-history.json diff --git a/src/locales/zh_TW/config.ts b/src/locales/zh_TW/config.ts index b0dfca1757c..8d9fb7f4a37 100644 --- a/src/locales/zh_TW/config.ts +++ b/src/locales/zh_TW/config.ts @@ -57,7 +57,7 @@ import weather from "./weather.json"; import terrain from "./terrain.json"; import modifierSelectUiHandler from "./modifier-select-ui-handler.json"; import moveTriggers from "./move-trigger.json"; -import runHistory from "./run-history-ui-handler.json"; +import runHistory from "./run-history.json"; export const zhTwConfig = { ability, diff --git a/src/locales/zh_TW/run-history-ui-handler.json b/src/locales/zh_TW/run-history.json similarity index 100% rename from src/locales/zh_TW/run-history-ui-handler.json rename to src/locales/zh_TW/run-history.json