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
|
|
|
|
type MockLocale struct{}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
func (l MockLocale) PrettyNumber(v any) string {
|
|
|
|
return fmt.Sprint(v)
|
|
|
|
}
|