Files
Hoto Ras ecf7fd1f90 Temporal addition of Korean l10n
Since the localization project didn't allow me to contribute, I ended up open ip the repo, add up the file, localize, and finally have it able to apply.

- Added: l10n/phrases_ko.go // korean l10n
- Modified: l10n/strings.go // Add casing to have above change able to apply
2024-03-31 13:42:18 +09:00

67 lines
1.0 KiB
Go

package l10n
// Strings returns a translation set that will take any term and return its
// translation.
func Strings(lang string) map[string]string {
switch lang {
case "ar":
return phrasesAR
case "cs":
return phrasesCS
case "da":
return phrasesDA
case "de":
return phrasesDE
case "el":
return phrasesEL
case "eo":
return phrasesEO
case "es":
return phrasesES
case "eu":
return phrasesEU
case "fa":
return phrasesFA
case "fr":
return phrasesFR
case "gl":
return phrasesGL
case "he":
return phrasesHE
case "hu":
return phrasesHU
case "it":
return phrasesIT
case "ja":
return phrasesJA
case "ko":
return phrasesKO
case "lt":
return phrasesLT
case "mk":
return phrasesMK
case "nl":
return phrasesNL
case "pl":
return phrasesPL
case "pt":
return phrasesPT
case "ro":
return phrasesRO
case "ru":
return phrasesRU
case "sk":
return phrasesSK
case "sv":
return phrasesSV
case "tg":
return phrasesTG
case "tr":
return phrasesTR
case "zh":
return phrasesZH
default:
return phrases
}
}