miniflux-v2/locale/locale.go

30 lines
832 B
Go
Raw Normal View History

// Copyright 2018 Frédéric Guillot. All rights reserved.
2017-11-20 06:10:04 +01:00
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2018-08-25 06:51:50 +02:00
package locale // import "miniflux.app/locale"
2017-11-20 06:10:04 +01:00
2017-11-28 06:30:04 +01:00
// AvailableLanguages returns the list of available languages.
func AvailableLanguages() map[string]string {
2017-11-20 06:10:04 +01:00
return map[string]string{
"en_US": "English",
2019-01-24 04:45:47 +01:00
"es_ES": "Español",
2017-11-20 06:10:04 +01:00
"fr_FR": "Français",
2018-01-16 02:23:47 +01:00
"de_DE": "Deutsch",
2018-02-17 20:29:14 +01:00
"pl_PL": "Polski",
"pt_BR": "Português Brasileiro",
2018-02-27 07:36:07 +01:00
"zh_CN": "简体中文",
2022-03-24 18:34:37 +01:00
"zh_TW": "繁體中文",
2018-03-16 15:15:15 +01:00
"nl_NL": "Nederlands",
2018-09-22 19:22:58 +02:00
"ru_RU": "Русский",
2018-12-16 11:48:43 +01:00
"it_IT": "Italiano",
2020-02-14 11:40:24 +01:00
"ja_JP": "日本語",
2021-03-17 20:43:08 +01:00
"tr_TR": "Türkçe",
"el_EL": "Ελληνικά",
2021-12-18 21:01:15 +01:00
"fi_FI": "Suomi",
"hi_IN": "हिन्दी",
2022-08-15 18:13:47 +02:00
"uk_UA": "Українська",
2023-02-19 16:38:42 +01:00
"id_ID": "Bahasa Indonesia",
2017-11-20 06:10:04 +01:00
}
}