2023-07-22 13:08:42 +02:00
|
|
|
import danish from "./translations/da-DK";
|
|
|
|
|
import german from "./translations/de-DE";
|
|
|
|
|
import english from "./translations/en-US";
|
|
|
|
|
import spanish from "./translations/es-ES";
|
|
|
|
|
import french from "./translations/fr-FR";
|
|
|
|
|
import portugueze from "./translations/pt-PT";
|
|
|
|
|
import thai from "./translations/th-TH";
|
2023-07-20 15:32:07 +02:00
|
|
|
import chineseSimplified from "./translations/zh-CN";
|
|
|
|
|
|
|
|
|
|
export const LOCALES = {
|
|
|
|
|
ENGLISH: {
|
|
|
|
|
name: "English",
|
2023-07-22 13:08:42 +02:00
|
|
|
code: "en-US",
|
2023-07-20 15:32:07 +02:00
|
|
|
messages: english,
|
|
|
|
|
},
|
|
|
|
|
GERMAN: {
|
|
|
|
|
name: "Deutsch",
|
2023-07-22 13:08:42 +02:00
|
|
|
code: "de-DE",
|
2023-07-20 15:32:07 +02:00
|
|
|
messages: german,
|
|
|
|
|
},
|
|
|
|
|
FRENCH: {
|
|
|
|
|
name: "Français",
|
2023-07-22 13:08:42 +02:00
|
|
|
code: "fr-FR",
|
2023-07-20 15:32:07 +02:00
|
|
|
messages: french,
|
|
|
|
|
},
|
|
|
|
|
PORTUGUEZE: {
|
|
|
|
|
name: "Português",
|
2023-07-22 13:08:42 +02:00
|
|
|
code: "pt-PT",
|
2023-07-20 15:32:07 +02:00
|
|
|
messages: portugueze,
|
|
|
|
|
},
|
|
|
|
|
DANISH: {
|
|
|
|
|
name: "Dansk",
|
2023-07-22 13:08:42 +02:00
|
|
|
code: "da-DK",
|
2023-07-20 15:32:07 +02:00
|
|
|
messages: danish,
|
|
|
|
|
},
|
|
|
|
|
THAI: {
|
|
|
|
|
name: "ไทย",
|
2023-07-22 13:08:42 +02:00
|
|
|
code: "th-TH",
|
2023-07-20 15:32:07 +02:00
|
|
|
messages: thai,
|
|
|
|
|
},
|
|
|
|
|
SPANISH: {
|
|
|
|
|
name: "Español",
|
2023-07-22 13:08:42 +02:00
|
|
|
code: "es-ES",
|
2023-07-20 15:32:07 +02:00
|
|
|
messages: spanish,
|
|
|
|
|
},
|
|
|
|
|
CHINESE_SIMPLIFIED: {
|
|
|
|
|
name: "简体中文",
|
|
|
|
|
code: "zh-CN",
|
|
|
|
|
messages: chineseSimplified,
|
|
|
|
|
},
|
|
|
|
|
};
|