
## Checklist The [contributor guide](https://forgejo.org/docs/next/contributor/) contains information that will be helpful to first time contributors. There also are a few [conditions for merging Pull Requests in Forgejo repositories](https://codeberg.org/forgejo/governance/src/branch/main/PullRequestsAgreement.md). You are also welcome to join the [Forgejo development chatroom](https://matrix.to/#/#forgejo-development:matrix.org). ### Tests - I added test coverage for Go changes... - [ ] in their respective `*_test.go` for unit tests. - [ ] in the `tests/integration` directory if it involves interactions with a live Forgejo server. - I added test coverage for JavaScript changes... - [ ] in `web_src/js/*.test.js` if it can be unit tested. - [ ] in `tests/e2e/*.test.e2e.js` if it requires interactions with a live Forgejo server (see also the [developer guide for JavaScript testing](https://codeberg.org/forgejo/forgejo/src/branch/forgejo/tests/e2e/README.md#end-to-end-tests)). - I tested via manual method for the changes - [X] in terminal using the "make" command. ### Documentation - [x] I created a pull request [to the documentation](https://codeberg.org/forgejo/docs) to explain to Forgejo users how to use this change. - [ ] I did not document these changes and I do not expect someone else to do it. ### Release notes - [ ] I do not want this change to show in the release notes. - [x] I want the title to show in the release notes with a link to this pull request. - [ ] I want the content of the `release-notes/<pull request number>.md` to be be used for the release notes instead of the title. <!--start release-notes-assistant--> ## Release notes <!--URL:https://codeberg.org/forgejo/forgejo--> - Localization - [PR](https://codeberg.org/forgejo/forgejo/pulls/7287): <!--number 7287 --><!--line 0 --><!--description aTE4bjogbWFrZSBEYW5pc2ggYXZhaWxhYmxlIGluIFVJ-->i18n: make Danish available in UI<!--description--> <!--end release-notes-assistant--> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7287 Reviewed-by: 0ko <0ko@noreply.codeberg.org> Co-authored-by: Tacaly <frederick@tacaly.com> Co-committed-by: Tacaly <frederick@tacaly.com>
70 lines
1.6 KiB
Go
70 lines
1.6 KiB
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package setting
|
|
|
|
// defaultI18nLangNames must be a slice, we need the order
|
|
var defaultI18nLangNames = []string{
|
|
"en-US", "English",
|
|
"zh-CN", "简体中文",
|
|
"zh-HK", "繁體中文(香港)",
|
|
"zh-TW", "繁體中文(台灣)",
|
|
"da", "Danish",
|
|
"de-DE", "Deutsch",
|
|
"nds", "Plattdüütsch",
|
|
"fr-FR", "Français",
|
|
"nl-NL", "Nederlands",
|
|
"lv-LV", "Latviešu",
|
|
"ru-RU", "Русский",
|
|
"uk-UA", "Українська",
|
|
"ja-JP", "日本語",
|
|
"es-ES", "Español",
|
|
"pt-BR", "Português do Brasil",
|
|
"pt-PT", "Português de Portugal",
|
|
"pl-PL", "Polski",
|
|
"bg", "Български",
|
|
"it-IT", "Italiano",
|
|
"fi-FI", "Suomi",
|
|
"fil", "Filipino",
|
|
"eo", "Esperanto",
|
|
"tr-TR", "Türkçe",
|
|
"cs-CZ", "Čeština",
|
|
"sl", "Slovenščina",
|
|
"sv-SE", "Svenska",
|
|
"ko-KR", "한국어",
|
|
"el-GR", "Ελληνικά",
|
|
"fa-IR", "فارسی",
|
|
"hu-HU", "Magyar nyelv",
|
|
"id-ID", "Bahasa Indonesia",
|
|
}
|
|
|
|
func defaultI18nLangs() (res []string) {
|
|
for i := 0; i < len(defaultI18nLangNames); i += 2 {
|
|
res = append(res, defaultI18nLangNames[i])
|
|
}
|
|
return res
|
|
}
|
|
|
|
func defaultI18nNames() (res []string) {
|
|
for i := 0; i < len(defaultI18nLangNames); i += 2 {
|
|
res = append(res, defaultI18nLangNames[i+1])
|
|
}
|
|
return res
|
|
}
|
|
|
|
var (
|
|
// I18n settings
|
|
Langs []string
|
|
Names []string
|
|
)
|
|
|
|
func loadI18nFrom(rootCfg ConfigProvider) {
|
|
Langs = rootCfg.Section("i18n").Key("LANGS").Strings(",")
|
|
if len(Langs) == 0 {
|
|
Langs = defaultI18nLangs()
|
|
}
|
|
Names = rootCfg.Section("i18n").Key("NAMES").Strings(",")
|
|
if len(Names) == 0 {
|
|
Names = defaultI18nNames()
|
|
}
|
|
}
|