This includes basic US English terms and a function to get any translation set.
9 lines
107 B
Go
9 lines
107 B
Go
package l10n
|
|
|
|
func Strings(lang string) map[string]string {
|
|
switch lang {
|
|
default:
|
|
return phrases
|
|
}
|
|
}
|