 6d703bb6e3
			
		
	
	
	6d703bb6e3
	
	
	
		
			
			## 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)). - [x] I will test the UI with a screenshot. And attach it in a comment when test has passed. ### 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. https://codeberg.org/forgejo/docs/pulls/1145 - [ ] I did not document these changes and I do not expect someone else to do it. ### Release notes - [x] I do not want this change to show in the release notes. - [ ] 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. ### Reason for the PR? The reason is to correct the naming of the lang in the UI. It was discussed in the matrix chat and requested by @0ko. https://matrix.to/#/!UJgSZwuZLRYXEOyjPb:matrix.org/$TbMlNm9L1P9gHFwJYZ3vTIPBKtUHyaoQVEDdzfTQIxI?via=matrix.org&via=envs.net&via=mozilla.org Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7539 Reviewed-by: Earl Warren <earl-warren@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", "Dansk",
 | |
| 	"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()
 | |
| 	}
 | |
| }
 |