locale.go 526 B

123456789101112131415161718
  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. "fr_FR": "Français",
  10. "de_DE": "Deutsch",
  11. "pl_PL": "Polski",
  12. "zh_CN": "简体中文",
  13. "nl_NL": "Nederlands",
  14. "ru_RU": "Русский",
  15. }
  16. }