diff options
Diffstat (limited to 'client/zgotext.go')
| -rw-r--r-- | client/zgotext.go | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/client/zgotext.go b/client/zgotext.go index 5adc715..86dc6aa 100644 --- a/client/zgotext.go +++ b/client/zgotext.go @@ -27,6 +27,7 @@ func (d *dictionary) Lookup(key string) (data string, ok bool) { func init() { dict := map[string]catalog.Dictionary{ + "cs": &dictionary{index: csIndex, data: csData}, "da": &dictionary{index: daIndex, data: daData}, "de": &dictionary{index: deIndex, data: deData}, "en": &dictionary{index: enIndex, data: enData}, @@ -62,6 +63,15 @@ var messageKeyToIndex = map[string]int{ "Timeout reached contacting URL: '%s'": 10, } +var csIndex = []uint32{ // 14 elements + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, +} // Size: 80 bytes + +const csData string = "" + var daIndex = []uint32{ // 14 elements 0x00000000, 0x00000046, 0x0000009b, 0x000000ce, 0x000000f8, 0x00000181, 0x000001de, 0x00000207, @@ -238,4 +248,4 @@ var ukIndex = []uint32{ // 14 elements const ukData string = "" -// Total table size 6530 bytes (6KiB); checksum: 1F4972CA +// Total table size 6610 bytes (6KiB); checksum: 8E6830C9 |
