pokerogue/src/locales/zh_TW/egg.ts
Greenlamp2 bac6c22973
ESLint - The Essential Linter and Formatter for JavaScript and TypeScript (#1224)
* eslint config + packages

* updated eslint config

* fix the issue eslint adding ;;;; at interfaces

* first round with eslint --fix .

* removed config for unused export

* Revert "first round with eslint --fix ."

This reverts commit 77a88e0895.

* removed config for camelCase

* for real this time, first round of eslint --fix .

* halfway to manual eslint fix

* eslint done

* added "how to setup" the hook to eslint --fix each new file before commit (if wanted)

* removed eslintrc config file duplicat

* fix human error + ignore build folder + merge overrides

* added curly brace style + eslint

* applied double quote linter rule

* added lefthook

* test precommit

* test precommit

* test precommit

* test precommit

* test precommit

* test precommit

* test precommit

* github action to run eslint

* added node_modules to ignore eslint

* different action for typescript

* no need for different glob (default src)

* node 20

* node 20

* removed no longer needed install file

* remove hooks part from README

* eslint fixes

---------

Co-authored-by: Frederico Santos <frederico.f.santos@tecnico.ulisboa.pt>
2024-05-23 11:03:10 -04:00

22 lines
894 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { SimpleTranslationEntries } from "#app/plugins/i18n";
export const egg: SimpleTranslationEntries = {
"egg": "蛋",
"greatTier": "稀有",
"ultraTier": "史詩",
"masterTier": "傳說",
"defaultTier": "普通",
"hatchWavesMessageSoon": "裡面傳來聲音!\n似乎快要孵化了",
"hatchWavesMessageClose": "有時好像會動一下。\n就快要孵化了吧",
"hatchWavesMessageNotClose": "會孵化出什麼呢?\n看來還需要很長時\n間才能孵化。",
"hatchWavesMessageLongTime": "這個蛋需要很長時間\n才能孵化。",
"gachaTypeLegendary": "傳說概率上升",
"gachaTypeMove": "稀有概率上升",
"gachaTypeShiny": "閃光概率上升",
"selectMachine": "選擇一個機器。",
"notEnoughVouchers": "你沒有足夠的兌換券!",
"tooManyEggs": "你的蛋太多啦!",
"pull": "抽",
"pulls": "抽"
} as const;