2022-04-03 11:46:48 +02:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-04-03 11:46:48 +02:00
|
|
|
|
|
|
|
package i18n
|
|
|
|
|
|
|
|
import (
|
2024-02-14 22:48:45 +01:00
|
|
|
"html/template"
|
2022-08-28 11:43:25 +02:00
|
|
|
"io"
|
2022-04-03 11:46:48 +02:00
|
|
|
)
|
|
|
|
|
2022-08-28 11:43:25 +02:00
|
|
|
var DefaultLocales = NewLocaleStore()
|
2022-07-04 12:17:09 +02:00
|
|
|
|
2022-08-28 11:43:25 +02:00
|
|
|
type Locale interface {
|
2024-02-14 22:48:45 +01:00
|
|
|
// TrString translates a given key and arguments for a language
|
|
|
|
TrString(trKey string, trArgs ...any) string
|
|
|
|
// TrHTML translates a given key and arguments for a language, string arguments are escaped to HTML
|
|
|
|
TrHTML(trKey string, trArgs ...any) template.HTML
|
|
|
|
// HasKey reports if a locale has a translation for a given key
|
|
|
|
HasKey(trKey string) bool
|
2022-06-26 16:19:22 +02:00
|
|
|
}
|
2022-04-03 11:46:48 +02:00
|
|
|
|
2022-08-28 11:43:25 +02:00
|
|
|
// LocaleStore provides the functions common to all locale stores
|
|
|
|
type LocaleStore interface {
|
|
|
|
io.Closer
|
2022-07-04 12:17:09 +02:00
|
|
|
|
2022-08-28 11:43:25 +02:00
|
|
|
// SetDefaultLang sets the default language to fall back to
|
|
|
|
SetDefaultLang(lang string)
|
|
|
|
// ListLangNameDesc provides paired slices of language names to descriptors
|
|
|
|
ListLangNameDesc() (names, desc []string)
|
|
|
|
// Locale return the locale for the provided language or the default language if not found
|
|
|
|
Locale(langName string) (Locale, bool)
|
|
|
|
// HasLang returns whether a given language is present in the store
|
|
|
|
HasLang(langName string) bool
|
|
|
|
// AddLocaleByIni adds a new language to the store
|
2022-09-25 01:00:16 +02:00
|
|
|
AddLocaleByIni(langName, langDesc string, source, moreSource []byte) error
|
2022-04-03 11:46:48 +02:00
|
|
|
}
|
|
|
|
|
2022-06-26 16:19:22 +02:00
|
|
|
// ResetDefaultLocales resets the current default locales
|
|
|
|
// NOTE: this is not synchronized
|
2022-08-28 11:43:25 +02:00
|
|
|
func ResetDefaultLocales() {
|
|
|
|
if DefaultLocales != nil {
|
|
|
|
_ = DefaultLocales.Close()
|
|
|
|
}
|
|
|
|
DefaultLocales = NewLocaleStore()
|
2022-04-03 11:46:48 +02:00
|
|
|
}
|
|
|
|
|
2024-02-14 22:48:45 +01:00
|
|
|
// GetLocale returns the locale from the default locales
|
2022-08-28 11:43:25 +02:00
|
|
|
func GetLocale(lang string) (Locale, bool) {
|
|
|
|
return DefaultLocales.Locale(lang)
|
2022-04-03 11:46:48 +02:00
|
|
|
}
|