Roo-Code/src/shared/language.ts
Christiaan Arnoldus 206c292498
feat: Indonesian translation (#4672)
* Copy Indonesian text files from Kilo Code

* Use Roo to update its own Indonesian translation
2025-06-13 20:25:05 -04:00

43 lines
1.1 KiB
TypeScript

import { type Language, isLanguage } from "@roo-code/types"
/**
* Language name mapping from ISO codes to full language names.
*/
export const LANGUAGES: Record<Language, string> = {
ca: "Català",
de: "Deutsch",
en: "English",
es: "Español",
fr: "Français",
hi: "हिन्दी",
id: "Bahasa Indonesia",
it: "Italiano",
ja: "日本語",
ko: "한국어",
nl: "Nederlands",
pl: "Polski",
"pt-BR": "Português",
ru: "Русский",
tr: "Türkçe",
vi: "Tiếng Việt",
"zh-CN": "简体中文",
"zh-TW": "繁體中文",
}
/**
* Formats a VSCode locale string to ensure the region code is uppercase.
* For example, transforms "en-us" to "en-US" or "fr-ca" to "fr-CA".
*
* @param vscodeLocale - The VSCode locale string to format (e.g., "en-us", "fr-ca")
* @returns The formatted locale string with uppercase region code
*/
export function formatLanguage(vscodeLocale: string): Language {
if (!vscodeLocale) {
return "en"
}
const formattedLocale = vscodeLocale.replace(/-(\w+)$/, (_, region) => `-${region.toUpperCase()}`)
return isLanguage(formattedLocale) ? formattedLocale : "en"
}