2024-06-19 15:40:08 -04:00
|
|
|
|
import { TranslationEntries } from "#app/interfaces/locales";
|
2024-06-08 15:07:23 +10:00
|
|
|
|
|
2024-06-19 15:40:08 -04:00
|
|
|
|
export const challenges: TranslationEntries = {
|
2024-06-11 17:40:55 +01:00
|
|
|
|
"title": "適用挑戰條件",
|
2024-06-24 15:28:09 +01:00
|
|
|
|
"illegalEvolution": "{{pokemon}} 進化成了不符合\n挑戰條件的寶可夢!",
|
2024-06-19 15:40:08 -04:00
|
|
|
|
"singleGeneration": {
|
|
|
|
|
"name": "單一世代",
|
2024-06-24 06:32:31 +01:00
|
|
|
|
"desc": "你只能使用第{{gen}}\n世代的寶可夢",
|
|
|
|
|
"desc_default": "你只能使用所選\n世代的寶可夢",
|
2024-06-19 15:40:08 -04:00
|
|
|
|
"gen_1": "一",
|
|
|
|
|
"gen_2": "二",
|
|
|
|
|
"gen_3": "三",
|
|
|
|
|
"gen_4": "四",
|
|
|
|
|
"gen_5": "五",
|
|
|
|
|
"gen_6": "六",
|
|
|
|
|
"gen_7": "七",
|
|
|
|
|
"gen_8": "八",
|
|
|
|
|
"gen_9": "九",
|
|
|
|
|
},
|
|
|
|
|
"singleType": {
|
|
|
|
|
"name": "單屬性",
|
2024-06-24 06:32:31 +01:00
|
|
|
|
"desc": "你只能使用{{type}}\n屬性的寶可夢",
|
|
|
|
|
"desc_default": "你只能使用所選\n屬性的寶可夢"
|
2024-06-19 15:40:08 -04:00
|
|
|
|
},
|
2024-08-06 19:46:11 +02:00
|
|
|
|
"freshStart": {
|
|
|
|
|
"name": "Fresh Start",
|
|
|
|
|
"desc": "You can only use the original starters, and only as if you had just started PokéRogue.",
|
|
|
|
|
"value.0": "Off",
|
|
|
|
|
"value.1": "On",
|
|
|
|
|
}
|
2024-06-08 15:07:23 +10:00
|
|
|
|
} as const;
|