Files
Atay-Makhzan/modules/translation/mock.go
T

28 lines
538 B
Go
Raw Normal View History

2023-04-17 11:37:23 +08: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-04 20:36:08 +02:00
func (l MockLocale) Tr(s string, _ ...any) string {
2023-04-17 11:37:23 +08:00
return s
}
2023-07-04 20:36:08 +02:00
func (l MockLocale) TrN(_cnt any, key1, _keyN string, _args ...any) string {
2023-04-17 11:37:23 +08:00
return key1
}
func (l MockLocale) PrettyNumber(v any) string {
return fmt.Sprint(v)
}