locale.go 686 B

123456789101112131415161718192021222324
  1. // Copyright 2018 Frédéric Guillot. All rights reserved.
  2. // Use of this source code is governed by the Apache 2.0
  3. // license that can be found in the LICENSE file.
  4. package locale // import "miniflux.app/locale"
  5. // AvailableLanguages returns the list of available languages.
  6. func AvailableLanguages() map[string]string {
  7. return map[string]string{
  8. "en_US": "English",
  9. "es_ES": "Español",
  10. "fr_FR": "Français",
  11. "de_DE": "Deutsch",
  12. "pl_PL": "Polski",
  13. "pt_BR": "Português Brasileiro",
  14. "zh_CN": "简体中文",
  15. "nl_NL": "Nederlands",
  16. "ru_RU": "Русский",
  17. "it_IT": "Italiano",
  18. "ja_JP": "日本語",
  19. "tr_TR": "Türkçe",
  20. "el_EL": "Ελληνικά",
  21. }
  22. }