2023-04-17 03:37:23 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package translation
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
// MockLocale provides a mocked locale without any translations
|
|
|
|
type MockLocale struct{}
|
|
|
|
|
|
|
|
var _ Locale = (*MockLocale)(nil)
|
|
|
|
|
|
|
|
func (l MockLocale) Language() string {
|
|
|
|
return "en"
|
|
|
|
}
|
|
|
|
|
2023-07-05 03:41:32 +00:00
|
|
|
func (l MockLocale) Tr(s string, _ ...any) string {
|
2023-04-17 03:37:23 +00:00
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
2023-07-05 03:41:32 +00:00
|
|
|
func (l MockLocale) TrN(_cnt any, key1, _keyN string, _args ...any) string {
|
2023-04-17 03:37:23 +00:00
|
|
|
return key1
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l MockLocale) PrettyNumber(v any) string {
|
|
|
|
return fmt.Sprint(v)
|
|
|
|
}
|