mirror of
https://github.com/go-gitea/gitea.git
synced 2026-03-29 22:50:12 +02:00
1. remove `TEST_CONFLICTING_PATCHES_WITH_GIT_APPLY` * it defaults to false and is unlikely to be useful for most users (see #22130) * with new git versions (>= 2.40), "merge-tree" is used, "checkConflictsByTmpRepo" isn't called, the option does nothing. 2. fix fragile `db.Cell2Int64` (new: `CellToInt`) 3. allow more routes in maintenance mode (e.g.: captcha) 4. fix MockLocale html escaping to make it have the same behavior as production locale
60 lines
1.4 KiB
Go
60 lines
1.4 KiB
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package translation
|
|
|
|
import (
|
|
"fmt"
|
|
"html"
|
|
"html/template"
|
|
)
|
|
|
|
// MockLocale provides a mocked locale without any translations
|
|
type MockLocale struct {
|
|
Lang, LangName string // these fields are used directly in templates: ctx.Locale.Lang
|
|
}
|
|
|
|
var _ Locale = (*MockLocale)(nil)
|
|
|
|
func (l MockLocale) Language() string {
|
|
return "en"
|
|
}
|
|
|
|
func (l MockLocale) TrString(format string, args ...any) (ret string) {
|
|
ret = format + ":"
|
|
for _, arg := range args {
|
|
// usually there is no arg or at most 1-2 args, so a simple string concatenation is more efficient
|
|
switch v := arg.(type) {
|
|
case string:
|
|
ret += v + ","
|
|
default:
|
|
ret += fmt.Sprint(v) + ","
|
|
}
|
|
}
|
|
return ret[:len(ret)-1]
|
|
}
|
|
|
|
func (l MockLocale) Tr(format string, args ...any) (ret template.HTML) {
|
|
ret = template.HTML(html.EscapeString(format)) + ":"
|
|
for _, arg := range args {
|
|
// usually there is no arg or at most 1-2 args, so a simple string concatenation is more efficient
|
|
switch v := arg.(type) {
|
|
case template.HTML:
|
|
ret += v + ","
|
|
case string:
|
|
ret += template.HTML(html.EscapeString(v)) + ","
|
|
default:
|
|
ret += template.HTML(html.EscapeString(fmt.Sprint(v))) + ","
|
|
}
|
|
}
|
|
return ret[:len(ret)-1]
|
|
}
|
|
|
|
func (l MockLocale) TrN(cnt any, key1, keyN string, args ...any) template.HTML {
|
|
return l.Tr(key1, args...)
|
|
}
|
|
|
|
func (l MockLocale) PrettyNumber(v any) string {
|
|
return fmt.Sprint(v)
|
|
}
|