blob: 2bc7c66b5b95e6865ace730d34767b3022541127 (
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
|
// Copyright 2020 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package mocks
import (
"gopkg.in/macaron.v1"
)
var _ macaron.Locale = (*Locale)(nil)
type Locale struct {
MockLang string
MockTr func(string, ...any) string
}
func (l *Locale) Language() string {
return l.MockLang
}
func (l *Locale) Tr(format string, args ...any) string {
return l.MockTr(format, args...)
}
|