Files
doc.rustdesk.com/v3/src/locales.ts
2024-10-22 17:06:21 +08:00

53 lines
899 B
TypeScript

// locale settings for this theme
// https://astro-i18n-starter.pages.dev/setup/
export const DEFAULT_LOCALE_SETTING: string = "en";
export const LOCALES_SETTING: LocaleSetting = {
"en": {
"label": "English"
},
"de": {
"label": "Deutsch"
},
"es": {
"label": "Español"
},
"fr": {
"label": "Français"
},
"it": {
"label": "Italiano"
},
"ja": {
"label": "日本語"
},
"ko": {
"label": "한국어"
},
"pt": {
"label": "Português"
},
"zh-cn": {
"label": "简体中文",
"lang": "zh-CN"
},
"zh-tw": {
"label": "繁體中文",
"lang": "zh-TW"
},
"ar": {
"label": "العربية",
"dir": "rtl"
},
};
interface LocaleSetting {
[key: Lowercase<string>]: {
label: string;
lang?: string;
dir?: 'rtl' | 'ltr';
};
} // refer: https://starlight.astro.build/reference/configuration/#locales