-
Notifications
You must be signed in to change notification settings - Fork 11
/
translator.go
141 lines (118 loc) · 2.96 KB
/
translator.go
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
Copyright 2016 Wenhui Shen <www.webx.top>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package echo
import (
"errors"
"fmt"
"strings"
)
// T 标记为多语言文本
func T(format string, args ...interface{}) string {
if len(args) > 0 {
return fmt.Sprintf(format, args...)
}
return format
}
func E(format string, args ...interface{}) error {
if len(args) > 0 {
return fmt.Errorf(format, args...)
}
return errors.New(format)
}
type Translator interface {
T(format string, args ...interface{}) string
E(format string, args ...interface{}) error
Lang() LangCode
}
type LangCode interface {
String() string // all lowercase characters
Normalize() string // lowercase(language)-uppercase(region)
Format(regionUppercase bool, separator ...string) string
Language() string
Region(regionUppercase bool) string
}
func NewLangCode(language string, separator ...string) LangCode {
l := langCode{}
sep := `-`
if len(separator) > 0 && len(separator[0]) > 0 {
sep = separator[0]
}
lg := strings.SplitN(language, sep, 2)
switch len(lg) {
case 2:
l.regionLowercase = strings.ToLower(lg[1])
l.region = strings.ToUpper(lg[1])
fallthrough
case 1:
l.language = strings.ToLower(lg[0])
}
return l
}
type langCode struct {
language string
region string
regionLowercase string
}
func (l langCode) String() string {
if len(l.regionLowercase) > 0 {
return l.language + `-` + l.regionLowercase
}
return l.language
}
func (l langCode) Normalize() string {
if len(l.region) > 0 {
return l.language + `-` + l.region
}
return l.language
}
func (l langCode) Language() string {
return l.language
}
func (l langCode) Region(regionUppercase bool) string {
if regionUppercase {
return l.region
}
return l.regionLowercase
}
func (l langCode) Format(regionUppercase bool, separator ...string) string {
var region string
if regionUppercase {
region = l.region
} else {
region = l.regionLowercase
}
if len(region) > 0 {
if len(separator) > 0 {
return l.language + separator[0] + region
}
return l.language + `-` + region
}
return l.language
}
var DefaultNopTranslate Translator = &NopTranslate{
code: langCode{
language: `en`,
},
}
type NopTranslate struct {
code LangCode
}
func (n *NopTranslate) T(format string, args ...interface{}) string {
return T(format, args...)
}
func (n *NopTranslate) E(format string, args ...interface{}) error {
return E(format, args...)
}
func (n *NopTranslate) Lang() LangCode {
return n.code
}