Core components of the web application. https://write.as
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 line
230 B

  1. package l10n
  2. // Strings returns a translation set that will take any term and return its
  3. // translation.
  4. func Strings(lang string) map[string]string {
  5. switch lang {
  6. case "hu":
  7. return phrasesHU
  8. default:
  9. return phrases
  10. }
  11. }