mirror of
https://github.com/tcgdex/javascript-sdk.git
synced 2025-04-22 10:42:10 +00:00
48 lines
579 B
TypeScript
48 lines
579 B
TypeScript
import { translations } from "../TranslationUtil"
|
|
|
|
const translations: translations = {
|
|
en: [
|
|
"Common",
|
|
"unCommon",
|
|
"Rare",
|
|
|
|
"Rare Holo",
|
|
"Rare Holo EX",
|
|
"Rare Holo GX",
|
|
"Rare Holo Lv.X",
|
|
|
|
"Rare Ultra",
|
|
"Rare Prime",
|
|
"Rare ACE",
|
|
"Rare BREAK",
|
|
"Rainbow Rare",
|
|
|
|
"LEGEND",
|
|
|
|
"V",
|
|
"VMax"
|
|
],
|
|
fr: [
|
|
"Commun",
|
|
"Non Commun",
|
|
"Rare",
|
|
|
|
"Rare Holo",
|
|
"Rare Holo EX",
|
|
"Rare Holo GX",
|
|
"Rare Holo Lv.X",
|
|
|
|
"Rare Ultra",
|
|
"Rare Prime",
|
|
"Rare ACE",
|
|
"Rare BREAK",
|
|
"Rainbow Rare",
|
|
|
|
"LEGEND",
|
|
|
|
"V",
|
|
"VMax"
|
|
]
|
|
}
|
|
export default translations
|