2020-06-19 23:01:26 +08:00
|
|
|
// Code generated by go-bindata. (@generated) DO NOT EDIT.
|
|
|
|
|
|
|
|
//Package translations generated by go-bindata.// sources:
|
|
|
|
// translations/dicts/de_DE.toml
|
|
|
|
// translations/dicts/en_US.toml
|
2020-11-24 05:14:57 +08:00
|
|
|
// translations/dicts/eo.toml
|
2020-06-19 23:01:26 +08:00
|
|
|
// translations/dicts/tt_TT.toml
|
|
|
|
// translations/dicts/zh_CN.toml
|
|
|
|
package translations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"compress/gzip"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func bindataRead(data []byte, name string) ([]byte, error) {
|
|
|
|
gz, err := gzip.NewReader(bytes.NewBuffer(data))
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("read %q: %v", name, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var buf bytes.Buffer
|
|
|
|
_, err = io.Copy(&buf, gz)
|
|
|
|
clErr := gz.Close()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("read %q: %v", name, err)
|
|
|
|
}
|
|
|
|
if clErr != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf.Bytes(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type asset struct {
|
|
|
|
bytes []byte
|
|
|
|
info os.FileInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
type bindataFileInfo struct {
|
|
|
|
name string
|
|
|
|
size int64
|
|
|
|
mode os.FileMode
|
|
|
|
modTime time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name return file name
|
|
|
|
func (fi bindataFileInfo) Name() string {
|
|
|
|
return fi.name
|
|
|
|
}
|
|
|
|
|
|
|
|
// Size return file size
|
|
|
|
func (fi bindataFileInfo) Size() int64 {
|
|
|
|
return fi.size
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mode return file mode
|
|
|
|
func (fi bindataFileInfo) Mode() os.FileMode {
|
|
|
|
return fi.mode
|
|
|
|
}
|
|
|
|
|
|
|
|
// ModTime return file modify time
|
|
|
|
func (fi bindataFileInfo) ModTime() time.Time {
|
|
|
|
return fi.modTime
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsDir return file whether a directory
|
|
|
|
func (fi bindataFileInfo) IsDir() bool {
|
|
|
|
return fi.mode&os.ModeDir != 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sys return file is sys mode
|
|
|
|
func (fi bindataFileInfo) Sys() interface{} {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type assetFile struct {
|
|
|
|
*bytes.Reader
|
|
|
|
name string
|
|
|
|
childInfos []os.FileInfo
|
|
|
|
childInfoOffset int
|
|
|
|
}
|
|
|
|
|
|
|
|
type assetOperator struct{}
|
|
|
|
|
|
|
|
// Open implement http.FileSystem interface
|
|
|
|
func (f *assetOperator) Open(name string) (http.File, error) {
|
|
|
|
var err error
|
|
|
|
if len(name) > 0 && name[0] == '/' {
|
|
|
|
name = name[1:]
|
|
|
|
}
|
|
|
|
content, err := Asset(name)
|
|
|
|
if err == nil {
|
|
|
|
return &assetFile{name: name, Reader: bytes.NewReader(content)}, nil
|
|
|
|
}
|
|
|
|
children, err := AssetDir(name)
|
|
|
|
if err == nil {
|
|
|
|
childInfos := make([]os.FileInfo, 0, len(children))
|
|
|
|
for _, child := range children {
|
|
|
|
childPath := filepath.Join(name, child)
|
|
|
|
info, errInfo := AssetInfo(filepath.Join(name, child))
|
|
|
|
if errInfo == nil {
|
|
|
|
childInfos = append(childInfos, info)
|
|
|
|
} else {
|
|
|
|
childInfos = append(childInfos, newDirFileInfo(childPath))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return &assetFile{name: name, childInfos: childInfos}, nil
|
|
|
|
} else {
|
|
|
|
// If the error is not found, return an error that will
|
|
|
|
// result in a 404 error. Otherwise the server returns
|
|
|
|
// a 500 error for files not found.
|
|
|
|
if strings.Contains(err.Error(), "not found") {
|
|
|
|
return nil, os.ErrNotExist
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close no need do anything
|
|
|
|
func (f *assetFile) Close() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Readdir read dir's children file info
|
|
|
|
func (f *assetFile) Readdir(count int) ([]os.FileInfo, error) {
|
|
|
|
if len(f.childInfos) == 0 {
|
|
|
|
return nil, os.ErrNotExist
|
|
|
|
}
|
|
|
|
if count <= 0 {
|
|
|
|
return f.childInfos, nil
|
|
|
|
}
|
|
|
|
if f.childInfoOffset+count > len(f.childInfos) {
|
|
|
|
count = len(f.childInfos) - f.childInfoOffset
|
|
|
|
}
|
|
|
|
offset := f.childInfoOffset
|
|
|
|
f.childInfoOffset += count
|
|
|
|
return f.childInfos[offset : offset+count], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stat read file info from asset item
|
|
|
|
func (f *assetFile) Stat() (os.FileInfo, error) {
|
|
|
|
if len(f.childInfos) != 0 {
|
|
|
|
return newDirFileInfo(f.name), nil
|
|
|
|
}
|
|
|
|
return AssetInfo(f.name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// newDirFileInfo return default dir file info
|
|
|
|
func newDirFileInfo(name string) os.FileInfo {
|
|
|
|
return &bindataFileInfo{
|
|
|
|
name: name,
|
|
|
|
size: 0,
|
|
|
|
mode: os.FileMode(2147484068), // equal os.FileMode(0644)|os.ModeDir
|
|
|
|
modTime: time.Time{}}
|
|
|
|
}
|
|
|
|
|
|
|
|
// AssetFile return a http.FileSystem instance that data backend by asset
|
|
|
|
func AssetFile() http.FileSystem {
|
|
|
|
return &assetOperator{}
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
var _de_deToml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\xdd\x72\xdb\xb8\x92\xbe\xe7\x53\xf4\xe2\xd4\xd9\x64\x52\x91\x62\xc9\x49\x26\x61\x42\x57\xd9\xb1\xe2\xb8\x62\x67\xbd\x96\x3d\xa9\x9d\x38\x17\x20\xd9\x24\x71\x44\x82\x3c\x00\x28\x8d\x65\xf9\x4d\xb6\x6a\x6f\xf2\x0c\xb9\xca\x9d\x5e\x6c\xab\x01\xe8\x37\xf6\x99\xe4\xd4\x5c\x89\x22\x1a\x8d\x46\xff\x7c\xfd\x35\x93\x5a\x66\x22\xcf\x44\x89\x11\x7b\x6f\x9f\x5b\xc5\x8d\xa8\xa5\x4e\xb9\x41\xc1\x82\x56\xf3\x1c\x23\xf6\x1b\xaa\x09\xca\xb4\x95\x79\x08\x37\x3b\xb7\xf0\xa9\x6e\x48\x0a\xe5\xe7\x2b\x79\x25\xff\xcb\xff\x09\xaf\x24\x0b\x4c\x6d\x78\x19\xb1\x23\xd4\xbc\x32\x2c\x08\x82\x4f\x05\x96\xcd\xe7\xa0\xe1\xa6\xd0\x11\xfb\xc0\x93\x02\x4a\x9e\xc6\x5c\xa1\x84\xb7\x5c\xc5\x3a\x29\xb0\xe2\x86\x43\x2b\x53\x38\xe1\xd7\x75\x6b\x34\xe8\x7a\x22\x10\x52\x54\x70\x87\x59\x30\x11\x2a\x05\x21\xed\x7a\x56\x97\x39\xca\x14\x25\x9c\xa3\x28\x50\xda\xff\x90\xa3\x6e\x93\xc2\x84\x2c\x28\xeb\x3c\x62\x87\x02\xe1\x4c\xd5\xa6\x1e\xd5\x65\xe9\x74\xc4\x98\x09\x99\xa2\x01\x2d\x92\x82\x94\xdd\xec\xdc\xb2\x60\xa2\x84\x31\x28\xb7\xbc\x41\xea\x92\x42\x09\x8c\x51\x02\x6f\x33\x27\x4b\xf7\x8a\x18\x63\xc1\x01\x5a\x03\x42\xf8\x27\xd4\x64\xd2\xeb\x37\x9d\x64\x2f\x08\xce\x54\x3d\x45\xad\x25\x1f\x8b\xdc\xaa\x09\x03\x80\x0e\x8c\xec\x45\x5f\x5f\x36\x7b\x21\xd4\x31\x4a\xfb\xf2\x1f\xee\xe5\x61\x3d\x91\x7b\x21\x48\x81\x29\x2a\xbb\xf0\xfa\x4d\xa7\xdd\x0b\xa1\xe0\x65\x8c\x30\x44\x61\x10\x24\xb9\x70\xb9\xf3\xf5\x9b\x4e\x7a\x97\x40\x2b\xcd\x4a\x22\xde\x0b\x21\xe7\x72\x7a\xaf\x8a\xec\x2e\x81\x95\x8a\x3c\x77\xf6\xbd\xab\x2b\x24\xfb\x16\xdb\x41\x37\x4a\xc8\xdc\x4b\x1d\x39\xa1\x81\x4c\x17\x32\x56\xc3\x4a\x88\x5c\x92\xa0\xd6\xc0\x13\x1b\x4d\xe7\x90\xd7\x17\x9c\xec\xf3\xee\xca\x55\xdb\x34\x02\x55\x2b\x73\x68\x2b\x9d\x14\xbc\x5c\x58\x91\xa6\x21\x38\x5f\x03\x0a\x69\x43\xa1\x73\x9c\xcc\xbf\x14\x24\xb2\x50\xe0\x62\x40\x02\x70\x44\xba\x10\xc6\xf5\x72\x11\x25\x54\xc2\xc0\xf0\xf8\xe8\x62\x70\x7e\x0a\x0f\x7b\xcf\x7e\x71\xaa\x77\xff\x42\xd5\xff\x7d\x79\x7c\x01\x0f\x77\xbd\xe6\x97\x21\x98\xf9\x57\xf3\x57\x28\x7e\x7f\x7c\x72\x02\x0f\x5f\xfe\xb2\xcc\x2d\x5d\x2b\xe3\x7c\xe5\x5c\x99\x84\xf0\xe6\xec\xd2\x3e\x56\x21\x9c\x62\x65\x1f\x9b\x10\xce\x8e\x0f\x97\x9b\x32\x51\x9a\xb5\x3d\x4f\x42\x78\x6b\xdf\x40\x8c\x5c\xc5\x14\x7e\xe7\xee\x87\x64\xa5\x42\x99\xda\x3a\x3b\xf0\x8b\xad\xcc\x7f\xa1\x8d\x36\x72\x03\x69\x50\xed\x2d\x15\xf0\xd1\x14\x1b\x32\xc8\x6a\xf0\xa9\x95\xec\xf9\xb4\xd0\x09\x6f\x70\x25\x5c\xce\xbf\x52\xe9\xcb\x20\x78\x73\x76\xd9\xb1\x32\xa7\x58\x75\x8e\x14\x6f\x8a\xce\x70\xc4\xcb\xf5\x8b\x15\x21\x68\xf7\x0a\x25\x08\x67\x5f\xb9\xf6\x2e\x08\x3e\xa0\x99\x4e\x50\x8d\x9c\x7c\x1c\xc2\xe5\x32\x79\x60\x3a\x11\xf6\x28\x38\x3d\x10\x06\x9e\x80\xb6\xa7\xf9\xcd\x24\x70\x70\x6d\x50\x43\xa3\x6a\x18\xe2\xa8\x95\x29\x06\x54\xd7\x7f\x83\xf9\xff\x1e\x0c\xce\x87\x83\x8b\xdf\x07\xe7\x21\x1c\x10\x34\xc0\xfc\x5b\x8c\x4a\xa3\x99\xa2\x84\x21\x61\x94\x40\x8f\x5a\x9d\x47\x8f\x3e\xf0\x0a\xe5\xa3\x47\x20\x45\x52\x98\xa0\xf4\x60\x16\x01\x63\x6c\x40\x25\x10\xf3\xd6\x2c\xc4\x6d\xf6\x43\x8a\x19\x6f\x4b\x43\x8f\x95\x90\xa2\xe2\x25\x3d\xc6\xdc\x18\x54\xd7\xf4\x38\x12\x86\x4c\xd7\x42\x8e\x7e\xca\xa6\x15\xb4\x7e\x67\x57\x52\x97\xb5\xb2\x6b\xf8\xbd\x71\xeb\x90\xbc\x6d\xa1\x7f\xec\xa4\x5c\x8d\xe0\x61\x36\xff\xa6\x60\x82\x62\xfe\x7f\x28\xe1\x9d\xa0\x54\xc8\x55\x2b\x53\xca\x7b\xd0\x75\xc9\x95\x98\x62\xba\xf1\xa7\xf7\xdc\xee\xdd\x7e\x57\x8a\xbc\x70\x2e\xa8\x65\x3d\xe2\x82\x1e\xc7\x22\x41\xfa\x95\xb5\x4a\x7f\xea\xe2\x1f\x45\x9a\xe3\xf7\xc1\x98\xd8\xd7\xfe\xbe\x4e\x46\x3f\xb6\x1b\x84\x5c\xb6\x9d\xb1\xeb\x73\x68\x60\x82\x8a\x7a\xca\x68\xfe\x55\x52\x67\x23\x4b\x92\xa6\xb5\x39\x4d\xe9\x7a\xc2\xb5\x49\x05\xcf\x15\xaf\x2a\x6b\x38\x56\x76\xed\xac\xb8\xd6\x36\xd7\xe0\x3f\x61\x38\xe1\x4d\x67\xd8\xa0\x48\x0a\x54\x4b\xd5\x12\x8e\x14\xcf\x84\xf5\x81\xc1\xaa\xa1\x5d\x43\x94\x54\xc9\x58\x35\xa8\xb8\x69\x7d\xf9\xa4\x42\x8f\x68\x75\xd5\x7c\x6d\x21\x36\x8b\x23\x24\xbc\x45\x6d\x9a\x92\x72\x45\x36\x5c\x19\x41\xa0\x4a\x3b\x9b\x7a\x82\x0a\x3a\x30\x20\x40\x39\xb0\xb9\x24\x50\x1b\x2e\x73\xe7\x52\x34\xd6\xd8\x45\xc9\x94\x5c\x5b\xef\x37\xaa\x4e\x34\x74\xe0\x98\x42\xc9\x47\x46\x8c\x71\x81\x41\xa5\x
|
2020-06-19 23:01:26 +08:00
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
func de_deTomlBytes() ([]byte, error) {
|
2020-06-19 23:01:26 +08:00
|
|
|
return bindataRead(
|
2021-01-26 02:18:59 +08:00
|
|
|
_de_deToml,
|
|
|
|
"de_DE.toml",
|
2020-06-19 23:01:26 +08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
func de_deToml() (*asset, error) {
|
|
|
|
bytes, err := de_deTomlBytes()
|
2020-06-19 23:01:26 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
info := bindataFileInfo{name: "de_DE.toml", size: 7313, mode: os.FileMode(420), modTime: time.Unix(1611585497, 0)}
|
2020-06-19 23:01:26 +08:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
var _en_usToml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x58\x5f\x73\x13\x39\x12\x7f\x9f\x4f\xd1\xa7\xad\xdd\x84\x54\x62\x62\x1b\x16\x18\x98\x54\x41\x08\x5c\x6a\x13\x36\x9b\xc4\x47\x5d\x11\x1e\xe4\x99\xf6\x8c\xd6\x1a\x69\x56\xd2\xd8\xf8\xe2\x7c\xf7\xab\x96\x34\xfe\x13\xc2\xdd\xc2\x93\x35\x52\xff\x55\x77\xff\xba\xe5\x5c\xab\x89\x28\x27\x42\x62\xc6\x8e\xfd\x1a\xe8\x83\x25\xad\xe5\x25\x66\x6c\x44\x3f\x29\xdc\x1e\xde\xc1\x27\xdd\x38\xa1\x95\xfd\x7c\xa3\x6e\xd4\xef\x61\x9d\xde\x28\x96\x38\xed\xb8\xcc\xd8\x35\xfd\xb0\x24\x49\x3e\x55\x28\x9b\xcf\x49\xc3\x5d\x65\x33\x76\xa6\x79\xc1\xc7\x12\x21\xd7\x52\x1b\x9b\x57\x58\xa3\x85\x5f\x40\xf2\x85\x6e\x9d\xdd\x07\xae\x0a\x70\x15\x9d\xaf\xd4\xef\x03\x37\x08\x16\xb9\xc9\x2b\x2c\x60\xa2\xcd\x3e\x08\x05\xda\x14\x68\x52\x96\x48\x5d\x66\xec\xba\x42\x90\x3a\xd0\x83\xb0\x74\x7e\x7b\x78\xc7\x92\xb9\x11\xce\xa1\x5a\xb9\x13\xbf\xc1\xe9\x70\x4e\xc6\x65\x8c\xb1\xe4\x8f\x56\xb8\x14\xfe\x02\x6d\xe0\xd5\xf1\x41\x7e\x94\x24\x17\x46\xe7\x68\x2d\x28\x3e\x13\x25\x27\x07\xd3\x04\xe0\x00\xa6\xde\xc6\x57\xa3\xe6\x28\x85\xb6\xf1\x5b\x7f\x86\xad\xb7\x7a\xae\x8e\x52\x28\xf4\x5c\xf9\xed\x57\xc7\x07\xed\x51\x0a\x15\x97\x13\x68\x78\x89\x1d\xf9\xab\xe3\x83\x62\x6b\x7f\x93\x63\x7c\x94\xc2\xa4\x95\xf2\x3e\xc7\x64\x6b\x7f\xc5\x51\x96\x41\xf7\x3f\x75\x8d\x47\x29\xfc\xd9\xd6\x0d\x39\xe7\x74\x60\x7c\x1f\x4e\x4f\x54\xb1\x71\x38\xd6\xce\xe9\x7a\xed\x21\xcf\x43\xf8\x82\xaa\x6b\x4e\x26\x38\x5d\x96\x12\xa1\x89\x24\xa5\xd1\x6d\x23\x54\xe9\x49\x8a\x22\x85\xa9\x90\x12\x2c\x4a\xcc\x1d\x16\x2b\x32\x6d\x02\x25\xe8\x49\xb7\x87\x16\xe6\xc2\x55\x70\x75\xfa\xfe\xfa\xe4\xf2\x1c\x76\xfb\x4f\x1f\x05\x29\xc3\x1f\x93\xf2\xc7\xe8\xf4\x1a\x76\x87\x51\xc8\x8b\x1f\x13\xf2\xdb\xe9\xd9\x19\xec\xbe\x78\xb4\xbe\x04\xab\x8d\x13\xaa\x0c\x97\x90\xa7\x70\x7c\x31\xf2\xcb\x3a\x85\x73\xac\xfd\xb2\x49\xe1\xe2\xf4\xed\x9a\x65\x22\xa4\x43\xb3\x62\x7a\x9c\x82\x75\xdc\x38\xc0\x42\x90\xa8\x78\xee\xcf\x76\xe7\x15\x65\x66\x3c\x79\x44\x0c\xfe\xb2\x4f\x94\x43\x73\x94\x02\xcf\x73\x6c\xdc\x9a\x23\x06\x3d\x3f\x8a\xf1\xb3\x39\x6f\x28\xbe\xb9\x44\x6e\x3a\xb2\xe4\xf8\x62\xe4\xcf\xcf\xb1\x86\xd2\xf0\xa6\x02\x9b\x73\xb9\x32\xa8\x4a\xfd\x37\x82\x08\xb9\x22\xbb\x6f\xdd\xba\x24\xf9\x80\x6e\xae\xcd\x34\x90\x8e\x57\x11\x1f\xa3\x9b\x23\x2a\xa8\xc7\x8d\xf5\xc2\x3d\x4b\x01\xe3\x85\x43\x0b\x0d\x1a\xb0\x98\x6b\x55\x24\x54\x35\x3f\xc1\xf5\xe5\xeb\x0f\x57\x67\xaf\xaf\x7f\xbf\xbc\x4a\xe1\x42\x22\xb7\x94\x9c\x6a\xc7\x81\x33\x5c\x59\xc9\x1d\xfa\x7a\x0e\x05\x0e\x7b\x7b\x8a\xd7\x68\xf7\xf6\x92\x58\xf1\x90\x01\x63\xec\x4d\x2b\xa4\x3b\x10\xaa\xc3\x01\x7f\x3f\x05\x4e\x78\x2b\x1d\x2d\x6b\xa1\x44\xcd\x25\x2d\xc7\xdc\x39\x34\x0b\x5a\x4e\x85\xcb\x2b\x54\x56\xa8\xe9\xf7\x19\xe3\xc1\xc7\x63\xcf\x86\x41\x5b\x88\xb4\x6d\xd5\xe6\xd1\x7d\xd3\xe2\xf2\xa0\xe0\x66\x0a\xbb\x13\x6d\x60\x5e\x09\x87\x30\xe6\xf9\x94\x12\x50\x15\x94\xa9\x60\xb5\xe4\x46\xfc\x07\x8b\xad\x8f\xfe\xaf\x9e\xef\xfe\x9e\x14\x65\x15\xfc\xd6\x4a\x4f\xb9\xa0\xe5\x4c\xe4\x48\xbf\x4a\x9b\xe2\xfb\xbc\x9d\x8b\xa2\xc4\xcd\xab\x0f\x1b\xd1\xc9\x8f\xf1\xc3\x55\xdc\x41\xce\x15\x8c\x11\x5a\x8b\x05\xdc\x8b\x46\xde\xb4\x3e\x2b\x29\xe7\xa4\xe6\x45\x48\x38\x6f\x24\xd6\xfe\xe4\xa2\x5a\x58\x91\x73\x09\xbf\x80\x9d\xf3\x86\xf6\xb5\x59\x90\xb0\x35\xad\xc3\xba\x21\xda\x2b\x54\x56\x1b\xff\x89\x86\xbb\xd6\xa0\xf5\x97\x29\xec\x74\x4b\x94\xdf\x68\xb8\x71\x82\x20\x8a\x64\x11\x59\xa3\xe7\x68\xe0\x00\x5e\x77\xd9\x00\x63\xee\xab\x46\xa1\xf3\xa6\xc4\xdc\xf6\x86\x7a\x06\xa3\x73\x0b\x07\x70\x4a\xe5\x46\x70\x37\x5b\x43\x9b\x14\xd6\xd1\x85\x26\xc9\x27\x6e\x4a\xfb\x39\xf6\x84\xab\x4a\xcf\xc1\x55\xc2\x82\xcd\x0d\xa2\xea\xb1\x90\x21\x19\xbb\x42\x07\x7c\x33\x27\x7a\x2c\xf1\x45\x92\xb1\xf7\xab\x22\x44\x98\xf0\xdc\x51\xab\x3a\x3a\x64\xc9\x0c\x8d\x15\x5a\x65\xec\xc2\x08\xe5\x20\x7e\xfa\xf2\xc2\x2f\xc2\xf5\x58\xd2\xa0\xc9\x9b\x36\xaa\x45\x9e\x57\xfe\xa2\x85\xf2\x11\xa4\x65\x08\x1a\x59\xd1\xb4\x7c\x56\x46\x4a\x3e\x43\x43\xfd\xe0\x5b\xc4\x74\xc1\x9d\x2f\x1b\x77\x4d\xb4\x13\x5e\x19\x54\x15\x7a\xf5\xd6\x71\xd7\xda\x31\x37\x9d\x5c\x58\xed\x04\xcc\x24\xc9\x4e\x78\x5f\x0d\x77\x98\xb1\x4b\x9c\x18\xb4\x15\x4c\x0c\xfe\xd5\xa2\xca\x17\x3d\x38\xd7\xd6\x79\x22\x68\x95\x70\x36\x
|
2020-06-19 23:01:26 +08:00
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
func en_usTomlBytes() ([]byte, error) {
|
2020-06-19 23:01:26 +08:00
|
|
|
return bindataRead(
|
2021-01-26 02:18:59 +08:00
|
|
|
_en_usToml,
|
|
|
|
"en_US.toml",
|
2020-06-19 23:01:26 +08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
func en_usToml() (*asset, error) {
|
|
|
|
bytes, err := en_usTomlBytes()
|
2020-06-19 23:01:26 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
info := bindataFileInfo{name: "en_US.toml", size: 6145, mode: os.FileMode(420), modTime: time.Unix(1611583853, 0)}
|
2020-06-19 23:01:26 +08:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
var _eoToml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\xdb\x76\xdb\xb6\xd2\xbe\xe7\x53\xcc\x8f\xae\xfe\x39\xac\x58\xb1\xec\xa4\x49\x94\x30\x6b\xb9\x89\xd3\xed\x55\x3b\xf1\xf6\xa1\xfb\x22\xce\xc5\x88\x1c\x51\x10\x41\x80\x1b\x00\x95\x5a\x96\xef\x77\xdf\xa1\x79\x84\x5e\xf6\x0d\x9c\xf7\xda\x6b\x40\x50\xa7\x24\x6d\xb3\x7b\x25\x8a\x98\x13\x30\xdf\x7c\x33\x60\x66\xf4\x48\x16\x23\xa9\x28\x15\x7b\xb6\x30\xb9\xc9\x8d\x93\x64\x8d\x48\x1a\x87\x05\xa5\xe2\x7c\x86\xb9\x19\xc0\xd5\xf6\x35\xbc\xa5\xa1\x32\x93\x77\x17\xfa\x42\xef\xf3\xd3\xe0\x42\x8b\xc4\x1b\x8f\x2a\x15\xa7\x4d\x65\x44\x92\x24\x6f\xc7\xa4\xea\x77\x49\x8d\x7e\xec\x52\xf1\xf1\x57\xb4\x37\x1f\x68\xa8\x10\x4a\x65\x2c\x4e\xc0\x95\x54\x99\x09\xfc\x3f\x90\xae\xf1\xe6\x83\x2c\xcc\xe4\x1e\x94\x38\x01\x85\x80\xab\x01\xdc\x03\x72\x1e\x1d\x18\x9b\x23\x38\xb2\x37\xbf\xa0\x97\x85\x74\x03\x91\x28\x53\xa4\xe2\xd0\x14\x9d\x28\x78\x6b\xa6\xf2\xe6\x03\x3a\xb8\xf9\x85\x38\x54\x91\xbc\xb7\xd2\x7b\xd2\xed\xae\x6c\x6e\xc0\x95\x56\x0e\xe5\xcd\x07\xb9\x22\xc4\xb1\xa6\x42\x88\x64\x5f\x49\x2b\x07\xf0\x6f\xc0\x8f\xbf\xc1\xb3\x17\x5b\xd9\xf3\x24\x39\xb6\x26\xa3\x19\x82\xc6\xa9\x2c\x30\x37\x93\x41\x02\xb0\x05\x65\x88\xf6\xd9\x69\x53\x5b\xd2\xcf\x07\xe0\xc2\x43\x58\x9a\xb4\x4b\x47\xa8\x5c\xb7\x5a\x75\xcf\x41\xe0\xd9\x8b\xad\xe6\xf9\x00\xf2\xc6\x68\x04\xde\xbe\x81\xf5\xd5\x7c\x63\xf5\x13\xf5\xe1\xf3\x01\xd4\x8a\xbe\xa0\x3e\xda\x58\x5d\x57\x2f\x8a\x36\xbe\x7f\xd0\xa4\x32\x1c\x39\x2a\x2f\x01\x55\x30\x62\x5a\x99\x1f\x5a\x91\x57\x52\xaf\x49\x44\x43\x46\x2f\x8f\x05\x8b\xee\x44\x9e\x1d\xa2\x2e\xc8\xb3\x02\x2a\x4f\x56\x4b\xa8\x83\x90\xd1\x50\xd8\xa6\x96\x85\x0c\x72\x79\x3e\x80\x91\xd4\x92\x53\x4d\x8a\x4a\x2f\x3d\x4e\x74\x27\x3b\xd1\xe1\xf0\x37\x34\x8d\x86\xb2\xd1\x70\x7a\xf0\xc3\xd9\xfe\xc9\x11\xdc\xee\x3f\xbc\xd3\xda\xda\xfd\x3b\xb6\xfe\x79\x7e\x70\x06\xb7\x77\xa3\xa9\x27\x7f\xc7\xd4\x8f\x07\x87\x87\x70\xfb\xc9\x9d\xe5\xc1\x18\x9b\xcb\xc5\xd9\x64\x03\x78\x71\x7c\x1e\x1e\xab\x01\x1c\x51\x65\xac\x09\xff\xea\x01\x1c\x1f\xbc\x5c\x6a\x8d\xa4\xf2\x76\x89\xb2\xfb\x03\x28\x4d\x45\x3a\x93\x60\x29\xc7\xd2\xcb\x56\x42\xaa\x98\xa8\xdb\x79\x53\xc5\x25\xcc\xe5\x1d\xd6\x0a\xb9\xd8\xd7\xd2\x4a\xce\x44\x99\x51\xbd\xa1\x15\x51\x92\x3d\x6f\x93\xbc\xef\x4a\xac\x59\x96\x18\xfd\x2b\x92\xc9\x8b\xe3\xf3\x20\x12\xe2\x45\x28\x2c\x8e\xa4\xe2\x12\x42\x25\xdb\xf8\xc6\x03\x98\x99\xaa\xcd\xab\x0a\x30\x0f\x7f\x93\x13\xf2\xa6\x95\x18\x2e\xd1\x20\xb5\x27\x0b\xd5\xb0\x76\xc1\x2a\x9b\x21\x18\xe2\xc4\x9b\x09\xd4\xc6\x42\xde\x60\xc2\x55\xf8\x0d\x9c\x9d\xec\xbd\x3e\x3d\xdc\x3b\x7b\x73\x72\x3a\x80\x63\x45\xe8\x08\x72\xa3\x6f\x79\xf0\x16\xb5\x53\xe8\x09\xfc\x98\x40\xe1\xa5\x69\x3c\xdc\xbd\xab\xb1\x22\x77\xf7\x6e\xd2\xbe\x70\x90\x82\x10\x62\x5f\x97\x46\x3b\x6f\x1b\xce\xe4\x0a\xd1\x84\x43\xca\x69\x84\x8d\xf2\xfc\x58\x49\x2d\x2b\x54\xfc\x38\x44\xef\xc9\x5e\xf2\x63\x29\x7d\x36\x26\xed\xa4\x2e\xbf\x2e\xa8\xcc\x28\x63\x5d\x36\xa6\x8a\x56\x22\x5b\x79\xfb\xd9\xf0\xd6\x78\x71\x33\xc2\xf8\xb8\x95\xa3\x2d\xe1\x36\x9f\xd5\x50\xa1\x2e\x11\x46\x46\x1b\x86\x2f\x38\xa3\xd0\xca\x19\xe5\x6b\x7f\xfa\xdf\x05\x95\xcd\x77\x4a\x16\xe3\x76\xe7\x46\x9b\x12\x39\x7d\x30\x95\x19\xf1\xaf\x36\x36\xff\xba\xfd\xbe\x97\x79\x41\xab\x49\x68\x5f\x2c\x76\xd9\x1e\x3b\x4e\xe0\x15\x69\x72\xde\xe2\xcd\xef\x71\x87\x59\xdd\x04\x30\x32\xce\x3e\x7e\xe0\x16\xb1\x00\x59\x88\x8e\xaa\xb0\xfc\x4a\xce\x64\x89\x50\xe2\x65\x0b\xa1\x8f\x1f\x50\xb3\x68\xb5\x06\x4b\xd6\xf0\x54\xd5\xac\x71\x46\x55\x4d\x16\x7d\x63\xb9\x67\x68\x27\x95\x99\x84\x73\x94\xae\x5c\x5a\x9c\x84\xff\xb9\x74\x35\x5a\x1f\x22\x6c\x66\x98\x47\x53\xb5\x79\x4f\x16\xb6\xe0\x7b\xf4\x64\x25\x3b\x9b\x35\x36\xae\x69\xf2\x21\xb0\x13\xf2\xab\x1a\xd6\x64\x0e\xb6\xe0\x80\x63\xc4\x02\x23\x59\x20\x28\xe9\xbc\xe1\x33\x4d\x92\xb7\x68\x0b\xf7\x2e\x36\x9c\x9b\xff\x48\xf0\xb2\xd1\x20\xf5\xc8\xd8\xca\x4c\x7a\xa2\x85\x49\x2a\xf6\xb8\x59\xc9\x75\x50\xf4\x44\xe2\x32\x0c\x1d\xba\x5d\x6d\x37\x8e\x3a\x54\x92\xd1\xf7\xe0\xf9\xb6\x48\xa6\x64\x9d\x34\x3a\x15\x47\x46\x7b\x2b\x21\xfe\x0f\x15\x17\x0a\xbc\x27\x92\x9a\x6c\x56\x37\x0b\x91\x9b\x5f\x38\x08\x4e\x02\x69\x66\xbf\x17\xc7\xe7\x5b\xa3\x65\xae\x38\xaa\xba\xc1\x69\xb1\x50\x08\xad\xe9\x8f\x35\x38\
|
2020-11-24 05:14:57 +08:00
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
func eoTomlBytes() ([]byte, error) {
|
2020-11-24 05:14:57 +08:00
|
|
|
return bindataRead(
|
2021-01-26 02:18:59 +08:00
|
|
|
_eoToml,
|
|
|
|
"eo.toml",
|
2020-11-24 05:14:57 +08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
func eoToml() (*asset, error) {
|
|
|
|
bytes, err := eoTomlBytes()
|
2020-11-24 05:14:57 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
info := bindataFileInfo{name: "eo.toml", size: 6481, mode: os.FileMode(420), modTime: time.Unix(1606165483, 0)}
|
2020-11-24 05:14:57 +08:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
var _tt_ttToml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x58\x6d\x73\xdb\xb6\x93\x7f\xcf\x4f\xb1\x87\x4e\x9b\x87\x89\x15\x4b\x4e\xd2\x86\x29\x3d\x93\x38\x4e\xce\x53\x3b\x75\xfd\x70\x99\x9b\x38\x2f\x20\x62\x49\xa2\x02\x01\x16\x00\xa5\xe8\x2c\x7f\xf7\x9b\x05\x40\x49\x8e\x9d\x7f\xd3\xbe\xa3\x80\x7d\x04\x76\x7f\xfb\x83\x4a\xa3\x2b\x59\x57\x52\x61\xc1\x0e\xde\xbd\x87\x77\xc7\x87\x2c\xeb\x1d\xaf\xb1\x60\x58\x73\x77\x99\xc3\xf5\xee\x0d\x7c\x72\xda\x48\xdf\x99\xcf\x57\xfa\x4a\xc7\xef\xdf\xf3\x2b\xcd\x32\x6f\x3c\x57\x05\x53\xdc\x9b\x0b\x96\x65\xd9\xa7\x06\x55\xf7\x39\xeb\xb8\x6f\x5c\xc1\x2c\x0a\x6b\x40\x4b\x78\x62\x4d\x05\x02\x9b\xd2\x72\x74\x80\x96\xc3\x13\x54\xb2\x82\x5a\x56\xda\x94\x80\x8d\x07\xa1\x39\x3c\x71\xbe\x37\x4b\xae\xe0\x27\x70\xd8\x62\x53\x3a\x6b\x14\xed\xab\x29\x17\xdc\x1c\xe7\x2c\x53\xa6\x2e\x98\x96\xe0\x24\x44\x0b\x46\x01\x36\x17\x14\x25\xcb\x16\x56\x7a\x8f\xba\x60\xc6\x83\x46\xef\xa5\x5d\x44\x17\x07\x71\x9f\x82\x2b\x18\x63\xd9\x7e\xb9\x73\xf0\x2b\x58\x03\x7f\x41\xee\x65\xff\x47\x96\xe5\x94\x14\xaf\xe5\x9c\x6b\x70\x0e\x4b\x63\x4f\xb3\xae\x87\x7c\xbf\xbb\xfc\x35\xc4\x36\x83\x1d\x80\x4c\x2f\x8c\x80\x7c\x5f\x2f\xcc\xdb\xb8\xfc\x67\x58\xee\x7a\xc0\x9a\x77\x50\x29\xde\x40\xbe\xdf\x93\xf5\xb5\xf8\xf6\x8e\x18\x76\x06\x0d\xa5\xfa\x0a\xf2\xfd\xe9\x5d\x8d\xb4\x53\xad\x35\x8c\x07\xe3\xa1\x6b\xfb\x3f\x21\xdf\xc7\xd6\xfc\x77\x8c\xa0\xae\xc3\x76\x6b\xbc\x37\xd3\x2d\x09\xa1\x0f\xa3\xc0\xfb\xb0\x9f\xe5\xe1\xde\x4a\xbe\x4e\xaf\xd6\xb2\xeb\x8d\xad\xd3\x42\x07\xa8\xea\xda\x78\x8a\x86\x5f\x44\x9f\x8f\x9e\x8f\x1f\xc2\xc9\xd9\xe1\xc5\xfb\xa3\x73\x68\xbc\x5c\x80\xc3\x41\xba\x32\x10\xd5\xad\x59\x5b\x10\xe8\x4b\x54\xe8\x40\x29\x39\x83\x5c\x88\x68\x65\xef\x21\x5c\x1c\x5d\xfe\xf1\xef\x8c\xec\x25\x23\x2f\x1f\xc2\xf1\xf1\xd1\x6f\xff\xce\xc8\x4b\x91\x0e\xa1\xd6\xd2\x5b\xe3\xd6\x87\x70\x79\x7a\x00\x79\x19\x4f\x10\x4f\x20\x6f\xc3\xe7\xdb\xa3\x53\xc8\xbb\x8d\x8a\x45\x4f\xc5\x36\x28\xa5\x9f\x64\x4b\x0a\x04\x6f\xb9\x77\x90\x3f\x0d\xf2\xf9\xa3\x61\x19\x95\x6c\x16\x0f\xc3\x62\x52\xf0\x1d\x96\x25\x87\x7c\xdf\xa2\xa7\xdb\xd9\x01\xd8\x6c\x5a\x8e\xaa\xa4\x9b\xed\x78\xe9\xd2\xd5\xc5\x3a\x8d\x62\x21\x10\xc5\x4b\x07\x4d\xc7\x6d\x0d\x14\x2e\xc9\x5c\x9e\x1e\x64\x9a\xba\x81\xb6\xf2\x26\xf8\xf3\xbd\x19\x16\x54\xca\x62\x66\xcd\xc2\xe3\x87\x4c\x68\x53\xa2\x03\x8b\x1d\x38\xf4\xcb\x29\x88\x28\x48\xa6\x5c\x37\x6d\x41\x23\x2e\x3c\x4e\xd7\xd5\x30\x0d\x06\xa8\x6b\x7e\x80\x8b\xb3\xd7\x1f\xce\x8f\x5f\x5f\xfc\x7e\x76\x9e\xc3\xa9\x42\xee\x10\x84\xd1\x0f\x3c\x9d\x81\x76\x8a\x7b\x04\xdf\x20\x28\xbe\x34\xbd\x87\xc7\x8f\x35\x6f\xd1\x3d\x7e\x9c\xc5\x05\x07\x05\x30\xc6\x86\x2e\xd7\x72\xc7\x2b\xd9\xbf\xc9\x33\x00\xf0\xaa\xe7\x15\x0a\xfa\x54\xbc\x95\x5a\xb6\xf4\xb9\xb4\xe8\x3d\x9f\xd2\xe7\x4c\x4b\xa7\xb1\x29\xbd\x9c\xfd\xb3\x60\x4a\xa3\x8c\x2d\x1b\x6c\x71\x2b\xa0\xb0\xe8\xc2\xea\x10\xd5\x36\xe2\x7c\x2b\xb4\x47\x42\x53\xa5\xcd\x4a\x3e\x05\xf4\xb2\x59\x80\x35\xd5\x43\x98\x59\x2e\x76\xb6\xc4\x04\xfe\x9f\xb4\x5c\x19\x17\x02\xa7\xcd\x17\xe3\x5b\x6b\xbe\xa9\xa5\xfa\x7a\x51\xf2\x99\xd1\x26\xe4\x8d\xa5\x9c\xff\xb3\x2c\x17\x52\xd4\xb8\x7d\xe4\x71\xe1\xce\x91\x83\x40\xd7\x03\x4e\x41\xf3\x12\x3c\x6f\x3c\x38\x8f\xb5\x90\x1f\x43\xaa\xb1\xb4\x04\x37\x8a\xea\x2a\x54\x5e\xdf\x95\x9b\x1d\xd2\x5d\x5a\xd3\x62\x0b\x1d\x5f\x38\xf8\x09\x14\x2f\xa5\x5b\x36\xa7\x41\xb6\xc5\x10\xbd\x43\xdb\x7b\x6e\xb1\x6b\xd1\x83\x35\x4e\xe3\x39\x6d\xd3\xcf\x90\x9c\xeb\x81\xb0\x48\x7a\xcb\x3b\x98\x39\x29\x6e\x59\xa1\x05\x12\xb3\x7c\x3a\xdc\x3f\xbc\x86\x1d\xb0\xb8\x30\x5d\x38\x5d\x0a\x2f\xd5\x73\x70\xeb\x51\x87\x43\x75\x52\x6d\xc0\x6c\x4e\x60\x47\x8d\x76\x04\x3b\xe0\x68\x8d\x0e\x34\xcb\x3e\x71\x5b\xbb\xcf\x69\x16\x8c\x34\xa2\x2d\x1d\x38\xd9\x78\x58\x98\xe6\x9c\xc5\xca\x28\xd8\x68\xbb\x1c\x38\x78\x3c\x67\x99\x2b\x39\x0d\xca\xdd\x7d\x1a\x68\xbe\xe4\x55\x6a\x32\x3a\x9b\xf7\x2c\x9b\xa3\x75\xd2\xe8\x82\x8d\xbc\xfc\x82\xa1\xa3\xb4\x91\xce\xe2\x1c\xbc\x96\xf6\x94\x65\x1d\xda\xb2\xeb\x49\x80\x8e\x7c\x11\xce\x98\x86\x9f\x96\xe1\xb3\x29\x39\x0e\x51\x74\x3d\x9f\xd7\xdf\x94\xc4\x9a\x5b\x9c\xf3\x24\xec\xb1\xed\x82\x57\x6c\x34\xda\x86\x57\x24\x76\xeb\x12\x48\xee\xef\xf6\x59\xe6\x3c\xf7\xbd\x9b\xf2\x98\xbe\xf4\xc1\x63\x00\x
|
2020-06-19 23:01:26 +08:00
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
func tt_ttTomlBytes() ([]byte, error) {
|
2020-06-19 23:01:26 +08:00
|
|
|
return bindataRead(
|
2021-01-26 02:18:59 +08:00
|
|
|
_tt_ttToml,
|
|
|
|
"tt_TT.toml",
|
2020-06-19 23:01:26 +08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
func tt_ttToml() (*asset, error) {
|
|
|
|
bytes, err := tt_ttTomlBytes()
|
2020-06-19 23:01:26 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
info := bindataFileInfo{name: "tt_TT.toml", size: 6058, mode: os.FileMode(420), modTime: time.Unix(1598361953, 0)}
|
2020-06-19 23:01:26 +08:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
var _zh_cnToml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x58\xeb\x73\xd3\x56\x16\xff\xae\xbf\xe2\xec\xed\x74\x68\x19\x70\x63\x07\x0a\x18\xc4\x4c\x97\xb2\x5d\x66\xe9\x2e\xc3\x63\x77\x76\x08\x1f\x14\xeb\xda\x56\x23\x4b\x5a\xe9\xda\x21\x1b\x67\xc6\x3c\x92\x38\xe4\x61\x48\x43\x02\x81\x16\x42\x43\x09\xb4\xe0\x94\xf2\x30\x76\x9c\xfc\x31\xe8\x4a\xf6\xa7\xfe\x0b\x3b\xf7\x61\x23\x43\xd8\x3e\x3e\x59\x3a\xef\x73\xee\xb9\xbf\x73\xe4\x94\x6d\xa5\x8d\x4c\xda\x30\xb1\x8a\xda\xe3\xb3\x61\xf3\x49\xb0\x38\xe9\x37\x5e\x20\x25\xef\x69\x19\xac\x22\xbf\xb9\x15\x2e\xac\x05\x8b\xaf\x82\x9f\xaf\x27\x61\xb4\x6f\x0c\xce\xb6\x4b\x53\xed\x95\x57\xe7\x06\xac\x01\x4b\x3c\x26\x07\x2c\xa4\x10\x9b\x68\xa6\x8a\x82\x52\xa3\xf5\x64\x05\x29\x8a\x72\x36\x8b\x4d\xe7\x9c\xe2\x68\x24\xeb\xa9\x28\x98\x99\x6a\xaf\xd4\x69\xbd\xe2\x37\xe6\xfc\xc6\x7d\xbf\x36\xed\x37\x99\x3b\x7f\xe3\x06\x1d\x2f\xb7\xaa\x0d\x5a\x59\x6c\x8f\xcf\xb6\xa6\x9e\x32\x5f\x2b\xe5\xd7\xa5\x0b\xb4\x76\x89\xfe\x54\x12\xaf\x74\x7e\x26\x1a\x5e\x12\x29\xa6\x9d\x51\x51\xb0\x74\x9f\x6e\x2d\x09\x9a\xdf\x9c\xf5\xeb\x73\x2c\x44\xa4\x0c\xbb\x06\x21\xd8\xea\xcd\x89\xbe\x7c\x4a\x27\x6e\xd2\xf1\xfb\x42\x86\x85\xa7\x22\x84\x94\x76\xa9\x44\x27\xeb\x49\xf8\x0f\xd8\x2e\x1c\x3a\xb2\x3b\x75\x58\x51\x5a\x5b\xb7\xc2\xb5\x69\x5a\xdd\x68\x95\x1f\x25\x15\x80\xdd\x30\x04\x41\x79\x11\x0e\x9d\x71\x0e\x27\xc1\xaf\x5d\xf1\x6b\xa5\xd6\xca\x0c\xe7\x7c\x25\x38\x9f\xdb\xc3\x16\xe7\x4d\x47\x78\x87\x8e\xec\xce\x0b\x05\x3a\x7b\xa5\xbd\xf2\xbc\x43\xd4\x85\x64\x2f\x71\xb0\x6b\x3a\x42\x4c\x77\x6d\x76\x88\x99\x8c\x70\xf8\x57\x3b\x87\x0f\x27\x81\x96\xd7\xdb\x2b\x2f\xda\x97\xd6\x38\xf3\x0b\xc1\x3b\x6a\xe9\x82\x45\xeb\xd7\x19\x4b\x26\x14\x7c\x3d\xeb\x37\x6f\x8b\x84\x0e\x9d\xd6\x06\xb9\xcc\x64\x30\x7b\x4f\xb0\xc3\xc6\x65\xce\xd2\xf5\x24\xd0\xca\xb5\x76\xe9\x82\xbf\xb5\x42\x2b\x2f\xe1\xd4\xb1\x2f\x4e\x1f\x3d\xf9\x25\x7c\x14\xdf\xfb\x31\x84\x8d\x72\xf0\x58\x6a\x04\xe5\xc5\xb7\x54\xfb\xdf\xa7\xda\xff\x6b\x9a\x07\xde\xa7\x79\xe0\xff\x68\x76\x12\x9b\x9b\xa7\xf5\x8a\x48\x2c\x95\x84\x23\x27\xce\xf0\xc7\x5c\x12\xe8\xc4\x38\x7d\x7c\x83\xbf\x39\x49\x90\xd2\x77\x27\x5b\xd5\x89\x8e\x6e\x6b\x6b\x32\x68\xac\x0a\xdd\x4f\x92\x40\x37\x4a\xf4\xc1\x74\xb8\xb1\xd8\xda\xbc\x26\x58\xf4\xa6\xa8\xed\x47\x82\x18\x2c\xbd\xf8\x98\x49\xf3\x22\x1e\xb5\x08\x76\xd9\x11\x6d\x7d\x43\x1f\xdf\x88\xca\xcb\xf3\x4b\x1d\x96\x27\xe2\xa5\x34\x87\x9d\x57\x50\x1b\x6f\xdf\x5c\x7d\x23\xa9\x1c\x39\x71\x06\xe8\xfc\x8c\x08\x94\xde\xda\xa4\xcd\x7b\x41\x75\xc1\xdf\x9c\x16\x21\x65\x93\x10\x2c\x6c\xd2\xd5\x07\x82\xc8\x69\x66\x12\xc2\x8d\x87\x74\xbd\x22\x69\x4a\xd8\xbc\x16\x36\xe4\xc1\x0e\x26\x81\xde\x5e\x83\xdc\xa0\xe3\x31\xbb\x10\x54\x2b\xe1\x83\x79\xfa\x78\xa9\x75\xe5\x62\x70\x7d\x1d\xfc\x57\xd3\xed\xa5\x67\xe2\xdc\x15\x76\x01\x3e\x80\xd3\x27\x3f\xfb\xfb\xa9\xe3\x9f\x9d\xfe\xc7\xc9\x53\x49\x38\x61\x62\xcd\xc3\xa0\xdb\xd6\x0e\x02\xc4\xd5\x2c\xcf\xd4\x08\x06\x92\xc5\x60\x6a\x23\x76\x9e\xc0\xce\x9d\x96\x96\xc3\xde\xce\x9d\x8a\x20\x78\xa0\x02\x42\x88\x65\xd0\xa8\x47\xaf\x2d\x2f\x93\x8e\xd3\x5a\xde\x24\xec\x31\x67\x58\x46\x4e\x33\xd9\xe3\xa0\x46\x08\x76\x47\xd8\xe3\x90\x41\x52\x59\x6c\x79\x86\x35\xf4\xfb\xc2\x49\xd9\xa6\xed\xa6\xb2\x38\x87\x23\x21\x71\xa2\xc7\xa9\x3d\x71\x45\xd1\xe5\xed\xb8\xe4\xe3\x6e\x5d\x73\x87\xe0\xa3\x70\x61\xcd\xaf\xcf\x85\x37\x9b\xad\xa9\xa7\xad\x4b\x33\xc1\xcd\xea\xc7\x4c\xc8\xb3\x4d\xcd\x35\xfe\x8b\xf5\x9e\x97\xf8\xa7\x5c\xeb\x6d\x9a\x69\x64\xb2\x22\x65\xdb\xb2\x87\x34\x83\x3d\x16\x8c\x14\x66\xbf\x96\xed\xea\xbf\x2f\xd1\x61\x43\xcf\xe0\x68\xdd\x05\xa1\x93\x5f\xa5\xda\xba\xf7\x83\x88\x3a\x5a\xfd\x70\xf9\x72\xd8\xb8\xcc\x90\xef\xea\x2c\xcf\x38\xe5\xe4\x79\x5b\xb2\x8e\x6b\x3d\xbb\xd3\x6a\x36\xe9\xad\x4d\x1e\x24\xce\x71\x46\x38\xf5\x30\xbc\x3a\x21\x3b\x71\x7e\xc6\xaf\xaf\x06\xb3\xf7\xc4\xab\x18\x04\xe1\xdc\xa4\x54\x21\x38\xe7\x30\x15\x7f\xe3\x6e\x70\xf9\x0e\xbd\xb9\x16\xd4\x1e\xd2\xfa\xf7\xbc\x9a\x86\x37\xf4\xc6\x5a\xf8\xdd\x85\xf0\x16\xb3\x46\xcb\x13\x74\xa6\xde\xb5\xc3\x24\x1d\x7b\x18\xbb\x4c\x72\xe1\x79\xf0\xd3\xdd\xf0\xca\x8b\xa0\x74\x81\x57\x08\x13\x11\x0f\x6f\x6b\x11\x2a\x97\x77\xed\x94\x07\xbb\x81\x56\xaa\x7e\x7d\xd5\xaf\xcf\x4b\x9c\x2e\x2f\xb5\x56\x
|
2020-06-19 23:01:26 +08:00
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
func zh_cnTomlBytes() ([]byte, error) {
|
2020-06-19 23:01:26 +08:00
|
|
|
return bindataRead(
|
2021-01-26 02:18:59 +08:00
|
|
|
_zh_cnToml,
|
|
|
|
"zh_CN.toml",
|
2020-06-19 23:01:26 +08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
func zh_cnToml() (*asset, error) {
|
|
|
|
bytes, err := zh_cnTomlBytes()
|
2020-06-19 23:01:26 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-01-26 02:18:59 +08:00
|
|
|
info := bindataFileInfo{name: "zh_CN.toml", size: 5932, mode: os.FileMode(420), modTime: time.Unix(1606165503, 0)}
|
2020-06-19 23:01:26 +08:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Asset loads and returns the asset for the given name.
|
|
|
|
// It returns an error if the asset could not be found or
|
|
|
|
// could not be loaded.
|
|
|
|
func Asset(name string) ([]byte, error) {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
if f, ok := _bindata[cannonicalName]; ok {
|
|
|
|
a, err := f()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err)
|
|
|
|
}
|
|
|
|
return a.bytes, nil
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("Asset %s not found", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// MustAsset is like Asset but panics when Asset would return an error.
|
|
|
|
// It simplifies safe initialization of global variables.
|
|
|
|
func MustAsset(name string) []byte {
|
|
|
|
a, err := Asset(name)
|
|
|
|
if err != nil {
|
|
|
|
panic("asset: Asset(" + name + "): " + err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
|
|
|
// AssetInfo loads and returns the asset info for the given name.
|
|
|
|
// It returns an error if the asset could not be found or
|
|
|
|
// could not be loaded.
|
|
|
|
func AssetInfo(name string) (os.FileInfo, error) {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
if f, ok := _bindata[cannonicalName]; ok {
|
|
|
|
a, err := f()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err)
|
|
|
|
}
|
|
|
|
return a.info, nil
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("AssetInfo %s not found", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AssetNames returns the names of the assets.
|
|
|
|
func AssetNames() []string {
|
|
|
|
names := make([]string, 0, len(_bindata))
|
|
|
|
for name := range _bindata {
|
|
|
|
names = append(names, name)
|
|
|
|
}
|
|
|
|
return names
|
|
|
|
}
|
|
|
|
|
|
|
|
// _bindata is a table, holding each asset generator, mapped to its name.
|
|
|
|
var _bindata = map[string]func() (*asset, error){
|
2021-01-26 02:18:59 +08:00
|
|
|
"de_DE.toml": de_deToml,
|
|
|
|
"en_US.toml": en_usToml,
|
|
|
|
"eo.toml": eoToml,
|
|
|
|
"tt_TT.toml": tt_ttToml,
|
|
|
|
"zh_CN.toml": zh_cnToml,
|
2020-06-19 23:01:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// AssetDir returns the file names below a certain
|
|
|
|
// directory embedded in the file by go-bindata.
|
|
|
|
// For example if you run go-bindata on data/... and data contains the
|
|
|
|
// following hierarchy:
|
|
|
|
// data/
|
|
|
|
// foo.txt
|
|
|
|
// img/
|
|
|
|
// a.png
|
|
|
|
// b.png
|
|
|
|
// then AssetDir("data") would return []string{"foo.txt", "img"}
|
|
|
|
// AssetDir("data/img") would return []string{"a.png", "b.png"}
|
|
|
|
// AssetDir("foo.txt") and AssetDir("notexist") would return an error
|
|
|
|
// AssetDir("") will return []string{"data"}.
|
|
|
|
func AssetDir(name string) ([]string, error) {
|
|
|
|
node := _bintree
|
|
|
|
if len(name) != 0 {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
pathList := strings.Split(cannonicalName, "/")
|
|
|
|
for _, p := range pathList {
|
|
|
|
node = node.Children[p]
|
|
|
|
if node == nil {
|
|
|
|
return nil, fmt.Errorf("Asset %s not found", name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if node.Func != nil {
|
|
|
|
return nil, fmt.Errorf("Asset %s not found", name)
|
|
|
|
}
|
|
|
|
rv := make([]string, 0, len(node.Children))
|
|
|
|
for childName := range node.Children {
|
|
|
|
rv = append(rv, childName)
|
|
|
|
}
|
|
|
|
return rv, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type bintree struct {
|
|
|
|
Func func() (*asset, error)
|
|
|
|
Children map[string]*bintree
|
|
|
|
}
|
|
|
|
|
|
|
|
var _bintree = &bintree{nil, map[string]*bintree{
|
2021-01-26 02:18:59 +08:00
|
|
|
"de_DE.toml": &bintree{de_deToml, map[string]*bintree{}},
|
|
|
|
"en_US.toml": &bintree{en_usToml, map[string]*bintree{}},
|
|
|
|
"eo.toml": &bintree{eoToml, map[string]*bintree{}},
|
|
|
|
"tt_TT.toml": &bintree{tt_ttToml, map[string]*bintree{}},
|
|
|
|
"zh_CN.toml": &bintree{zh_cnToml, map[string]*bintree{}},
|
2020-06-19 23:01:26 +08:00
|
|
|
}}
|
|
|
|
|
|
|
|
// RestoreAsset restores an asset under the given directory
|
|
|
|
func RestoreAsset(dir, name string) error {
|
|
|
|
data, err := Asset(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
info, err := AssetInfo(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RestoreAssets restores an asset under the given directory recursively
|
|
|
|
func RestoreAssets(dir, name string) error {
|
|
|
|
children, err := AssetDir(name)
|
|
|
|
// File
|
|
|
|
if err != nil {
|
|
|
|
return RestoreAsset(dir, name)
|
|
|
|
}
|
|
|
|
// Dir
|
|
|
|
for _, child := range children {
|
|
|
|
err = RestoreAssets(dir, filepath.Join(name, child))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func _filePath(dir, name string) string {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
|
|
|
|
}
|