diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-10-30 16:50:12 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-10-30 16:50:29 +0100 |
| commit | d47796499fb847c0a03bdca100b10d52fadfe71a (patch) | |
| tree | 5662370908461c3a3201a1322ec860d60102f7e3 /client/zgotext.go | |
| parent | b189a197a1a7e9503ffc5a9cdde258cc93e2974b (diff) | |
Locale: Add cs template
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 |
