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{}
|
|
|
|
}
|
|
|
|
|
2020-11-24 05:14:57 +08:00
|
|
|
var _dictsDe_deToml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x58\xdd\x73\xdb\x36\x12\x7f\xe7\x5f\xb1\x87\x4e\x9b\x8f\xb1\x15\x4b\x4a\x9a\x84\x09\x3d\x93\x38\x4e\xeb\xa9\x9d\xba\x96\xdd\xcc\x5d\x9c\x07\x88\x5c\x92\xa8\x40\x80\x05\x40\x29\xae\xe5\xff\xfd\x66\x01\x50\x1f\xb6\x73\xd7\xe6\x49\xe0\x62\x3f\xb1\xbb\x3f\x2c\x94\x6b\x55\x8a\xaa\x14\x12\x33\x76\xe0\xd7\x40\x1f\x2c\xe9\x2c\xaf\x30\x63\x17\xf4\x93\xc2\xf5\xde\x0d\x7c\xd2\xad\x13\x5a\xd9\xcf\x97\xea\x52\xfd\x1a\xd6\xe9\xa5\x62\x89\xd3\x8e\xcb\x8c\x9d\xd3\x0f\x4b\x92\xe4\x53\x8d\xb2\xfd\x9c\xb4\xdc\xd5\x36\x63\xc7\x9a\x17\x7c\x2a\x11\x72\x2d\xb5\xb1\x79\x8d\x0d\x5a\xf8\x01\x24\xbf\xd2\x9d\xb3\x3b\xc0\x55\x01\xae\xa6\xfd\x95\xf9\x1d\xe0\x06\xc1\x22\x37\x79\x8d\x05\x94\xda\xec\x80\x50\xa0\x4d\x81\x26\x65\x89\xd4\x55\xc6\xce\x6b\x04\xa9\x03\x3f\x08\x4b\xfb\xd7\x7b\x37\x2c\x59\x18\xe1\x1c\xaa\x55\x38\xf1\x1b\x9c\x0e\xfb\xe4\x5c\xc6\x18\x4b\x7e\xeb\x84\x4b\xe1\x4f\xd0\x06\x5e\x1f\xec\xe6\xfb\x49\x72\x6a\x74\x8e\xd6\x82\xe2\x73\x51\x71\x0a\x30\x4d\x00\x76\x61\xe6\x7d\x7c\x7d\xd1\xee\xa7\xd0\xb5\x9e\xf4\x47\x20\xbd\xd3\x0b\xb5\x9f\x42\xa1\x17\xca\x93\x5f\x1f\xec\x76\xfb\x29\xd4\x5c\x96\xd0\xf2\x0a\x7b\xf6\xd7\x07\xbb\xc5\x16\x7d\x53\x62\xba\x9f\x42\xd9\x49\x79\x5b\xa2\xdc\xa2\xaf\x24\xaa\x2a\xd8\xfe\x59\x37\xb8\x9f\xc2\x1f\x5d\xd3\x52\x70\x4e\x07\xc1\x9f\xc2\xee\xa1\x2a\x36\x36\xa7\xda\x39\xdd\xac\x23\xe4\x79\x48\x5f\x30\x75\xce\xc9\x05\xa7\xab\x4a\x22\xb4\x91\xa5\x32\xba\x6b\x85\xaa\x3c\x4b\x51\xa4\x30\x13\x52\x82\x45\x89\xb9\xc3\x62\xc5\xa6\x4d\xe0\x04\x5d\xf6\x34\xb4\xb0\x10\xae\x86\xc9\xd1\x4f\xe7\x87\x67\x27\xf0\x70\xf8\xec\x51\xd0\x32\xfe\x36\x2d\xbf\x5d\x1c\x9d\xc3\xc3\x71\x54\xf2\xf2\xdb\x94\xfc\x72\x74\x7c\x0c\x0f\x5f\x3e\x5a\x1f\x82\xd5\xc6\x09\x55\x85\x43\xc8\x53\x38\x38\xbd\xf0\xcb\x26\x85\x13\x6c\xfc\xb2\x4d\xe1\xf4\xe8\xdd\x5a\xa4\x14\xd2\xa1\x59\x09\x3d\x49\xc1\x3a\x6e\x1c\x60\x21\x48\x55\xdc\xf7\x7b\x0f\x17\x35\x55\x66\xdc\x79\x44\x02\xfe\xb0\x0f\x95\x43\xb3\x9f\x02\xcf\x73\x6c\xdd\x5a\x22\x26\x3d\xdf\x8f\xf9\xb3\x39\x6f\x29\xbf\xb9\x44\x6e\x7a\xb6\xe4\xe0\xf4\xc2\xef\x9f\x60\x03\x95\xe1\x6d\x0d\x36\xe7\x72\xe5\x50\x9d\xfa\x6f\x04\x11\x6a\x45\xf6\xdf\xba\x73\x49\xf2\x01\xdd\x42\x9b\x59\x60\x9d\xae\x32\x3e\x45\xb7\x40\x54\xd0\x4c\x5b\xeb\x95\x7b\x91\x02\xa6\x57\x0e\x2d\xb4\x68\xc0\x62\xae\x55\x91\x50\xd7\x7c\x07\xe7\x67\x6f\x3e\x4c\x8e\xdf\x9c\xff\x7a\x36\x49\xe1\x54\x22\xb7\x54\x9c\xea\x81\x03\x67\xb8\xb2\x92\x3b\xf4\xfd\x1c\x1a\x1c\x1e\x3f\x56\xbc\x41\xfb\xf8\x71\x12\x3b\x1e\x32\x60\x8c\xbd\xed\x84\x74\xbb\x42\xf5\x38\xe0\xcf\xa7\xc0\x92\x77\xd2\xd1\xb2\x11\x4a\x34\x5c\xd2\x72\xca\x9d\x43\x73\x45\xcb\x99\x70\x79\x8d\xca\x0a\x35\xfb\x67\xce\x78\xf0\xf1\xd8\xb3\xe1\xd0\x16\x22\x6d\x7b\xb5\xb9\x75\xdb\xb5\xb8\xdc\x2d\xb8\x99\xc1\xc3\x52\x1b\x58\xd4\xc2\x21\x4c\x79\x3e\xa3\x02\x54\x05\x55\x2a\x58\x2d\xb9\x11\x7f\x61\xb1\xf5\x31\xfc\xd1\xcb\xdd\xa6\x49\x51\xd5\x21\x6e\xad\xf4\x8c\x0b\x5a\xce\x45\x8e\xf4\xab\xb4\x29\xfe\x59\xb4\x0b\x51\x54\xb8\x79\xf4\x81\x10\x83\xfc\x18\x3f\x5c\xcd\x1d\xe4\x5c\xc1\x14\xa1\xb3\x58\xc0\xad\x6c\xe4\x6d\xe7\xab\x92\x6a\x4e\x6a\x5e\x84\x82\xf3\x4e\x62\xe3\x77\x4e\xeb\x2b\x2b\x72\x2e\xe1\x07\xb0\x0b\xde\x12\x5d\x9b\x2b\x52\xb6\xe6\x75\xd8\xb4\xc4\x3b\x41\x65\xb5\xf1\x9f\x68\xb8\xeb\x0c\x5a\x7f\x98\xc2\xce\xb6\x54\x79\x42\xcb\x8d\x13\x04\x51\xa4\x8b\xd8\x5a\xbd\x40\x03\xbb\xf0\xa6\xaf\x06\x98\x72\xdf\x35\x0a\x9d\x77\x25\xd6\xb6\x77\xd4\x0b\x18\x9d\x5b\xd8\x85\x23\x6a\x37\x82\xbb\xf9\x1a\xda\xa4\xb0\x8e\x0e\x34\x49\x3e\x71\x53\xd9\xcf\xf1\x4e\xf8\x59\xc8\x12\x1d\x7e\x71\xc0\xd5\x5f\x28\x2a\x54\x03\x16\x6a\x24\x63\x87\x42\xc1\x7b\x6e\xa6\xbe\x24\x38\x94\x68\x9d\x75\x28\xa5\xe7\xf1\xfd\x92\xb1\x49\x20\x40\x81\x0a\x26\x33\x2e\x05\x9a\x4e\x55\xb6\xe4\x33\xa7\x0d\xa0\x50\x3b\xb0\xbf\xc7\x92\x39\x1a\x2b\xb4\xca\xd8\x7f\xbc\x0d\x28\x04\xc2\xef\x81\x06\xbc\xb3\xd0\xa9\x02\xa6\x88\xaa\xf0\xba\x5b\x34\x79\xdb\x65\x6c\x52\xeb\x05\x20\xcf\x6b\x9f\x0e\xa1\x7c\x9e\x69\x19\x52\x4b\x9e\xb6\x1d\x9f\x57\x91\x93\xcf\xd1\xd0\xad\xf1\x35\x66\x4a\x43\x64\xdd\xcc\x08\xf1\x96\xbc\x36\xa8\x6a\x14\xc4\x67\x1d\x77\x9d\x9d\x72\xd3\xeb\x85\x15\x25\x20\
|
2020-06-19 23:01:26 +08:00
|
|
|
|
|
|
|
func dictsDe_deTomlBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_dictsDe_deToml,
|
|
|
|
"dicts/de_DE.toml",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func dictsDe_deToml() (*asset, error) {
|
|
|
|
bytes, err := dictsDe_deTomlBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-11-24 05:14:57 +08:00
|
|
|
info := bindataFileInfo{name: "dicts/de_DE.toml", size: 6073, mode: os.FileMode(420), modTime: time.Unix(1606165468, 0)}
|
2020-06-19 23:01:26 +08:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2020-11-24 05:14:57 +08:00
|
|
|
var _dictsEn_usToml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x58\x5f\x73\xdb\xb6\xb2\x7f\xe7\xa7\xd8\x8b\x4e\xeb\x24\x63\x2b\x96\x94\x34\x09\x13\x7a\x26\x71\x9c\x5c\x4f\xed\xd4\xf5\x9f\x9b\xb9\x13\xe7\x01\x22\x57\x24\x2a\x10\x60\x01\x50\x8a\x8e\xe5\xef\x7e\x66\x01\x50\xa2\x6c\xe7\x9c\x36\x4f\x04\x16\xfb\x17\xd8\xfd\x61\xc1\x5c\xab\xa9\x28\xa7\x42\x62\xc6\x0e\xfd\x18\x68\xc2\x92\xd6\xf2\x12\x33\x76\x45\x9f\x14\x6e\xf6\x6f\xe1\x8b\x6e\x9c\xd0\xca\x7e\xbd\x56\xd7\xea\xf7\x30\x4e\xaf\x15\x4b\x9c\x76\x5c\x66\xec\x92\x3e\x2c\x49\x92\x2f\x15\xca\xe6\x6b\xd2\x70\x57\xd9\x8c\x9d\x68\x5e\xf0\x89\x44\xc8\xb5\xd4\xc6\xe6\x15\xd6\x68\xe1\x17\x90\x7c\xa9\x5b\x67\x77\x81\xab\x02\x5c\x45\xeb\x6b\xf3\xbb\xc0\x0d\x82\x45\x6e\xf2\x0a\x0b\x98\x6a\xb3\x0b\x42\x81\x36\x05\x9a\x94\x25\x52\x97\x19\xbb\xac\x10\xa4\x0e\xfc\x20\x2c\xad\xdf\xec\xdf\xb2\x64\x61\x84\x73\xa8\xd6\xe1\xc4\x39\x38\x1d\xd6\xc9\xb9\x8c\x31\x96\xfc\xd1\x0a\x97\xc2\x5f\xa0\x0d\xbc\x39\xdc\xcb\x0f\x92\xe4\xcc\xe8\x1c\xad\x05\xc5\xe7\xa2\xe4\x14\x60\x9a\x00\xec\xc1\xcc\xfb\xf8\xe6\xaa\x39\x48\xa1\x6d\x3c\xe9\xcf\x40\x7a\xaf\x17\xea\x20\x85\x42\x2f\x94\x27\xbf\x39\xdc\x6b\x0f\x52\xa8\xb8\x9c\x42\xc3\x4b\xec\xd8\xdf\x1c\xee\x15\x5b\xf4\xbe\xc4\xe4\x20\x85\x69\x2b\xe5\x5d\x89\xe9\x16\x7d\x2d\x51\x96\xc1\xf6\xff\xea\x1a\x0f\x52\xf8\xb3\xad\x1b\x0a\xce\xe9\x20\xf8\x31\xac\x1e\xa9\xa2\xb7\x38\xd1\xce\xe9\x7a\x13\x21\xcf\xc3\xf1\x05\x53\x97\x9c\x5c\x70\xba\x2c\x25\x42\x13\x59\x4a\xa3\xdb\x46\xa8\xd2\xb3\x14\x45\x0a\x33\x21\x25\x58\x94\x98\x3b\x2c\xd6\x6c\xda\x04\x4e\xd0\xd3\x8e\x86\x16\x16\xc2\x55\x70\x71\xfc\xf1\xf2\xe8\xfc\x14\x1e\x0d\x9f\x3f\x0e\x5a\xc6\x3f\xa6\xe5\x8f\xab\xe3\x4b\x78\x34\x8e\x4a\x5e\xfd\x98\x92\xdf\x8e\x4f\x4e\xe0\xd1\xab\xc7\x9b\x4d\xb0\xda\x38\xa1\xca\xb0\x09\x79\x0a\x87\x67\x57\x7e\x58\xa7\x70\x8a\xb5\x1f\x36\x29\x9c\x1d\xbf\xdf\x88\x4c\x85\x74\x68\xd6\x42\x4f\x53\xb0\x8e\x1b\x07\x58\x08\x52\x15\xd7\xfd\xda\xa3\x45\x45\x99\x19\x57\x1e\x93\x80\xdf\xec\x23\xe5\xd0\x1c\xa4\xc0\xf3\x1c\x1b\xb7\x91\x88\x87\x9e\x1f\xc4\xf3\xb3\x39\x6f\xe8\x7c\x73\x89\xdc\x74\x6c\xc9\xe1\xd9\x95\x5f\x3f\xc5\x1a\x4a\xc3\x9b\x0a\x6c\xce\xe5\xda\xa1\x2a\xf5\x73\x04\x11\x72\x45\x76\x73\xdd\xba\x24\xf9\x84\x6e\xa1\xcd\x2c\xb0\x4e\xd6\x27\x3e\x41\xb7\x40\x54\x50\x4f\x1a\xeb\x95\x7b\x91\x02\x26\x4b\x87\x16\x1a\x34\x60\x31\xd7\xaa\x48\xa8\x6a\x7e\x82\xcb\xf3\xb7\x9f\x2e\x4e\xde\x5e\xfe\x7e\x7e\x91\xc2\x99\x44\x6e\x29\x39\xd5\x8e\x03\x67\xb8\xb2\x92\x3b\xf4\xf5\x1c\x0a\x1c\x9e\x3c\x51\xbc\x46\xfb\xe4\x49\x12\x2b\x1e\x32\x60\x8c\xbd\x6b\x85\x74\x7b\x42\x75\x38\xe0\xf7\xa7\xc0\x29\x6f\xa5\xa3\x61\x2d\x94\xa8\xb9\xa4\xe1\x84\x3b\x87\x66\x49\xc3\x99\x70\x79\x85\xca\x0a\x35\xfb\x67\xce\x78\xf0\xf1\xd8\xd3\x73\x68\x0b\x91\xb6\xbd\xea\x2f\xdd\x75\x2d\x0e\xf7\x0a\x6e\x66\xf0\x68\xaa\x0d\x2c\x2a\xe1\x10\x26\x3c\x9f\x51\x02\xaa\x82\x32\x15\xac\x96\xdc\x88\x7f\x61\xb1\x35\x19\xfe\xea\xe5\xee\xd2\xa4\x28\xab\x10\xb7\x56\x7a\xc6\x05\x0d\xe7\x22\x47\xfa\x2a\x6d\x8a\x7f\x16\xed\x42\x14\x25\xf6\xb7\x3e\x10\x62\x90\x9f\xe3\xc4\x55\xdc\x41\xce\x15\x4c\x10\x5a\x8b\x05\xdc\x39\x8d\xbc\x69\x7d\x56\x52\xce\x49\xcd\x8b\x90\x70\xde\x49\xac\xfd\xca\x59\xb5\xb4\x22\xe7\x12\x7e\x01\xbb\xe0\x0d\xd1\xb5\x59\x92\xb2\x0d\xaf\xc3\xba\x21\xde\x0b\x54\x56\x1b\x3f\x45\xc3\x5d\x6b\xd0\xfa\xcd\x14\x76\xb6\xa5\xca\x13\x1a\x6e\x9c\x20\x88\x22\x5d\xc4\xd6\xe8\x05\x1a\xd8\x83\xb7\x5d\x36\xc0\x84\xfb\xaa\x51\xe8\xbc\x2b\x31\xb7\xbd\xa3\x5e\xc0\xe8\xdc\xc2\x1e\x1c\x53\xb9\x11\xdc\xcd\x37\xd0\x26\x85\x75\xb4\xa1\x49\xf2\x85\x9b\xd2\x7e\x8d\x77\xc2\x45\xa5\x17\xe0\x2a\x61\xc1\xe6\x06\x51\x0d\x58\xc8\x90\x8c\x5d\xa0\x03\xde\xcf\x89\x01\x4b\x7c\x91\x64\xec\xe3\xba\x08\x11\xa6\x3c\x77\x74\x55\x1d\xec\xb3\x64\x8e\xc6\x0a\xad\x32\x76\x66\x84\x72\x10\xa7\xbe\xbc\xf0\x9b\x70\x03\x96\x34\x68\xf2\xa6\x8d\x66\x91\xe7\x95\xdf\x68\xa1\xfc\x09\xd2\x30\x1c\x1a\x79\xd1\xb4\x7c\x5e\x46\x4e\x3e\x47\x43\xf7\xc1\xf7\x98\x69\x83\xbb\x58\x7a\x7b\x4d\xbc\x53\x5e\x19\x54\x15\x7a\xf3\xd6\x71\xd7\xda\x09\x37\x9d\x5e\x58\x53\x02\x66\x92\x66\x27\x7c\xac\x86\x3b\xcc\xd8\x39\x4e\x0d\xda\x0a\xa6\x06\xff\x6a\x51\xe5\xcb\x01\x9c\x6a\xeb\x3c\x13\xb4\x4a\
|
2020-06-19 23:01:26 +08:00
|
|
|
|
|
|
|
func dictsEn_usTomlBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_dictsEn_usToml,
|
|
|
|
"dicts/en_US.toml",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func dictsEn_usToml() (*asset, error) {
|
|
|
|
bytes, err := dictsEn_usTomlBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-11-24 05:14:57 +08:00
|
|
|
info := bindataFileInfo{name: "dicts/en_US.toml", size: 6035, mode: os.FileMode(420), modTime: time.Unix(1606165475, 0)}
|
2020-06-19 23:01:26 +08:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2020-11-24 05:14:57 +08:00
|
|
|
var _dictsEoToml = []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
|
|
|
|
|
|
|
|
func dictsEoTomlBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_dictsEoToml,
|
|
|
|
"dicts/eo.toml",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func dictsEoToml() (*asset, error) {
|
|
|
|
bytes, err := dictsEoTomlBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
info := bindataFileInfo{name: "dicts/eo.toml", size: 6481, mode: os.FileMode(420), modTime: time.Unix(1606165483, 0)}
|
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _dictsTt_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\
|
2020-06-19 23:01:26 +08:00
|
|
|
|
|
|
|
func dictsTt_ttTomlBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_dictsTt_ttToml,
|
|
|
|
"dicts/tt_TT.toml",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func dictsTt_ttToml() (*asset, error) {
|
|
|
|
bytes, err := dictsTt_ttTomlBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-11-24 05:14:57 +08:00
|
|
|
info := bindataFileInfo{name: "dicts/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
|
|
|
|
}
|
|
|
|
|
2020-11-24 05:14:57 +08:00
|
|
|
var _dictsZh_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\
|
2020-06-19 23:01:26 +08:00
|
|
|
|
|
|
|
func dictsZh_cnTomlBytes() ([]byte, error) {
|
|
|
|
return bindataRead(
|
|
|
|
_dictsZh_cnToml,
|
|
|
|
"dicts/zh_CN.toml",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func dictsZh_cnToml() (*asset, error) {
|
|
|
|
bytes, err := dictsZh_cnTomlBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-11-24 05:14:57 +08:00
|
|
|
info := bindataFileInfo{name: "dicts/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){
|
|
|
|
"dicts/de_DE.toml": dictsDe_deToml,
|
|
|
|
"dicts/en_US.toml": dictsEn_usToml,
|
2020-11-24 05:14:57 +08:00
|
|
|
"dicts/eo.toml": dictsEoToml,
|
2020-06-19 23:01:26 +08:00
|
|
|
"dicts/tt_TT.toml": dictsTt_ttToml,
|
|
|
|
"dicts/zh_CN.toml": dictsZh_cnToml,
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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{
|
|
|
|
"dicts": &bintree{nil, map[string]*bintree{
|
|
|
|
"de_DE.toml": &bintree{dictsDe_deToml, map[string]*bintree{}},
|
|
|
|
"en_US.toml": &bintree{dictsEn_usToml, map[string]*bintree{}},
|
2020-11-24 05:14:57 +08:00
|
|
|
"eo.toml": &bintree{dictsEoToml, map[string]*bintree{}},
|
2020-06-19 23:01:26 +08:00
|
|
|
"tt_TT.toml": &bintree{dictsTt_ttToml, map[string]*bintree{}},
|
|
|
|
"zh_CN.toml": &bintree{dictsZh_cnToml, map[string]*bintree{}},
|
|
|
|
}},
|
|
|
|
}}
|
|
|
|
|
|
|
|
// 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, "/")...)...)
|
|
|
|
}
|