2018-09-23 00:04:55 +02:00
|
|
|
// 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",
|
|
|
|
"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",
|
2018-02-27 07:36:07 +01:00
|
|
|
"zh_CN": "简体中文",
|
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",
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
}
|