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