aboutsummaryrefslogtreecommitdiffhomepage
path: root/locale/locale.go
blob: 9a2d97b972b1e6741fcb5b1c6cdd7413bf39d59e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.

package locale // import "miniflux.app/locale"

// AvailableLanguages returns the list of available languages.
func AvailableLanguages() map[string]string {
	return map[string]string{
		"en_US": "English",
		"es_ES": "Español",
		"fr_FR": "Français",
		"de_DE": "Deutsch",
		"pl_PL": "Polski",
		"zh_CN": "简体中文",
		"nl_NL": "Nederlands",
		"ru_RU": "Русский",
		"it_IT": "Italiano",
	}
}