2023-04-17 03:37:23 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package translation
|
|
|
|
|
2024-02-14 21:48:45 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"html/template"
|
2024-04-02 17:48:27 +00:00
|
|
|
"strings"
|
2024-02-14 21:48:45 +00:00
|
|
|
)
|
2023-04-17 03:37:23 +00:00
|
|
|
|
|
|
|
// MockLocale provides a mocked locale without any translations
|
2024-03-04 01:02:51 +00:00
|
|
|
type MockLocale struct {
|
|
|
|
Lang, LangName string // these fields are used directly in templates: ctx.Locale.Lang
|
|
|
|
}
|
2023-04-17 03:37:23 +00:00
|
|
|
|
|
|
|
var _ Locale = (*MockLocale)(nil)
|
|
|
|
|
|
|
|
func (l MockLocale) Language() string {
|
|
|
|
return "en"
|
|
|
|
}
|
|
|
|
|
2024-04-02 17:48:27 +00:00
|
|
|
func (l MockLocale) TrString(s string, args ...any) string {
|
|
|
|
return sprintAny(s, args...)
|
2023-04-17 03:37:23 +00:00
|
|
|
}
|
|
|
|
|
2024-04-02 17:48:27 +00:00
|
|
|
func (l MockLocale) Tr(s string, args ...any) template.HTML {
|
|
|
|
return template.HTML(sprintAny(s, args...))
|
2024-02-14 21:48:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (l MockLocale) TrN(cnt any, key1, keyN string, args ...any) template.HTML {
|
2024-04-02 17:48:27 +00:00
|
|
|
return template.HTML(sprintAny(key1, args...))
|
2023-04-17 03:37:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (l MockLocale) PrettyNumber(v any) string {
|
|
|
|
return fmt.Sprint(v)
|
|
|
|
}
|
2024-04-02 17:48:27 +00:00
|
|
|
|
|
|
|
func sprintAny(s string, args ...any) string {
|
|
|
|
if len(args) == 0 {
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
return s + ":" + fmt.Sprintf(strings.Repeat(",%v", len(args))[1:], args...)
|
|
|
|
}
|