aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/zgotext.go
blob: a76ffa45cab228cd5ceea23c5279b1d267796a37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.

package main

import (
	"golang.org/x/text/language"
	"golang.org/x/text/message"
	"golang.org/x/text/message/catalog"
)

type dictionary struct {
	index []uint32
	data  string
}

func (d *dictionary) Lookup(key string) (data string, ok bool) {
	p, ok := messageKeyToIndex[key]
	if !ok {
		return "", false
	}
	start, end := d.index[p], d.index[p+1]
	if start == end {
		return "", false
	}
	return d.data[start:end], true
}

func init() {
	dict := map[string]catalog.Dictionary{
		"en": &dictionary{index: enIndex, data: enData},
		"fr": &dictionary{index: frIndex, data: frData},
		"ja": &dictionary{index: jaIndex, data: jaData},
		"sl": &dictionary{index: slIndex, data: slData},
	}
	fallback := language.MustParse("en")
	cat, err := catalog.NewFromMap(dict, catalog.Fallback(fallback))
	if err != nil {
		panic(err)
	}
	message.DefaultCatalog = cat
}

var messageKeyToIndex = map[string]int{
	"%.2f\u00a0GiB":                         21,
	"%.2f\u00a0KiB":                         19,
	"%.2f\u00a0MiB":                         20,
	"%.2f\u00a0TiB":                         22,
	"%d day(s)":                             13,
	"%d hour(s)":                            14,
	"%d minute(s)":                          15,
	"%d second(s)":                          16,
	"%d tunnels were unable to be removed.": 158,
	"%d year(s)":                            12,
	"%d\u00a0B":                             18,
	"%s\n\nPlease consult the log for more information.": 111,
	"%s (out of date)":                        112,
	"%s (unsigned build, no updates)":         163,
	"%s You cannot undo this action.":         154,
	"%s ago":                                  17,
	"%s received, %s sent":                    71,
	"%s: %q":                                  23,
	"&About WireGuard…":                       109,
	"&Activate":                               58,
	"&Block untunneled traffic (kill-switch)": 82,
	"&Configuration:":                         86,
	"&Copy":                                   102,
	"&Deactivate":                             57,
	"&Edit":                                   133,
	"&Import tunnel(s) from file…":            119,
	"&Manage tunnels…":                        118,
	"&Name:":                                  79,
	"&Public key:":                            80,
	"&Remove selected tunnel(s)":              141,
	"&Save":                                   84,
	"&Save to file…":                          104,
	"&Toggle":                                 138,
	"(no argument): elevate and install manager service": 1,
	"(unknown)":                             81,
	"A name is required.":                   88,
	"A tunnel was unable to be removed: %s": 156,
	"About WireGuard":                       51,
	"Activating":                            97,
	"Active":                                96,
	"Add &empty tunnel…":                    134,
	"Add Tunnel":                            135,
	"Addresses:":                            62,
	"Addresses: %s":                         124,
	"Addresses: None":                       117,
	"All peers must have public keys":       44,
	"Allowed IPs:":                          65,
	"An Update is Available!":               129,
	"An interface must have a private key":  42,
	"An update to WireGuard is available. It is highly advisable to update without delay.":            166,
	"An update to WireGuard is now available. You are advised to update as soon as possible.":         131,
	"Another tunnel already exists with the name ‘%s’":                                                144,
	"Another tunnel already exists with the name ‘%s’.":                                               92,
	"App version: %s\nGo backend version: %s\nGo version: %s\nOperating system: %s\nArchitecture: %s": 53,
	"Are you sure you would like to delete %d tunnels?":                                               151,
	"Are you sure you would like to delete tunnel ‘%s’?":                                              153,
	"Brackets must contain an IPv6 address":                                                           28,
	"Cancel":                                                                                          85,
	"Close":                                                                                           54,
	"Command Line Options":                                                                            3,
	"Configuration Files (*.zip, *.conf)|*.zip;*.conf|All Files (*.*)|*.*":                            159,
	"Configuration ZIP Files (*.zip)|*.zip":                                                           161,
	"Could not enumerate existing tunnels: %v":                                                        143,
	"Could not import selected configuration: %v":                                                     142,
	"Create new tunnel":                                                                               77,
	"DNS servers:":                                                                                    63,
	"Deactivating":                                                                                    99,
	"Delete %d tunnels":                                                                               150,
	"Delete tunnel ‘%s’":                                                                              152,
	"E&xit":                                                                                           120,
	"Edit &selected tunnel…":                                                                          140,
	"Edit tunnel":                                                                                     78,
	"Endpoint:":                                                                                       66,
	"Error":                                                                                           0,
	"Error Exiting WireGuard":                                                                         164,
	"Error in getting configuration":                                                                  45,
	"Error: %v. Please try again.":                                                                    170,
	"Export all tunnels to &zip…":                                                                     139,
	"Export all tunnels to zip":                                                                       137,
	"Export log to file":                                                                              108,
	"Export tunnels to zip":                                                                           162,
	"Failed to activate tunnel":                                                                       73,
	"Failed to deactivate tunnel":                                                                     74,
	"Failed to determine tunnel state":                                                                72,
	"File ‘%s’ already exists.\n\nDo you want to overwrite it?":                                       95,
	"Import tunnel(s) from file":                                                                      160,
	"Imported %d of %d tunnels":                                                                       148,
	"Imported %d tunnels":                                                                             147,
	"Imported tunnels":                                                                                146,
	"Inactive":                                                                                        98,
	"Interface: %s":                                                                                   75,
	"Invalid IP address":                                                                              24,
	"Invalid MTU":                                                                                     29,
	"Invalid config key is missing an equals separator":                                               38,
	"Invalid endpoint host":                                                                           27,
	"Invalid key for [Interface] section":                                                             40,
	"Invalid key for [Peer] section":                                                                  41,
	"Invalid key for interface section":                                                               46,
	"Invalid key for peer section":                                                                    48,
	"Invalid key: %v":                                                                                 32,
	"Invalid name":                                                                                    87,
	"Invalid network prefix length":                                                                   25,
	"Invalid persistent keepalive":                                                                    31,
	"Invalid port":                                                                                    30,
	"Key must have a value":                                                                           39,
	"Keys must decode to exactly 32 bytes":                                                            33,
	"Latest handshake:":                                                                               68,
	"Line must occur in a section":                                                                    37,
	"Listen port:":                                                                                    60,
	"Log":                                                                                             101,
	"Log message":                                                                                     106,
	"MTU:":                                                                                            61,
	"Missing port from endpoint":                                                                      26,
	"Now":                                                                                             10,
	"Number must be a number between 0 and 2^64-1: %v":                                                34,
	"Peer":                                76,
	"Persistent keepalive:":               67,
	"Preshared key:":                      64,
	"Protocol version must be 1":          47,
	"Public key:":                         59,
	"Remove selected tunnel(s)":           136,
	"Select &all":                         103,
	"Status:":                             56,
	"Status: %s":                          123,
	"Status: Complete!":                   171,
	"Status: Unknown":                     116,
	"Status: Waiting for updater service": 169,
	"Status: Waiting for user":            167,
	"System clock wound backward!":        11,
	"Text Files (*.txt)|*.txt|All Files (*.*)|*.*": 107,
	"The %s tunnel has been activated.":            126,
	"The %s tunnel has been deactivated.":          128,
	"Time":                                         105,
	"Transfer:":                                    69,
	"Tunnel Error":                                 110,
	"Tunnel already exists":                        91,
	"Tunnel name is not valid":                     36,
	"Tunnel name ‘%s’ is invalid.":                 89,
	"Tunnels":                                      132,
	"Two commas in a row":                          35,
	"Unable to create new configuration":           93,
	"Unable to create tunnel":                      149,
	"Unable to delete tunnel":                      155,
	"Unable to delete tunnels":                     157,
	"Unable to determine whether the process is running under WOW64: %v":                          4,
	"Unable to exit service due to: %v. You may want to stop WireGuard from the service manager.": 165,
	"Unable to import configuration: %v":                                                          145,
	"Unable to list existing tunnels":                                                             90,
	"Unable to open current process token: %v":                                                    6,
	"Unable to wait for WireGuard window to appear: %v":                                           114,
	"Unknown state":    100,
	"Update Now":       168,
	"Usage: %s [\n%s]": 2,
	"When a configuration has exactly one peer, and that peer has an allowed IPs containing at least one of 0.0.0.0/0 or ::/0, then the tunnel service engages a firewall ruleset to block all traffic that is neither to nor from the tunnel interface, with special exceptions for DHCP and NDP.": 83,
	"WireGuard Activated":        125,
	"WireGuard Deactivated":      127,
	"WireGuard Detection Error":  113,
	"WireGuard Tunnel Error":     121,
	"WireGuard Update Available": 130,
	"WireGuard is running, but the UI is only accessible from desktops of the Builtin %s group.": 8,
	"WireGuard logo image": 52,
	"WireGuard may only be used by users who are a member of the Builtin %s group.": 7,
	"WireGuard system tray icon did not appear after 30 seconds.":                   9,
	"WireGuard: %s":          122,
	"WireGuard: Deactivated": 115,
	"Writing file failed":    94,
	"You must use the 64-bit version of WireGuard on this computer.": 5,
	"[EnumerationSeparator]": 49,
	"[UnitSeparator]":        50,
	"[none specified]":       43,
	"enabled":                70,
	"http2: Framer %p: failed to decode just-written frame": 172,
	"http2: Framer %p: read %v":                             174,
	"http2: Framer %p: wrote %v":                            173,
	"http2: decoded hpack field %+v":                        175,
	"♥ &Donate!":                                            55,
}

var enIndex = []uint32{ // 177 elements
	// Entry 0 - 1F
	0x00000000, 0x00000006, 0x00000039, 0x0000004f,
	0x00000064, 0x000000aa, 0x000000e9, 0x00000115,
	0x00000166, 0x000001c4, 0x00000200, 0x00000204,
	0x00000221, 0x00000241, 0x0000025f, 0x0000027f,
	0x000002a3, 0x000002c7, 0x000002d1, 0x000002da,
	0x000002e7, 0x000002f4, 0x00000301, 0x0000030e,
	0x0000031b, 0x0000032e, 0x0000034c, 0x00000367,
	0x0000037d, 0x000003a3, 0x000003af, 0x000003bc,
	// Entry 20 - 3F
	0x000003d9, 0x000003ec, 0x00000411, 0x00000445,
	0x00000459, 0x00000472, 0x0000048f, 0x000004c1,
	0x000004d7, 0x000004fb, 0x0000051a, 0x0000053f,
	0x00000550, 0x00000570, 0x0000058f, 0x000005b1,
	0x000005cc, 0x000005e9, 0x000005ec, 0x000005ef,
	0x000005ff, 0x00000614, 0x0000067f, 0x00000685,
	0x00000692, 0x0000069a, 0x000006a6, 0x000006b0,
	0x000006bc, 0x000006c9, 0x000006ce, 0x000006d9,
	// Entry 40 - 5F
	0x000006e6, 0x000006f5, 0x00000702, 0x0000070c,
	0x00000722, 0x00000734, 0x0000073e, 0x00000746,
	0x00000761, 0x00000782, 0x0000079c, 0x000007b8,
	0x000007c9, 0x000007ce, 0x000007e0, 0x000007ec,
	0x000007f3, 0x00000800, 0x0000080a, 0x00000832,
	0x00000950, 0x00000956, 0x0000095d, 0x0000096d,
	0x0000097a, 0x0000098e, 0x000009b2, 0x000009d2,
	0x000009e8, 0x00000a21, 0x00000a44, 0x00000a58,
	// Entry 60 - 7F
	0x00000a97, 0x00000a9e, 0x00000aa9, 0x00000ab2,
	0x00000abf, 0x00000acd, 0x00000ad1, 0x00000ad7,
	0x00000ae3, 0x00000af4, 0x00000af9, 0x00000b05,
	0x00000b32, 0x00000b45, 0x00000b59, 0x00000b66,
	0x00000b9a, 0x00000bae, 0x00000bc8, 0x00000bfd,
	0x00000c14, 0x00000c24, 0x00000c34, 0x00000c47,
	0x00000c66, 0x00000c6c, 0x00000c83, 0x00000c94,
	0x00000ca2, 0x00000cb3, 0x00000cc7, 0x00000cec,
	// Entry 80 - 9F
	0x00000d02, 0x00000d29, 0x00000d41, 0x00000d5c,
	0x00000db4, 0x00000dbc, 0x00000dc2, 0x00000dd7,
	0x00000de2, 0x00000dfc, 0x00000e16, 0x00000e1e,
	0x00000e3c, 0x00000e55, 0x00000e70, 0x00000e9f,
	0x00000ecb, 0x00000f03, 0x00000f29, 0x00000f3a,
	0x00000f70, 0x00000fb7, 0x00000fcf, 0x00001001,
	0x00001073, 0x0000108d, 0x000010c7, 0x000010ea,
	0x00001102, 0x0000112b, 0x00001144, 0x0000119d,
	// Entry A0 - BF
	0x000011e2, 0x000011fd, 0x00001223, 0x00001239,
	0x0000125c, 0x00001274, 0x000012d3, 0x00001328,
	0x00001341, 0x0000134c, 0x00001370, 0x00001390,
	0x000013a2, 0x000013db, 0x000013fc, 0x0000141c,
	0x0000143e,
} // Size: 732 bytes

const enData string = "" + // Size: 5182 bytes
	"\x02Error\x02(no argument): elevate and install manager service\x02Usage" +
	": %[1]s [\x0a%[2]s]\x02Command Line Options\x02Unable to determine wheth" +
	"er the process is running under WOW64: %[1]v\x02You must use the 64-bit " +
	"version of WireGuard on this computer.\x02Unable to open current process" +
	" token: %[1]v\x02WireGuard may only be used by users who are a member of" +
	" the Builtin %[1]s group.\x02WireGuard is running, but the UI is only ac" +
	"cessible from desktops of the Builtin %[1]s group.\x02WireGuard system t" +
	"ray icon did not appear after 30 seconds.\x02Now\x02System clock wound b" +
	"ackward!\x14\x01\x81\x01\x00\x02\x0b\x02%[1]d year\x00\x0c\x02%[1]d year" +
	"s\x14\x01\x81\x01\x00\x02\x0a\x02%[1]d day\x00\x0b\x02%[1]d days\x14\x01" +
	"\x81\x01\x00\x02\x0b\x02%[1]d hour\x00\x0c\x02%[1]d hours\x14\x01\x81" +
	"\x01\x00\x02\x0d\x02%[1]d minute\x00\x0e\x02%[1]d minutes\x14\x01\x81" +
	"\x01\x00\x02\x0d\x02%[1]d second\x00\x0e\x02%[1]d seconds\x02%[1]s ago" +
	"\x02%[1]d\u00a0B\x02%.2[1]f\u00a0KiB\x02%.2[1]f\u00a0MiB\x02%.2[1]f" +
	"\u00a0GiB\x02%.2[1]f\u00a0TiB\x02%[1]s: %[2]q\x02Invalid IP address\x02I" +
	"nvalid network prefix length\x02Missing port from endpoint\x02Invalid en" +
	"dpoint host\x02Brackets must contain an IPv6 address\x02Invalid MTU\x02I" +
	"nvalid port\x02Invalid persistent keepalive\x02Invalid key: %[1]v\x02Key" +
	"s must decode to exactly 32 bytes\x02Number must be a number between 0 a" +
	"nd 2^64-1: %[1]v\x02Two commas in a row\x02Tunnel name is not valid\x02L" +
	"ine must occur in a section\x02Invalid config key is missing an equals s" +
	"eparator\x02Key must have a value\x02Invalid key for [Interface] section" +
	"\x02Invalid key for [Peer] section\x02An interface must have a private k" +
	"ey\x02[none specified]\x02All peers must have public keys\x02Error in ge" +
	"tting configuration\x02Invalid key for interface section\x02Protocol ver" +
	"sion must be 1\x02Invalid key for peer section\x02, \x02, \x02About Wire" +
	"Guard\x02WireGuard logo image\x02App version: %[1]s\x0aGo backend versio" +
	"n: %[2]s\x0aGo version: %[3]s\x0aOperating system: %[4]s\x0aArchitecture" +
	": %[5]s\x02Close\x02♥ &Donate!\x02Status:\x02&Deactivate\x02&Activate" +
	"\x02Public key:\x02Listen port:\x02MTU:\x02Addresses:\x02DNS servers:" +
	"\x02Preshared key:\x02Allowed IPs:\x02Endpoint:\x02Persistent keepalive:" +
	"\x02Latest handshake:\x02Transfer:\x02enabled\x02%[1]s received, %[2]s s" +
	"ent\x02Failed to determine tunnel state\x02Failed to activate tunnel\x02" +
	"Failed to deactivate tunnel\x02Interface: %[1]s\x02Peer\x02Create new tu" +
	"nnel\x02Edit tunnel\x02&Name:\x02&Public key:\x02(unknown)\x02&Block unt" +
	"unneled traffic (kill-switch)\x02When a configuration has exactly one pe" +
	"er, and that peer has an allowed IPs containing at least one of 0.0.0.0/" +
	"0 or ::/0, then the tunnel service engages a firewall ruleset to block a" +
	"ll traffic that is neither to nor from the tunnel interface, with specia" +
	"l exceptions for DHCP and NDP.\x02&Save\x02Cancel\x02&Configuration:\x02" +
	"Invalid name\x02A name is required.\x02Tunnel name ‘%[1]s’ is invalid." +
	"\x02Unable to list existing tunnels\x02Tunnel already exists\x02Another " +
	"tunnel already exists with the name ‘%[1]s’.\x02Unable to create new con" +
	"figuration\x02Writing file failed\x02File ‘%[1]s’ already exists.\x0a" +
	"\x0aDo you want to overwrite it?\x02Active\x02Activating\x02Inactive\x02" +
	"Deactivating\x02Unknown state\x02Log\x02&Copy\x02Select &all\x02&Save to" +
	" file…\x02Time\x02Log message\x02Text Files (*.txt)|*.txt|All Files (*.*" +
	")|*.*\x02Export log to file\x02&About WireGuard…\x02Tunnel Error\x02%[1]" +
	"s\x0a\x0aPlease consult the log for more information.\x02%[1]s (out of d" +
	"ate)\x02WireGuard Detection Error\x02Unable to wait for WireGuard window" +
	" to appear: %[1]v\x02WireGuard: Deactivated\x02Status: Unknown\x02Addres" +
	"ses: None\x02&Manage tunnels…\x02&Import tunnel(s) from file…\x02E&xit" +
	"\x02WireGuard Tunnel Error\x02WireGuard: %[1]s\x02Status: %[1]s\x02Addre" +
	"sses: %[1]s\x02WireGuard Activated\x02The %[1]s tunnel has been activate" +
	"d.\x02WireGuard Deactivated\x02The %[1]s tunnel has been deactivated." +
	"\x02An Update is Available!\x02WireGuard Update Available\x02An update t" +
	"o WireGuard is now available. You are advised to update as soon as possi" +
	"ble.\x02Tunnels\x02&Edit\x02Add &empty tunnel…\x02Add Tunnel\x02Remove s" +
	"elected tunnel(s)\x02Export all tunnels to zip\x02&Toggle\x02Export all " +
	"tunnels to &zip…\x02Edit &selected tunnel…\x02&Remove selected tunnel(s)" +
	"\x02Could not import selected configuration: %[1]v\x02Could not enumerat" +
	"e existing tunnels: %[1]v\x02Another tunnel already exists with the name" +
	" ‘%[1]s’\x02Unable to import configuration: %[1]v\x02Imported tunnels" +
	"\x14\x01\x81\x01\x00\x02\x16\x02Imported %[1]d tunnel\x00\x17\x02Importe" +
	"d %[1]d tunnels\x14\x02\x80\x01\x02\x1f\x02Imported %[1]d of %[2]d tunne" +
	"l\x00 \x02Imported %[1]d of %[2]d tunnels\x02Unable to create tunnel\x14" +
	"\x01\x81\x01\x00\x02\x14\x02Delete %[1]d tunnel\x00\x15\x02Delete %[1]d " +
	"tunnels\x14\x01\x81\x01\x00\x024\x02Are you sure you would like to delet" +
	"e %[1]d tunnel?\x005\x02Are you sure you would like to delete %[1]d tunn" +
	"els?\x02Delete tunnel ‘%[1]s’\x02Are you sure you would like to delete t" +
	"unnel ‘%[1]s’?\x02%[1]s You cannot undo this action.\x02Unable to delete" +
	" tunnel\x02A tunnel was unable to be removed: %[1]s\x02Unable to delete " +
	"tunnels\x14\x01\x81\x01\x00\x02'\x02%[1]d tunnel was unable to be remove" +
	"d.\x00)\x02%[1]d tunnels were unable to be removed.\x02Configuration Fil" +
	"es (*.zip, *.conf)|*.zip;*.conf|All Files (*.*)|*.*\x02Import tunnel(s) " +
	"from file\x02Configuration ZIP Files (*.zip)|*.zip\x02Export tunnels to " +
	"zip\x02%[1]s (unsigned build, no updates)\x02Error Exiting WireGuard\x02" +
	"Unable to exit service due to: %[1]v. You may want to stop WireGuard fro" +
	"m the service manager.\x02An update to WireGuard is available. It is hig" +
	"hly advisable to update without delay.\x02Status: Waiting for user\x02Up" +
	"date Now\x02Status: Waiting for updater service\x02Error: %[1]v. Please " +
	"try again.\x02Status: Complete!\x02http2: Framer %[1]p: failed to decode" +
	" just-written frame\x02http2: Framer %[1]p: wrote %[2]v\x02http2: Framer" +
	" %[1]p: read %[2]v\x02http2: decoded hpack field %+[1]v"

var frIndex = []uint32{ // 177 elements
	// Entry 0 - 1F
	0x00000000, 0x00000007, 0x00000046, 0x00000063,
	0x00000083, 0x000000cb, 0x00000108, 0x00000141,
	0x000001a3, 0x0000021b, 0x00000278, 0x00000283,
	0x000002a6, 0x000002c2, 0x000002e2, 0x00000304,
	0x00000328, 0x0000034e, 0x0000035b, 0x00000364,
	0x00000371, 0x0000037e, 0x0000038b, 0x00000398,
	0x000003a6, 0x000003bc, 0x000003e4, 0x0000040a,
	0x00000433, 0x00000465, 0x00000474, 0x00000484,
	// Entry 20 - 3F
	0x000004bb, 0x000004d3, 0x00000500, 0x0000053b,
	0x00000557, 0x00000570, 0x0000059c, 0x000005e4,
	0x000005ff, 0x0000062b, 0x00000652, 0x0000067a,
	0x00000692, 0x000006ca, 0x000006f1, 0x0000071d,
	0x0000073f, 0x0000076b, 0x0000076e, 0x00000770,
	0x00000787, 0x000007a2, 0x00000828, 0x0000082f,
	0x00000843, 0x0000084b, 0x00000858, 0x00000861,
	0x00000871, 0x00000882, 0x00000888, 0x00000893,
	// Entry 40 - 5F
	0x000008a2, 0x000008b8, 0x000008d2, 0x000008e9,
	0x00000917, 0x0000093e, 0x0000094a, 0x00000955,
	0x00000976, 0x000009a2, 0x000009c1, 0x000009e5,
	0x000009f7, 0x00000a01, 0x00000a1a, 0x00000a2d,
	0x00000a34, 0x00000a45, 0x00000a52, 0x00000a85,
	0x00000be0, 0x00000bed, 0x00000bf5, 0x00000c06,
	0x00000c15, 0x00000c2d, 0x00000c57, 0x00000c8c,
	0x00000ca2, 0x00000cd6, 0x00000d06, 0x00000d24,
	// Entry 60 - 7F
	0x00000d63, 0x00000d6e, 0x00000d82, 0x00000d8f,
	0x00000da7, 0x00000db5, 0x00000dbd, 0x00000dc5,
	0x00000dd9, 0x00000df9, 0x00000dff, 0x00000e12,
	0x00000e4b, 0x00000e6f, 0x00000e87, 0x00000e98,
	0x00000ee2, 0x00000ef4, 0x00000f16, 0x00000f58,
	0x00000f6f, 0x00000f7f, 0x00000f91, 0x00000fa9,
	0x00000fdb, 0x00000fe4, 0x00000fff, 0x00001011,
	0x0000101f, 0x00001030, 0x00001042, 0x00001060,
	// Entry 80 - 9F
	0x00001076, 0x00001098, 0x000010b1, 0x000010d7,
	0x0000114c, 0x00001154, 0x0000115e, 0x00001179,
	0x0000118b, 0x000011b6, 0x000011d9, 0x000011e3,
	0x0000120a, 0x0000122f, 0x0000125b, 0x00001299,
	0x000012d0, 0x000012fc, 0x0000132b, 0x0000133d,
	0x00001374, 0x000013bd, 0x000013dc, 0x00001414,
	0x00001478, 0x00001498, 0x000014ce, 0x000014fd,
	0x0000151f, 0x00001554, 0x00001578, 0x000015e4,
	// Entry A0 - BF
	0x00001637, 0x00001665, 0x00001691, 0x000016af,
	0x000016e0, 0x000016fe, 0x00001779, 0x000017f2,
	0x00001817, 0x00001831, 0x00001860, 0x00001885,
	0x00001896, 0x000018db, 0x00001900, 0x00001922,
	0x00001946,
} // Size: 732 bytes

const frData string = "" + // Size: 6470 bytes
	"\x02Erreur\x02(sans argument) : élever et installer service du gestionna" +
	"ire\x02Utilisation : %[1]s [\x0a%[2]s]\x02Options de la ligne de command" +
	"e\x02Impossible de détecter si le processus s’exécute sous WOW64 : %[1]v" +
	"\x02Utilisez la version 64 bits du WireGuard sur cet ordinateur.\x02Impo" +
	"ssible d'ouvrir le jeton de processus actuel : %[1]v\x02Seulement les ut" +
	"ilisateurs qui sont membres du groupe intégré %[1]s peuvent utiliser Wir" +
	"eGuard.\x02WireGuard est en cours d'exécution, mais l'IU est accessible " +
	"seulement à partir des bureaux du group intégré %[1]s.\x02L’icône de la " +
	"barre d’état système du WireGuard n'est pas apparue après 30 secondes." +
	"\x02Maintenant\x02L’horloge système est inversé!\x14\x01\x81\x01\x00\x02" +
	"\x09\x02%[1]d an\x00\x0a\x02%[1]d ans\x14\x01\x81\x01\x00\x02\x0b\x02%[1" +
	"]d jour\x00\x0c\x02%[1]d jours\x14\x01\x81\x01\x00\x02\x0c\x02%[1]d heur" +
	"e\x00\x0d\x02%[1]d heures\x14\x01\x81\x01\x00\x02\x0d\x02%[1]d minute" +
	"\x00\x0e\x02%[1]d minutes\x14\x01\x81\x01\x00\x02\x0e\x02%[1]d seconde" +
	"\x00\x0f\x02%[1]d secondes\x02Il y a %[1]s\x02%[1]d\u00a0o\x02%.2[1]f" +
	"\u00a0Kio\x02%.2[1]f\u00a0Mio\x02%.2[1]f\u00a0Gio\x02%.2[1]f\u00a0Tio" +
	"\x02%[1]s : %[2]q\x02Adresse IP non valide\x02Longueur du préfixe réseau" +
	" non valide\x02Port manquant au point de terminaison\x02Hôte du point de" +
	" terminaison non valide\x02Il faut mettre un adresse IPv6 entre les croc" +
	"hets\x02MTU non valide\x02Port non valide\x02Conservation de connexion a" +
	"ctive permanente non valide\x02Clé non valide : %[1]v\x02Clés doivent êt" +
	"re décodées sur 32 octets\x02Le numéro doit être un numéro entre 0 et 2^" +
	"64-1 : %[1]v\x02Deux virgules consécutives\x02Nom du tunnel non valide" +
	"\x02Une ligne doit apparaître dans une section\x02Clé de configuration n" +
	"on valide, il manque le séparateur est égal à\x02Clé doit avoir une vale" +
	"ur\x02Clé non valide pour la section [Interface]\x02Clé non valide pour " +
	"la section [Peer]\x02L'interface doit avoir une clé privée\x02[aucune sp" +
	"écification]\x02Tous les homologues doivent avoirs les clés publiques." +
	"\x02Erreur d'obtention de la configuration\x02Clé non valide pour la sec" +
	"tion d'interface\x02Version du protocole doit être 1\x02Clé non valide p" +
	"our la section d'homologue\x02, \x02 \x02À propos du WireGuard\x02Image " +
	"du logo du WireGuard\x02Version de l'application : %[1]s\x0aVersion wire" +
	"guard-go : %[2]s\x0aVersion Go : %[3]s\x0aSystème d'exploitation : %[4]s" +
	"\x0aArchitecture : %[5]s\x02Fermer\x02♥ &Faites un don!\x02État :\x02&Dé" +
	"sactiver\x02&Activer\x02Clé publique :\x02Port d'écoute :\x02MTU :\x02Ad" +
	"resses :\x02Serveurs DNS :\x02Clé pré-partagée :\x02Adresses IP autorisé" +
	"es :\x02Point de terminaison :\x02Conservation de connexion active perma" +
	"nente :\x02Dernier établissement d'une liaison :\x02Transfert :\x02activ" +
	"é(e)\x02%[1]s reçu(e), %[2]s envoyé(e)\x02Impossible de déterminer l'ét" +
	"at du tunnel\x02Impossible d'activer le tunnel\x02Impossible de désactiv" +
	"er le tunnel\x02Interface : %[1]s\x02Homologue\x02Créer un nouveau tunne" +
	"l\x02Modifier le tunnel\x02&Nom :\x02&Clé publique :\x02(inconnu(e))\x02" +
	"&Bloquer tous le trafic hors tunnel (interrupteur)\x02Si la configuratio" +
	"n a exactement un homologue et si cet homologue a une addresse IP approv" +
	"ée contenant au moins un de 0.0.0.0/0\u00a0ou\u00a0::/0, le service de " +
	"tunnelisation utilise l'ensemble de règles du pare-feu afin de blocquer " +
	"tout le traffic, sauf le traffic vers ou dépuis l'interface de tunnel et" +
	" l'exceptions speciales liées à DHCP et NDP.\x02&Enregistrer\x02Annuler" +
	"\x02&Configuration :\x02Nom non valide\x02Le nom est obligatoire.\x02Nom" +
	" de tunnel « %[1]s » est non valide.\x02Impossible de créer une liste de" +
	"s tunnels existants\x02Tunnel existe déjà.\x02Nom « %[1]s » est déjà uti" +
	"lisé pour un tunnel.\x02Impossible de créer une configuration nouvelle" +
	"\x02Échec d'écriture du fichier\x02Fichier « %[1]s » existe déjà.\x0a" +
	"\x0aVoulez-vous le remplacer ?\x02Activé(e)\x02Activation en cours\x02In" +
	"activé(e)\x02Désactivation en cours\x02État inconnu\x02Journal\x02&Copie" +
	"r\x02Sélectionner &tout\x02&Enregistrer dans le fichier…\x02Temps\x02Mes" +
	"sage du journal\x02Fichiers texte (*.txt)|*.txt|Tous les fichiers (*.*)|" +
	"*.*\x02Exporter le journal vers le fichier\x02&À propos WireGuard…\x02Er" +
	"reur du tunnel\x02%[1]s\x0a\x0aConsultez le journal pour plus d’informat" +
	"ions, s'il vous plaît.\x02%[1]s (obsolète)\x02Erreur de détection du Wir" +
	"eGuard\x02Impossible d’attendre l'affichage du fenêtre WireGuard : %[1]v" +
	"\x02WireGuard: Désactivé\x02État : Inconnu\x02Adresses : Aucune\x02&Gest" +
	"ion des tunnels…\x02&Importer le(s) tunnel(s) à partir du fichier…\x02Q&" +
	"uitter\x02Erreur du tunnel WireGuard\x02WireGuard : %[1]s\x02État : %[1]" +
	"s\x02Adresses : %[1]s\x02WireGuard activé\x02Tunnel %[1]s a été activé." +
	"\x02WireGuard désactivé\x02Tunnel %[1]s a été désactivé.\x02Mise à jour " +
	"disponible!\x02WireGuard mise à jour est disponible\x02Une mise à jour d" +
	"u WireGuard est disponible. Il est conseillé de mettre votre WireGuard à" +
	" jour dès que possible.\x02Tunnels\x02&Modifier\x02Ajouter un &tunnel vi" +
	"de…\x02Ajouter le tunnel\x02Supprimer le(s) tunnel(s) sélectionné(s)\x02" +
	"Exporter tous les tunnels vers zip\x02&Basculer\x02Exporter tous les tun" +
	"nels vers &zip…\x02Modifier &le tunnel sélectionné…\x02&Supprimer le(s) " +
	"tunnel(s) sélectionné(s)\x02Impossible d'importer la configuration sélec" +
	"tionnée : %[1]v\x02Impossible d'énumérer les tunnels existantes : %[1]v" +
	"\x02Un tunnel nommé « %[1]s » existe déjà.\x02Impossible d'importer la c" +
	"onfiguration : %[1]v\x02Tunnels importés\x14\x01\x81\x01\x00\x02\x16\x02" +
	"%[1]d tunnel importé\x00\x18\x02%[1]d tunnels importés\x14\x02\x80\x01" +
	"\x02 \x02%[1]d de %[2]d tunnels importé\x00!\x02%[1]d de %[2]d tunnels i" +
	"mportés\x02Impossible de créer le tunnel\x14\x01\x81\x01\x00\x02\x17\x02" +
	"Supprimer %[1]d tunnel\x00\x18\x02Supprimer %[1]d tunnels\x14\x01\x81" +
	"\x01\x00\x02-\x02Voulez-vous vraiment supprimer %[1]d tunnel?\x00.\x02Vo" +
	"ulez-vous vraiment supprimer %[1]d tunnels?\x02Supprimer le tunnel ‘%[1]" +
	"s’\x02Voulez-vous vraiment supprimer le tunnel « %[1]s »?\x02%[1]s Vous " +
	"ne pouvez pas annuler cette action.\x02Impossible de supprimer le tunnel" +
	"\x02Il a été impossible de supprimer un tunnel : %[1]s\x02Impossible de " +
	"supprimer les tunnels\x14\x01\x81\x01\x00\x021\x02Il a été impossible de" +
	" supprimer %[1]d tunnel.\x002\x02Il a été impossible de supprimer %[1]d " +
	"tunnels.\x02Fichiers de configuration (*.zip, *.conf)|*.zip;*.conf|Tous " +
	"les fichiers (*.*)|*.*\x02Importer le(s) tunnel(s) à partir du fichier" +
	"\x02Fichiers de configuration ZIP (*.zip)|*.zip\x02Exporter les tunnels " +
	"vers zip\x02%[1]s (version non signée, aucune mise à jour)\x02Erreur de " +
	"sortie du WireGuard\x02Impossible de quitter le service en raison de : %" +
	"[1]v. Essayez d'arrêter WireGuard à partir du gestionnair des services." +
	"\x02Une mise à jour du WireGuard est disponible. Il est fortement consei" +
	"llé de metter votre WireGuard à jour sans délai.\x02État: En attente de " +
	"l’utilisateur\x02Mettre à jour maintenant\x02État: En attente du program" +
	"me de mise à jour\x02Erreur : %[1]v. Veuillez réessayer.\x02État: Termin" +
	"é!\x02http2: Trameur %[1]p : impossible de décoder la trame just écrite" +
	".\x02http2: Trameur %[1]p: a écrit %[2]v\x02http2: Trameur %[1]p : a lu " +
	"%[2]v\x02http2 : champ hpack %+[1]v décodé"

var jaIndex = []uint32{ // 177 elements
	// Entry 0 - 1F
	0x00000000, 0x0000000a, 0x00000067, 0x00000081,
	0x000000a6, 0x000000ef, 0x00000145, 0x00000180,
	0x000001d7, 0x0000025a, 0x000002af, 0x000002b6,
	0x000002de, 0x000002e8, 0x000002f2, 0x000002ff,
	0x00000309, 0x00000313, 0x0000031d, 0x00000325,
	0x00000332, 0x0000033f, 0x0000034c, 0x00000359,
	0x00000366, 0x00000380, 0x000003ba, 0x000003e8,
	0x00000410, 0x00000450, 0x00000465, 0x0000047e,
	// Entry 20 - 3F
	0x000004a9, 0x000004bd, 0x000004ef, 0x00000542,
	0x00000566, 0x00000585, 0x000005b0, 0x000005f4,
	0x00000625, 0x00000665, 0x000006a0, 0x000006d7,
	0x000006e6, 0x00000717, 0x00000736, 0x0000077c,
	0x000007bf, 0x000007f3, 0x000007f6, 0x000007f8,
	0x0000080f, 0x00000826, 0x00000891, 0x0000089b,
	0x000008b7, 0x000008bf, 0x000008cd, 0x000008db,
	0x000008e6, 0x000008fd, 0x00000902, 0x00000910,
	// Entry 40 - 5F
	0x0000091f, 0x00000930, 0x0000093d, 0x00000954,
	0x00000974, 0x00000994, 0x0000099c, 0x000009a3,
	0x000009cb, 0x000009fc, 0x00000a2a, 0x00000a58,
	0x00000a78, 0x00000a7f, 0x00000a9b, 0x00000ab1,
	0x00000abd, 0x00000acc, 0x00000ad5, 0x00000b2e,
	0x00000c62, 0x00000c6d, 0x00000c7d, 0x00000c89,
	0x00000c99, 0x00000cb2, 0x00000ce1, 0x00000d0f,
	0x00000d37, 0x00000d86, 0x00000dae, 0x00000dd3,
	// Entry 60 - 7F
	0x00000e25, 0x00000e2c, 0x00000e39, 0x00000e40,
	0x00000e4d, 0x00000e5d, 0x00000e64, 0x00000e72,
	0x00000e86, 0x00000ea3, 0x00000eaa, 0x00000ec0,
	0x00000f0a, 0x00000f35, 0x00000f52, 0x00000f68,
	0x00000f9d, 0x00000fb0, 0x00000fca, 0x0000100c,
	0x00001027, 0x00001036, 0x0000104b, 0x00001068,
	0x0000109d, 0x000010a8, 0x000010c8, 0x000010d9,
	0x000010e7, 0x000010fb, 0x00001115, 0x00001147,
	// Entry 80 - 9F
	0x00001161, 0x00001193, 0x000011b2, 0x000011db,
	0x00001243, 0x00001250, 0x0000125b, 0x0000127e,
	0x00001294, 0x000012b6, 0x000012ea, 0x000012fb,
	0x00001336, 0x0000135f, 0x00001385, 0x000013c9,
	0x00001407, 0x00001453, 0x00001482, 0x000014a1,
	0x000014d2, 0x00001513, 0x00001538, 0x00001554,
	0x0000158f, 0x000015b2, 0x000015ed, 0x0000161e,
	0x00001643, 0x00001678, 0x0000169d, 0x000016d1,
	// Entry A0 - BF
	0x00001724, 0x00001755, 0x0000177f, 0x000017a7,
	0x000017dd, 0x0000180d, 0x00001888, 0x000018ed,
	0x00001917, 0x00001927, 0x0000195a, 0x0000198f,
	0x000019a1, 0x000019e7, 0x00001a1b, 0x00001a4f,
	0x00001a8f,
} // Size: 732 bytes

const jaData string = "" + // Size: 6799 bytes
	"\x02エラー\x02(引数なし): 管理者権限でmanagerサービスをインストールしてください\x02使い方: %[1]s [\x0a%[2" +
	"]s]\x02コマンドラインオプション\x02プロセスがWOW64で動作しているか確認できません: %[1]v\x02このコンピュータでは64ビ" +
	"ット版の WireGuard を使ってください。\x02現在のプロセストークンを開けません: %[1]v\x02WireGuard は組み込" +
	"みの %[1]s グループのメンバーだけが使えます。\x02WireGuard は実行中ですが、UI画面は組み込みの %[1]s グループの" +
	"デスクトップからしか開けません。\x02WireGuard システムトレイアイコンは30秒後に非表示になります。\x02現在\x02システム" +
	"時刻が遅れています\x02%[1]d 年\x02%[1]d 日\x02%[1]d 時間\x02%[1]d 分\x02%[1]d 秒\x02%" +
	"[1]s 前\x02%[1]d B\x02%.2[1]f\u00a0KiB\x02%.2[1]f\u00a0MiB\x02%.2[1]f" +
	"\u00a0GiB\x02%.2[1]f\u00a0TiB\x02%[1]s: %[2]q\x02不正な IP アドレス\x02不正なネットワー" +
	"クプレフィックス長指定\x02エンドポイントのポート指定なし\x02不正なエンドポイントホスト\x02カッコ内は IPv6 アドレスでなけれ" +
	"ばなりません\x02不正な MTU 指定\x02不正なポート番号\x02不正な持続的キープアライブ値\x02不正な鍵: %[1]v\x02鍵" +
	"は 32 バイトでなければなりません\x02数値は0から2の64乗-1の範囲内の値でなければなりません: %[1]v\x021行にカンマが2" +
	"つあります\x02トンネル名が不正です\x02行がセクション内にありません\x02イコール(=)が無いためキー項目として不正です\x02キー" +
	"項目に対応する値がありません\x02[Interface] セクションのキー項目として不正です\x02[Peer] セクションのキー項目とし" +
	"て不正です\x02インターフェースには秘密鍵が必須です\x02[指定なし]\x02すべてのピアには公開鍵が必須です\x02設定の取得時にエラ" +
	"ー\x02インターフェースセクションのキー項目が不正です\x02プロトコルバージョンは 1 でなければなりません\x02ピアセクションのキー" +
	"項目が不正です\x02, \x02 \x02WireGuard について\x02WireGuard ロゴ画像\x02App version:" +
	" %[1]s\x0aGo backend version: %[2]s\x0aGo version: %[3]s\x0aOperating sy" +
	"stem: %[4]s\x0aArchitecture: %[5]s\x02閉じる\x02♥ 寄付のお願い!(&D)\x02状態:\x02無効化" +
	"(&D)\x02有効化(&A)\x02公開鍵:\x02待受ポート番号:\x02MTU:\x02アドレス:\x02DNS サーバ:\x02事前共有" +
	"鍵:\x02Allowed IPs:\x02エンドポイント:\x02持続的キープアライブ:\x02直近のハンドシェイク:\x02転送:" +
	"\x02有効\x02%[1]s 受信済み、%[1]s 送信済み\x02トンネルの状態取得に失敗しました\x02トンネルの有効化に失敗しました" +
	"\x02トンネルの無効化に失敗しました\x02インターフェース: %[1]s\x02ピア\x02トンネルの新規作成\x02トンネルの編集\x02" +
	"名前(&N):\x02公開鍵(&P):\x02(不明)\x02トンネルを通らないトラフィックのブロック(キルスイッチ)(&B)\x02ピアが" +
	"1つだけ設定されていて、さらに Allowed IPs に 0.0.0.0/0 または ::/0 が含まれている場合、トンネルサービスはトンネル" +
	"インターフェースを通らないすべてのトラフィックをブロックするファイアウォールルールを追加します。\x02保存(&S)\x02キャンセル" +
	"\x02設定(&C):\x02不正な名前\x02名前は必須です。\x02トンネル名 ‘%[1]s’ は不正です。\x02既存のトンネルを表示でき" +
	"ません\x02トンネルはすでに存在します\x02‘%[1]s’ という名前の別のトンネルがすでに存在します。\x02新しい設定が作成できませ" +
	"ん\x02ファイルの書き込みに失敗\x02ファイル ‘%[1]s’ はすでに存在します。\x0a\x0a上書きしますか?\x02有効\x02" +
	"有効化中\x02無効\x02無効化中\x02不明な状態\x02ログ\x02コピー(&C)\x02すべて選択(&a)\x02ファイルに保存…(" +
	"&S)\x02時刻\x02ログメッセージ\x02テキストファイル (*.txt)|*.txt|すべてのファイル (*.*)|*.*\x02ログを" +
	"ファイルにエクスポート\x02WireGuardについて…(&A)\x02トンネルエラー\x02%[1]s\x0a\x0a詳細はログを参照し" +
	"てください。\x02%[1]s 期限切れ\x02WireGuard 検出エラー\x02WireGuard ウィンドウが表示できませんでした:" +
	" %[1]v\x02WireGuard: 無効化済み\x02状態: 不明\x02アドレス: なし\x02トンネルの管理…(&M)\x02トンネル" +
	"をファイルからインポート(&I)\x02終了(&X)\x02WireGuard トンネルエラー\x02WireGuard: %[1]s" +
	"\x02状態: %[1]s\x02アドレス: %[1]s\x02WireGuard 有効化済み\x02トンネル %[1]s は有効化されました。" +
	"\x02WireGuard 無効化済み\x02トンネル %[1]s は無効化されました。\x02更新が利用できます!\x02WireGuard " +
	"の更新が利用可能です\x02WireGuard の更新が利用可能になりました。できるだけ早く更新してください。\x02トンネル\x02編集(" +
	"&E)\x02空のトンネルを追加…(&e)\x02トンネルの追加\x02選択したトンネルの削除\x02すべてのトンネルをzipにエクスポート" +
	"\x02切り替え(&T)\x02すべてのトンネルをzipにエクスポート…(&z)\x02選択したトンネルの編集…(&s)\x02選択したトンネル" +
	"の削除(&R)\x02選択した設定をインポートできませんでした: %[1]v\x02既存のトンネルを表示できませんでした: %[1]v" +
	"\x02‘%[1]s’ という名前の別のトンネルがすでに存在します\x02設定をインポートできません: %[1]v\x02トンネルをインポート" +
	"\x02%[1]d トンネルをインポートしました\x02%[2]d つ中の %[1]d トンネルをインポートしました\x02トンネルを作成できま" +
	"せん\x02%[1]d トンネルを削除\x02本当に %[1]d つのトンネルを削除しますか?\x02トンネル ‘%[1]s’ を削除" +
	"\x02本当にトンネル ‘%[1]s’ を削除しますか?\x02%[1]s この操作はもとに戻せません。\x02トンネルを削除できません\x02" +
	"トンネルを削除できませんでした: %[1]s\x02トンネルを削除できません\x02%[1]d トンネルは削除できませんでした\x02設定フ" +
	"ァイル (*.zip, *.conf)|*.zip;*.conf|すべてのファイル (*.*)|*.*\x02ファイルからトンネルをインポー" +
	"ト\x02ZIP形式設定ファイル (*.zip)|*.zip\x02トンネルをZIPにエクスポート\x02%[1]s (未署名のビルド、更新" +
	"の提供なし)\x02エラーのため WireGuard を終了します\x02%[1]v のためサービスを終了できません。サービスマネージャから" +
	" WireGuard を停止できます。\x02WireGuard の更新が利用可能です。速やかに更新することを強く推奨します。\x02状態: ユ" +
	"ーザーからの応答待ち\x02今すぐ更新\x02状態: アップデータサービスを待機中\x02エラー: %[1]v。再度実行してください。" +
	"\x02状態: 完了!\x02http2: Framer %[1]p: just-writtenフレームのデコードに失敗\x02http2: F" +
	"ramer %[1]p: %[2]v を書き込みました\x02http2: Framer %[1]p: %[2]v を読み込みました\x02ht" +
	"tp2: hpack フィールド %+[1]v をデコードしました"

var slIndex = []uint32{ // 177 elements
	// Entry 0 - 1F
	0x00000000, 0x00000007, 0x00000058, 0x00000070,
	0x00000089, 0x000000c1, 0x00000107, 0x0000013e,
	0x00000190, 0x000001f6, 0x0000023a, 0x0000023f,
	0x0000025e, 0x00000296, 0x000002cd, 0x00000301,
	0x00000341, 0x00000385, 0x00000391, 0x0000039a,
	0x000003a7, 0x000003b4, 0x000003c1, 0x000003ce,
	0x000003db, 0x000003ee, 0x00000412, 0x00000434,
	0x0000045d, 0x00000483, 0x00000490, 0x0000049f,
	// Entry 20 - 3F
	0x000004c3, 0x000004da, 0x0000050b, 0x0000053f,
	0x00000554, 0x0000056b, 0x00000586, 0x000005be,
	0x000005d9, 0x000005fe, 0x0000061e, 0x00000640,
	0x0000064e, 0x00000675, 0x00000695, 0x000006b7,
	0x000006d5, 0x000006f7, 0x000006fa, 0x000006fc,
	0x00000709, 0x00000727, 0x0000079c, 0x000007a2,
	0x000007b0, 0x000007b8, 0x000007c5, 0x000007d0,
	0x000007de, 0x000007f1, 0x000007f6, 0x000007ff,
	// Entry 40 - 5F
	0x0000080f, 0x00000825, 0x00000836, 0x00000846,
	0x00000862, 0x00000874, 0x0000087c, 0x00000887,
	0x000008a4, 0x000008c8, 0x000008e6, 0x00000906,
	0x00000915, 0x0000091d, 0x0000092f, 0x0000093b,
	0x00000941, 0x00000950, 0x0000095a, 0x00000984,
	0x00000aa5, 0x00000aad, 0x00000ab7, 0x00000ac7,
	0x00000ad4, 0x00000ae4, 0x00000b06, 0x00000b36,
	0x00000b48, 0x00000b73, 0x00000b9a, 0x00000bb8,
	// Entry 60 - 7F
	0x00000bf3, 0x00000bfb, 0x00000c07, 0x00000c11,
	0x00000c1f, 0x00000c2e, 0x00000c36, 0x00000c3f,
	0x00000c4b, 0x00000c63, 0x00000c68, 0x00000c7e,
	0x00000cb6, 0x00000cd0, 0x00000ce3, 0x00000cf1,
	0x00000d20, 0x00000d36, 0x00000d53, 0x00000d8e,
	0x00000da5, 0x00000db4, 0x00000dc2, 0x00000dd9,
	0x00000df8, 0x00000dff, 0x00000e17, 0x00000e28,
	0x00000e36, 0x00000e45, 0x00000e59, 0x00000e77,
	// Entry 80 - 9F
	0x00000e8d, 0x00000ead, 0x00000ec6, 0x00000ee6,
	0x00000f2b, 0x00000f32, 0x00000f39, 0x00000f52,
	0x00000f5e, 0x00000f76, 0x00000f8e, 0x00000f98,
	0x00000fb6, 0x00000fcf, 0x00000fe8, 0x00001016,
	0x00001049, 0x0000106e, 0x00001094, 0x000010a4,
	0x00001108, 0x00001194, 0x000011b0, 0x00001215,
	0x00001302, 0x0000131d, 0x00001358, 0x00001383,
	0x0000139d, 0x000013c5, 0x000013e0, 0x00001494,
	// Entry A0 - BF
	0x000014e1, 0x000014fa, 0x00001525, 0x00001539,
	0x00001568, 0x00001588, 0x000015f5, 0x00001648,
	0x00001664, 0x00001672, 0x00001699, 0x000016bb,
	0x000016cd, 0x00001715, 0x00001739, 0x0000175d,
	0x00001782,
} // Size: 732 bytes

const slData string = "" + // Size: 6018 bytes
	"\x02Napaka\x02(brez argumenta): povzdigni na skrbniške pravice in namest" +
	"i skrbniško storitev\x02Uporaba: %[1]s [\x0a%[2]s]\x02Možnosti ukazne vr" +
	"stice\x02Napaka pri določanju ali proces teče kot WOW64: %[1]v\x02Na tem" +
	"u računalniku morate uporabiti 64-bitno različico WireGuarda.\x02Napaka " +
	"pri odpiranju žetona trenutnega procesa: %[1]v\x02WireGuard lahko uporab" +
	"ljajo samo uporabniki, ki so člani vgrajene skupine %[1]s.\x02WireGuard " +
	"je zagnan, vendar je up. vmesnik dostopen samo z namizij uporabnikov čla" +
	"nov skupine %[1]s.\x02Ikona WireGuarda se po 30 sekundah ni pojavila v s" +
	"istemski vrstici.\x02Zdaj\x02Sistemska ura prevrtena nazaj!\x14\x01\x81" +
	"\x01\x00\x04\x0b\x02%[1]d leta\x02\x0b\x02%[1]d leto\x03\x0b\x02%[1]d le" +
	"ti\x00\x0a\x02%[1]d let\x14\x01\x81\x01\x00\x04\x0a\x02%[1]d dni\x02\x0a" +
	"\x02%[1]d dan\x03\x0c\x02%[1]d dneva\x00\x0a\x02%[1]d dni\x14\x01\x81" +
	"\x01\x00\x04\x0a\x02%[1]d ure\x02\x0a\x02%[1]d uro\x03\x0a\x02%[1]d uri" +
	"\x00\x09\x02%[1]d ur\x14\x01\x81\x01\x00\x04\x0d\x02%[1]d minute\x02\x0d" +
	"\x02%[1]d minuto\x03\x0d\x02%[1]d minuti\x00\x0c\x02%[1]d minut\x14\x01" +
	"\x81\x01\x00\x04\x0e\x02%[1]d sekunde\x02\x0e\x02%[1]d sekundo\x03\x0e" +
	"\x02%[1]d sekundi\x00\x0d\x02%[1]d sekund\x02%[1]s nazaj\x02%[1]d\u00a0B" +
	"\x02%.2[1]f\u00a0KiB\x02%.2[1]f\u00a0MiB\x02%.2[1]f\u00a0GiB\x02%.2[1]f" +
	"\u00a0TiB\x02%[1]s: %[2]q\x02Napačen naslov IP\x02Napačna dolžina predpo" +
	"ne omrežja\x02Pri končni točki manjkajo vrata\x02Pri končni točki je gos" +
	"titelj napačen\x02Oklepaji morajo vsebovati naslov IPv6\x02Napačen MTU" +
	"\x02Napačna vrata\x02Napačno trajno ohranjanje povezave\x02Napačen ključ" +
	": %[1]v\x02Dekodirani ključi morajo biti natanko 32 bajtov\x02Številka m" +
	"ora biti število med 0 in 2^64-1: %[1]v\x02Dve zaporedni vejici\x02Ime t" +
	"unela ni veljavno\x02Vrstica mora biti v odseku\x02Napačnemu ključu konf" +
	"iguracije manjka ločilo-enačaj\x02Ključ mora imeti vrednost\x02Napačen k" +
	"ljuč za odsek [Interface]\x02Napačen ključ za odsek [Peer]\x02Vmesnik mo" +
	"ra imeti zasebni ključ\x02[ni navedeno]\x02Vsi vrstniki morajo imeti jav" +
	"ni ključ\x02Napaka pri branju konfiguracije\x02Napačen ključ za odsek vm" +
	"esnika\x02Verzija protokola mora biti 1\x02Napačen ključ za odsek vrstni" +
	"ka\x02, \x02 \x02O WireGuardu\x02Slika WireGuardovega logotipa\x02Verzij" +
	"a aplikacije: %[1]s\x0aVerzija wireguard-go: %[2]s\x0aVerzija Go: %[3]s" +
	"\x0aOperacijski sistem: %[4]s\x0aArhitektura: %[5]s\x02Zapri\x02♥ &Donir" +
	"aj!\x02Status:\x02&Deaktiviraj\x02&Aktiviraj\x02Javni ključ:\x02Vrata po" +
	"slušanja:\x02MTU:\x02Naslovi:\x02Strežniki DNS:\x02Ključ v skupni rabi:" +
	"\x02Dovoljeni IP-ji:\x02Končna točka:\x02Trajno ohranjanje povezave:\x02" +
	"Zadnje rokovanje:\x02Prenos:\x02omogočeno\x02%[1]s prejeto, %[2]s poslan" +
	"o\x02Napaka pri določanju stanja tunela\x02Napaka pri aktiviranju tunela" +
	"\x02Napaka pri deaktiviranju tunela\x02Vmesnik: %[1]s\x02Vrstnik\x02Ustv" +
	"ari nov tunel\x02Uredi tunel\x02&Ime:\x02&Javni ključ:\x02(neznano)\x02&" +
	"Blokiraj promet izven tunela (varovalka)\x02Kadar ima konfiguracija nata" +
	"nko enega vrstnika in njegov spisek dovoljenih IP-jev vsebuje vsaj enega" +
	" izmed 0.0.0.0/0 ali ::/0, bo storitev tunela vzpostavila pravila požarn" +
	"ega zidu, ki bodo blokirala ves promet, ki ni niti za niti iz vmesnika t" +
	"unela s posebnimi izjemami za DHCP and NDP.\x02&Shrani\x02Prekliči\x02&K" +
	"onfiguracija:\x02Napačno ime\x02Ime je obvezno.\x02Ime tunela »%[1]s« ni" +
	" veljavno.\x02Napaka pri pripravi seznama obstoječih tunelov\x02Tunel že" +
	" obstaja\x02Drug tunel z imenom »%[1]s« že obstaja.\x02Napaka pri izdela" +
	"vi nove konfiguracije\x02Napaka pri pisanju v datoteko\x02Datoteka »%[1]" +
	"s« že obstaja.\x0a\x0aAli jo želite prepisati?\x02Aktivno\x02Se aktivira" +
	"\x02Neaktivno\x02Se deaktivira\x02Neznano stanje\x02Dnevnik\x02&Kopiraj" +
	"\x02&Izberi vse\x02&Shrani v datoteko\u00a0…\x02Čas\x02Sporočilo v dnevn" +
	"iku\x02Tekstovne datoteke (*.txt)|*.txt|Vse datoteke (*.*)|*.*\x02Izvozi" +
	" dnevnik v datoteko\x02O WireGu&ardu\u00a0…\x02Napaka tunela\x02%[1]s" +
	"\x0a\x0aDodatne informacije najdete v dnevniku.\x02%[1]s (neposodobljen)" +
	"\x02Napaka zaznavanja WireGuarda\x02Čakanje, da se pojavi WireGuardovo o" +
	"kno, ni možno: %[1]v\x02WireGuard: Deaktiviran\x02Status: Neznan\x02Nasl" +
	"ovi: Brez\x02&Upravljaj tunele\u00a0…\x02Uvoz&i tunele iz datoteke\u00a0" +
	"…\x02I&zhod\x02Napaka tunela WireGuard\x02WireGuard: %[1]s\x02Status: " +
	"%[1]s\x02Naslovi: %[1]s\x02WireGuard aktiviran\x02Tunel %[1]s je bil akt" +
	"iviran.\x02WireGuard deaktiviran\x02Tunel %[1]s je bil deaktiviran.\x02N" +
	"a voljo je posodobitev!\x02Posodobitev WireGuarda na voljo\x02Posodobite" +
	"v WireGuarda je na voljo. Svetujemo posodobitev čim prej.\x02Tuneli\x02U" +
	"r&edi\x02Dodaj praz&en tunel\u00a0…\x02Dodaj tunel\x02Odstrani izbrane t" +
	"unele\x02Izvozi vse tunele v zip\x02&Preklopi\x02Izvozi vse tunele v &zi" +
	"p\u00a0…\x02Uredi i&zbran tunel\u00a0…\x02Odst&rani izbrane tunele\x02Na" +
	"paka pri uvozu izbrane konfiguracije: %[1]v\x02Napaka pri preštevanju ob" +
	"stoječih tunelov: %[1]v\x02Tunel z imenom »%[1]s« že obstaja\x02Napaka p" +
	"ri uvozu konfiguracije: %[1]v\x02Uvoženi tuneli\x14\x01\x81\x01\x00\x04" +
	"\x16\x02Uvoženi %[1]d tuneli\x02\x14\x02Uvožen %[1]d tunel\x03\x16\x02Uv" +
	"ožena %[1]d tunela\x00\x17\x02Uvoženo %[1]d tunelov\x14\x01\x81\x01\x00" +
	"\x04 \x02Uvoženi %[1]d od %[2]d tunelov\x02\x1f\x02Uvožen %[1]d od %[2]d" +
	" tunelov\x03 \x02Uvožena %[1]d od %[2]d tunelov\x00 \x02Uvoženo %[1]d od" +
	" %[2]d tunelov\x02Napaka pri stvaritvi tunela\x14\x01\x81\x01\x00\x04" +
	"\x16\x02Izbriši %[1]d tunele\x02\x15\x02Izbriši %[1]d tunel\x03\x16\x02I" +
	"zbriši %[1]d tunela\x00\x17\x02Izbriši %[1]d tunelov\x14\x01\x81\x01\x00" +
	"\x048\x02Ali ste prepričani, da želite izbrisati %[1]d tunele?\x027\x02A" +
	"li ste prepričani, da želite izbrisati %[1]d tunel?\x038\x02Ali ste prep" +
	"ričani, da želite izbrisati %[1]d tunela?\x009\x02Ali ste prepričani, da" +
	" želite izbrisati %[1]d tunelov?\x02Izbriši tunel ‘%[1]s’\x02Ali ste pre" +
	"pričani, da želite izbrisati tunel »%[1]s«?\x02%[1]s Tega dejanja ne mor" +
	"ete razveljaviti.\x02Napaka pri izbrisu tunela\x02Napaka pri odstranjeva" +
	"nju tunela: %[1]s\x02Napaka pri izbrisu tunelov\x14\x01\x81\x01\x00\x04*" +
	"\x02%[1]d tunelov ni bilo mogoče odstraniti.\x02)\x02%[1]d tunela ni bil" +
	"o mogoče odstraniti.\x03*\x02%[1]d tunelov ni bilo mogoče odstraniti." +
	"\x00*\x02%[1]d tunelov ni bilo mogoče odstraniti.\x02Konfiguracijske dat" +
	"oteke (*.zip, *.conf)|*.zip;*.conf|Vse datoteke (*.*)|*.*\x02Uvozi tunel" +
	"e iz datoteke\x02Konfiguracijske datoteke ZIP (*.zip)|*.zip\x02Izvozi tu" +
	"nele v zip\x02%[1]s (nepodpisane izdelave, brez posodobitev)\x02Napaka p" +
	"ri izhodu iz WireGuarda\x02Storitve ni bilo mogoče zaustaviti, ker: %[1]" +
	"v. Poskusite zaustaviti WireGuard z uporabo programa Storitve.\x02Posodo" +
	"bitev WireGuarda je na voljo. Zelo priporočamo posodobitev brez odlašanj" +
	"a.\x02Status: Čaka na uporabnika\x02Posodobi zdaj\x02Status: Čaka na ser" +
	"vis za posodobitev\x02Napaka: %[1]v. Poskusite ponovno.\x02Status: Konča" +
	"no!\x02http2: Framer %[1]p: napaka pri dekodiranju ravnokar zapisanega o" +
	"kvirja\x02http2: Framer %[1]p: zapisano %[2]v\x02http2: Framer %[1]p: pr" +
	"ebrano %[2]v\x02http2: dekodirano polje hpack %+[1]v"

	// Total table size 27397 bytes (26KiB); checksum: 32D19D64