mirror of
https://github.com/tcgdex/javascript-sdk.git
synced 2025-04-22 10:42:10 +00:00
60 lines
853 B
TypeScript
60 lines
853 B
TypeScript
import { translations } from "../TranslationUtil"
|
|
|
|
const translations: translations = {
|
|
en: [
|
|
"Basic Pokémon",
|
|
"Basic Energy",
|
|
"BREAK",
|
|
"EX",
|
|
"GX",
|
|
"Item",
|
|
"LEGEND",
|
|
"Level-Up",
|
|
"MEGA",
|
|
"Restored",
|
|
"Rocket's Secret Machine",
|
|
"SP",
|
|
"Special",
|
|
"Stadium",
|
|
"Stage 1",
|
|
"Stage 2",
|
|
"Supporter",
|
|
"Tag Team",
|
|
"Technical Machine",
|
|
"Tool",
|
|
"Pokémon V",
|
|
"Pokémon VMAX",
|
|
"Prime",
|
|
"ACE",
|
|
"Rainbow",
|
|
],
|
|
fr: [
|
|
"Pokémon de base",
|
|
"Energie de base",
|
|
"TURBO",
|
|
"EX",
|
|
"GX",
|
|
"Objet",
|
|
"LÉGENDE",
|
|
"Niveau Sup",
|
|
"Méga",
|
|
"Restauré",
|
|
"Machine secrète dees Rocket",
|
|
"SP",
|
|
"Spéciale",
|
|
"Stadium",
|
|
"Niveau 1",
|
|
"Niveau 2",
|
|
"Supporter",
|
|
"ESCOUADE",
|
|
"Machine Technique",
|
|
"Outil",
|
|
"Pokémon V",
|
|
"Pokémon VMAX",
|
|
"Prime",
|
|
"ACE",
|
|
"Arc en ciel",
|
|
]
|
|
}
|
|
export default translations
|