mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
* Copy Indonesian text files from Kilo Code * Use Roo to update its own Indonesian translation
43 lines
1.1 KiB
TypeScript
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"
|
|
}
|