aboutsummaryrefslogtreecommitdiffstats
path: root/modules/translation/mock.go
blob: 6ce66166aa13d6d1db4630b1e8941de994e4e262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 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"
}

func (l MockLocale) Tr(s string, _ ...interface{}) string {
	return s
}

func (l MockLocale) TrN(_cnt interface{}, key1, _keyN string, _args ...interface{}) string {
	return key1
}

func (l MockLocale) PrettyNumber(v any) string {
	return fmt.Sprint(v)
}