1
0
Fork 0
miniflux/locale/locale.go

21 lines
572 B
Go
Raw Normal View History

// Copyright 2018 Frédéric Guillot. All rights reserved.
2017-11-19 21:10:04 -08:00
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2018-08-24 21:51:50 -07:00
package locale // import "miniflux.app/locale"
2017-11-19 21:10:04 -08:00
2017-11-27 21:30:04 -08:00
// AvailableLanguages returns the list of available languages.
func AvailableLanguages() map[string]string {
2017-11-19 21:10:04 -08:00
return map[string]string{
"en_US": "English",
2019-01-23 22:45:47 -05:00
"es_ES": "Español",
2017-11-19 21:10:04 -08: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",
2018-02-27 14:36:07 +08:00
"zh_CN": "简体中文",
2018-03-16 15:15:15 +01:00
"nl_NL": "Nederlands",
2018-09-22 20:22:58 +03:00
"ru_RU": "Русский",
2018-12-16 11:48:43 +01:00
"it_IT": "Italiano",
2017-11-19 21:10:04 -08:00
}
}