mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-03 23:12:20 +02:00
* update translation for filter menu in starter select UI * fix lint error * Update src/locales/zh_CN/filter-bar.ts Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> * Update src/locales/de/filter-bar.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update src/locales/de/filter-bar.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * more clear translation for zh_CN `hasNotWon` * Update src/locales/ko/filter-bar.ts Co-authored-by: Enoch <enoch.jwsong@gmail.com> * Update src/locales/ko/filter-bar.ts Co-authored-by: sodam <66295123+sodaMelon@users.noreply.github.com> * Update src/locales/ko/filter-bar.ts Co-authored-by: sodam <66295123+sodaMelon@users.noreply.github.com> * update missing entry of starter UI on each locales. move `sameSpeciesEgg` line for readibility * add invalidParty and removeFromParty in zh_CH * Update src/locales/ko/starter-select-ui-handler.ts Co-authored-by: sodam <66295123+sodaMelon@users.noreply.github.com> * fix mis added line * update as suggested in de * update sort candy option to `candy count` suggested * update win filter dropdown in english * update initial translation for zh_TW * fix eslint * updated zh_TW * Update src/locales/zh_CN/starter-select-ui-handler.ts Co-authored-by: mercurius-00 <80205689+mercurius-00@users.noreply.github.com> * Update src/locales/es/filter-bar.ts Co-authored-by: Asdar <asdargmng@gmail.com> * Update src/locales/es/starter-select-ui-handler.ts Co-authored-by: Asdar <asdargmng@gmail.com> * Update src/locales/es/starter-select-ui-handler.ts Co-authored-by: Asdar <asdargmng@gmail.com> * Update src/locales/es/starter-select-ui-handler.ts Co-authored-by: Asdar <asdargmng@gmail.com> * Update src/locales/zh_CN/filter-bar.ts Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> * update `invalidParty` entry of es * Update src/locales/fr/starter-select-ui-handler.ts Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> * Update src/locales/fr/filter-bar.ts Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> * update `invalidParty` entry in fr * update default eng entry for `hasWon` `hasNotWon` * Update src/locales/pt_BR/starter-select-ui-handler.ts Co-authored-by: José Ricardo Fleury Oliveira <josefleury@discente.ufg.br> * Update src/locales/pt_BR/filter-bar.ts Co-authored-by: José Ricardo Fleury Oliveira <josefleury@discente.ufg.br> * Update src/locales/it/filter-bar.ts Co-authored-by: Niccolò <123510358+NicusPulcis@users.noreply.github.com> * Update src/locales/it/starter-select-ui-handler.ts Co-authored-by: Niccolò <123510358+NicusPulcis@users.noreply.github.com> * update `invalidParty` entry for `it` * Update src/locales/fr/filter-bar.ts Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> * Update src/locales/pt_BR/filter-bar.ts Co-authored-by: José Ricardo Fleury Oliveira <josefleury@discente.ufg.br> --------- Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: Enoch <enoch.jwsong@gmail.com> Co-authored-by: sodam <66295123+sodaMelon@users.noreply.github.com> Co-authored-by: mercurius-00 <80205689+mercurius-00@users.noreply.github.com> Co-authored-by: Asdar <asdargmng@gmail.com> Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> Co-authored-by: José Ricardo Fleury Oliveira <josefleury@discente.ufg.br> Co-authored-by: Niccolò <123510358+NicusPulcis@users.noreply.github.com>
114 lines
3.8 KiB
TypeScript
114 lines
3.8 KiB
TypeScript
import { ability } from "./ability";
|
|
import { abilityTriggers } from "./ability-trigger";
|
|
import { PGFachv, PGMachv } from "./achv";
|
|
import { arenaFlyout } from "./arena-flyout";
|
|
import { arenaTag } from "./arena-tag";
|
|
import { battle } from "./battle";
|
|
import { battleInfo } from "./battle-info";
|
|
import { battleMessageUiHandler } from "./battle-message-ui-handler";
|
|
import { battlerTags } from "./battler-tags";
|
|
import { berry } from "./berry";
|
|
import { bgmName } from "./bgm-name";
|
|
import { biome } from "./biome";
|
|
import { challenges } from "./challenges";
|
|
import { commandUiHandler } from "./command-ui-handler";
|
|
import { common } from "./common.js";
|
|
import {
|
|
PGFbattleSpecDialogue,
|
|
PGFdialogue,
|
|
PGFdoubleBattleDialogue,
|
|
PGFmiscDialogue,
|
|
PGMbattleSpecDialogue,
|
|
PGMdialogue,
|
|
PGMdoubleBattleDialogue,
|
|
PGMmiscDialogue
|
|
} from "./dialogue";
|
|
import { egg } from "./egg";
|
|
import { fightUiHandler } from "./fight-ui-handler";
|
|
import { filterBar } from "./filter-bar";
|
|
import { gameMode } from "./game-mode";
|
|
import { gameStatsUiHandler } from "./game-stats-ui-handler";
|
|
import { growth } from "./growth";
|
|
import { menu } from "./menu";
|
|
import { menuUiHandler } from "./menu-ui-handler";
|
|
import { modifier } from "./modifier";
|
|
import { modifierSelectUiHandler } from "./modifier-select-ui-handler";
|
|
import { modifierType } from "./modifier-type";
|
|
import { move } from "./move";
|
|
import { nature } from "./nature";
|
|
import { partyUiHandler } from "./party-ui-handler";
|
|
import { pokeball } from "./pokeball";
|
|
import { pokemon } from "./pokemon";
|
|
import { pokemonForm } from "./pokemon-form";
|
|
import { pokemonInfo } from "./pokemon-info";
|
|
import { pokemonInfoContainer } from "./pokemon-info-container";
|
|
import { pokemonSummary } from "./pokemon-summary";
|
|
import { saveSlotSelectUiHandler } from "./save-slot-select-ui-handler";
|
|
import { settings } from "./settings.js";
|
|
import { splashMessages } from "./splash-messages";
|
|
import { starterSelectUiHandler } from "./starter-select-ui-handler";
|
|
import { statusEffect } from "./status-effect";
|
|
import { titles, trainerClasses, trainerNames } from "./trainers";
|
|
import { tutorial } from "./tutorial";
|
|
import { voucher } from "./voucher";
|
|
import { terrain, weather } from "./weather";
|
|
|
|
export const ptBrConfig = {
|
|
ability: ability,
|
|
abilityTriggers: abilityTriggers,
|
|
arenaFlyout: arenaFlyout,
|
|
arenaTag: arenaTag,
|
|
battle: battle,
|
|
battleInfo: battleInfo,
|
|
battleMessageUiHandler: battleMessageUiHandler,
|
|
battlerTags: battlerTags,
|
|
berry: berry,
|
|
bgmName: bgmName,
|
|
biome: biome,
|
|
challenges: challenges,
|
|
commandUiHandler: commandUiHandler,
|
|
common: common,
|
|
PGMachv: PGMachv,
|
|
PGFachv: PGFachv,
|
|
PGMdialogue: PGMdialogue,
|
|
PGFdialogue: PGFdialogue,
|
|
PGMbattleSpecDialogue: PGMbattleSpecDialogue,
|
|
PGFbattleSpecDialogue: PGFbattleSpecDialogue,
|
|
PGMmiscDialogue: PGMmiscDialogue,
|
|
PGFmiscDialogue: PGFmiscDialogue,
|
|
PGMdoubleBattleDialogue: PGMdoubleBattleDialogue,
|
|
PGFdoubleBattleDialogue: PGFdoubleBattleDialogue,
|
|
egg: egg,
|
|
fightUiHandler: fightUiHandler,
|
|
filterBar: filterBar,
|
|
gameMode: gameMode,
|
|
gameStatsUiHandler: gameStatsUiHandler,
|
|
growth: growth,
|
|
menu: menu,
|
|
menuUiHandler: menuUiHandler,
|
|
modifier: modifier,
|
|
modifierType: modifierType,
|
|
move: move,
|
|
nature: nature,
|
|
pokeball: pokeball,
|
|
pokemon: pokemon,
|
|
pokemonForm: pokemonForm,
|
|
pokemonInfo: pokemonInfo,
|
|
pokemonInfoContainer: pokemonInfoContainer,
|
|
pokemonSummary: pokemonSummary,
|
|
saveSlotSelectUiHandler: saveSlotSelectUiHandler,
|
|
statusEffect: statusEffect,
|
|
terrain: terrain,
|
|
settings: settings,
|
|
splashMessages: splashMessages,
|
|
starterSelectUiHandler: starterSelectUiHandler,
|
|
titles: titles,
|
|
trainerClasses: trainerClasses,
|
|
trainerNames: trainerNames,
|
|
tutorial: tutorial,
|
|
voucher: voucher,
|
|
weather: weather,
|
|
partyUiHandler: partyUiHandler,
|
|
modifierSelectUiHandler: modifierSelectUiHandler
|
|
};
|