[Localisation(ja)] Translate challenges.ts (#3439)

Discordでこの質問を聞きましたが、ここでも聞いて置きます:
"Starters" をどう翻訳しましょうか?一番合ってる公式の用語は「最初のパートナー」だと思いますが、ちょっと長いです。
This commit is contained in:
Chapybara-jp 2024-08-08 21:28:26 +02:00 committed by GitHub
parent 2e823b1914
commit 6ad32f3c40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,32 +1,32 @@
import { TranslationEntries } from "#app/interfaces/locales"; import { TranslationEntries } from "#app/interfaces/locales";
export const challenges: TranslationEntries = { export const challenges: TranslationEntries = {
"title": "チャレンジ じょうけん せってい", "title": "チャレンジを 設定",
"illegalEvolution": "{{pokemon}} changed into an ineligble pokémon\nfor this challenge!", "illegalEvolution": "{{pokemon}}は このチャレンジで\n対象外の ポケモンに なってしまった",
"singleGeneration": { "singleGeneration": {
"name": "Mono Gen", "name": "単一世代",
"desc": "You can only use Pokémon from Generation {{gen}}.", "desc": "{{gen}}世代からの ポケモンしか 使えません",
"desc_default": "You can only use Pokémon from the chosen generation.", "desc_default": "選んだ 世代からの ポケモンしか 使えません",
"gen_1": "one", "gen_1": "1",
"gen_2": "two", "gen_2": "2",
"gen_3": "three", "gen_3": "3",
"gen_4": "four", "gen_4": "4",
"gen_5": "five", "gen_5": "5",
"gen_6": "six", "gen_6": "6",
"gen_7": "seven", "gen_7": "7",
"gen_8": "eight", "gen_8": "8",
"gen_9": "nine", "gen_9": "9",
}, },
"singleType": { "singleType": {
"name": "Mono Type", "name": "単一タイプ",
"desc": "You can only use Pokémon with the {{type}} type.", "desc": "{{type}}タイプの ポケモンしか 使えません",
"desc_default": "You can only use Pokémon of the chosen type." "desc_default": "選んだ タイプの ポケモンしか 使えません"
//types in pokemon-info //types in pokemon-info
}, },
"freshStart": { "freshStart": {
"name": "Fresh Start", "name": "出直し",
"desc": "You can only use the original starters, and only as if you had just started pokerogue.", "desc": "ポケローグを 始めた ばかりの ような ままで ゲーム開始の 最初のパートナーしか 使えません",
"value.0": "Off", "value.0": "オフ",
"value.1": "On", "value.1": "オン",
}, },
} as const; } as const;