1
0
Fork 0
miniflux/locale/locale.go

28 lines
766 B
Go
Raw Normal View History

// Copyright 2018 Frédéric Guillot. All rights reserved.
2017-11-20 00:10:04 -05: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 00:51:50 -04:00
package locale // import "miniflux.app/locale"
2017-11-20 00:10:04 -05:00
2017-11-28 00:30:04 -05:00
// AvailableLanguages returns the list of available languages.
func AvailableLanguages() map[string]string {
2017-11-20 00:10:04 -05:00
return map[string]string{
"en_US": "English",
2019-01-23 22:45:47 -05:00
"es_ES": "Español",
2017-11-20 00:10:04 -05:00
"fr_FR": "Français",
2018-01-15 20:23:47 -05:00
"de_DE": "Deutsch",
2018-02-17 14:29:14 -05:00
"pl_PL": "Polski",
"pt_BR": "Português Brasileiro",
2018-02-27 01:36:07 -05:00
"zh_CN": "简体中文",
2022-03-24 13:34:37 -04:00
"zh_TW": "繁體中文",
2018-03-16 10:15:15 -04:00
"nl_NL": "Nederlands",
2018-09-22 13:22:58 -04:00
"ru_RU": "Русский",
2018-12-16 05:48:43 -05:00
"it_IT": "Italiano",
2020-02-14 05:40:24 -05:00
"ja_JP": "日本語",
2021-03-17 15:43:08 -04:00
"tr_TR": "Türkçe",
"el_EL": "Ελληνικά",
2021-12-18 15:01:15 -05:00
"fi_FI": "Suomi",
"hi_IN": "हिन्दी",
2017-11-20 00:10:04 -05:00
}
}