1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2024-10-27 20:34:29 +00:00
tobspr_shapez.io/src/js/languages.js

30 lines
655 B
JavaScript
Raw Normal View History

2020-06-10 10:13:38 +00:00
/**
* @type {Object<string, {name: string, data: any, code: string, region: string}>}
*/
export const LANGUAGES = {
2020-06-10 10:45:27 +00:00
"en": {
2020-06-10 10:13:38 +00:00
name: "English",
data: null,
code: "en",
region: "",
},
2020-06-10 10:45:27 +00:00
"de": {
2020-06-10 10:13:38 +00:00
name: "Deutsch",
data: require("./built-temp/base-de.json"),
code: "de",
region: "",
},
2020-06-10 10:45:27 +00:00
"fr": {
2020-06-10 10:13:38 +00:00
name: "Français",
data: require("./built-temp/base-fr.json"),
code: "fr",
region: "",
},
2020-06-10 10:45:27 +00:00
"pt-BR": {
name: "Português (Brasil)",
data: require("./built-temp/base-pt-BR.json"),
code: "pt",
region: "BR",
},
2020-06-10 10:13:38 +00:00
};