mirror of
https://git.sr.ht/~phw/scotty
synced 2025-04-30 05:37:05 +02:00
Documented translation and set translation license to CC0
This commit is contained in:
parent
7df08bfaaa
commit
511b71b909
6 changed files with 200 additions and 43 deletions
|
@ -39,42 +39,43 @@ func init() {
|
|||
}
|
||||
|
||||
var messageKeyToIndex = map[string]int{
|
||||
"During the import the following errors occurred:": 4,
|
||||
"Error: %v\n": 5,
|
||||
"From timestamp: %v (%v)": 1,
|
||||
"Import failed, last reported timestamp was %v (%v)": 2,
|
||||
"Imported %v of %v %s into %v.": 3,
|
||||
"Latest timestamp: %v (%v)\n": 6,
|
||||
"Transferring %s from %s to %s...": 0,
|
||||
"done": 9,
|
||||
"exporting": 7,
|
||||
"importing": 8,
|
||||
"During the import the following errors occurred:": 7,
|
||||
"Error: %v\n": 8,
|
||||
"From timestamp: %v (%v)": 4,
|
||||
"Import failed, last reported timestamp was %v (%v)": 5,
|
||||
"Imported %v of %v %s into %v.": 6,
|
||||
"Latest timestamp: %v (%v)\n": 9,
|
||||
"Transferring %s from %s to %s...": 3,
|
||||
"done": 2,
|
||||
"exporting": 0,
|
||||
"importing": 1,
|
||||
}
|
||||
|
||||
var deIndex = []uint32{ // 11 elements
|
||||
0x00000000, 0x00000029, 0x00000047, 0x00000087,
|
||||
0x000000b2, 0x000000e9, 0x000000fc, 0x00000125,
|
||||
0x00000125, 0x00000125, 0x00000125,
|
||||
0x00000000, 0x0000000b, 0x00000016, 0x0000001d,
|
||||
0x00000046, 0x00000064, 0x000000a4, 0x000000cf,
|
||||
0x00000106, 0x00000119, 0x00000142,
|
||||
} // Size: 68 bytes
|
||||
|
||||
const deData string = "" + // Size: 293 bytes
|
||||
"\x02Übertrage %[1]s von %[2]s nach %[3]s...\x02Ab Zeitstempel: %[1]v (%[" +
|
||||
"2]v)\x02Import fehlgeschlagen, der letzte Zeitstempel war %[1]v (%[2]v)" +
|
||||
"\x02%[1]v von %[2]v %[3]s in %[4]v importiert.\x02Während des Imports si" +
|
||||
"nd folgende Fehler aufgetreten:\x04\x00\x01\x0a\x0e\x02Fehler: %[1]v\x04" +
|
||||
"\x00\x01\x0a$\x02Neuester Zeitstempel: %[1]v (%[2]v)"
|
||||
const deData string = "" + // Size: 322 bytes
|
||||
"\x02exportiere\x02importiere\x02fertig\x02Übertrage %[1]s von %[2]s nach" +
|
||||
" %[3]s...\x02Ab Zeitstempel: %[1]v (%[2]v)\x02Import fehlgeschlagen, der" +
|
||||
" letzte Zeitstempel war %[1]v (%[2]v)\x02%[1]v von %[2]v %[3]s in %[4]v " +
|
||||
"importiert.\x02Während des Imports sind folgende Fehler aufgetreten:\x04" +
|
||||
"\x00\x01\x0a\x0e\x02Fehler: %[1]v\x04\x00\x01\x0a$\x02Neuester Zeitstemp" +
|
||||
"el: %[1]v (%[2]v)"
|
||||
|
||||
var enIndex = []uint32{ // 11 elements
|
||||
0x00000000, 0x0000002a, 0x00000048, 0x00000081,
|
||||
0x000000ab, 0x000000dc, 0x000000ee, 0x00000113,
|
||||
0x0000011d, 0x00000127, 0x0000012c,
|
||||
0x00000000, 0x0000000a, 0x00000014, 0x00000019,
|
||||
0x00000043, 0x00000061, 0x0000009a, 0x000000c4,
|
||||
0x000000f5, 0x00000107, 0x0000012c,
|
||||
} // Size: 68 bytes
|
||||
|
||||
const enData string = "" + // Size: 300 bytes
|
||||
"\x02Transferring %[1]s from %[2]s to %[3]s...\x02From timestamp: %[1]v (" +
|
||||
"%[2]v)\x02Import failed, last reported timestamp was %[1]v (%[2]v)\x02Im" +
|
||||
"ported %[1]v of %[2]v %[3]s into %[4]v.\x02During the import the followi" +
|
||||
"ng errors occurred:\x04\x00\x01\x0a\x0d\x02Error: %[1]v\x04\x00\x01\x0a " +
|
||||
"\x02Latest timestamp: %[1]v (%[2]v)\x02exporting\x02importing\x02done"
|
||||
"\x02exporting\x02importing\x02done\x02Transferring %[1]s from %[2]s to %" +
|
||||
"[3]s...\x02From timestamp: %[1]v (%[2]v)\x02Import failed, last reported" +
|
||||
" timestamp was %[1]v (%[2]v)\x02Imported %[1]v of %[2]v %[3]s into %[4]v" +
|
||||
".\x02During the import the following errors occurred:\x04\x00\x01\x0a" +
|
||||
"\x0d\x02Error: %[1]v\x04\x00\x01\x0a \x02Latest timestamp: %[1]v (%[2]v)"
|
||||
|
||||
// Total table size 729 bytes (0KiB); checksum: A7E71D11
|
||||
// Total table size 758 bytes (0KiB); checksum: D85383CE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue