forked from buckets/translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
de.tsx
3725 lines (3721 loc) · 107 KB
/
de.tsx
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
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import * as React from 'react'
import { ILangPack } from '@iffycan/i18n'
import { IMessages } from './base'
// Contributors, include your name and optionally a link to
// a website as you want it to appear in any credits.
const contributors = [
// {
// name: "unnamed contributor",
// href: "", /* optional */
// },
];
const messages:IMessages = {
"\n Though filling out this form is preferrable, you can also email [email protected]\n ": {
val: "\n Obwohl das Ausfüllen dieses Formular bevorzugt wird, können Sie auch eine E-Mail an [email protected] senden\n ",
translated: true,
h: "05fPQ/cX0e4UXnYsbNTo8b6FUwq/WZ1URc7ixr6WlV8=",
},
"(Drop files or click)": {
val: "(Dateien ablegen oder klicken)",
translated: true,
h: "cn8vjUpkolK+X1qsHPyR11Qj7uQWZVR6eWnhPRb/zfw=",
},
"(If you want a response)": {
val: "(Falls Sie eine Antwort erhalten möchten)",
translated: true,
h: "Ij4mQm0L5WO4Iunvl3fKwbhLwjTodc3Chq81GsFM+T0=",
},
"(easiest)": {
val: "(easiest)",
translated: false,
h: "mvpASP1TOoS7w7iXoO7ThUyiPKnrtytWyDC2XJ1WReE=",
},
"(optional)": {
val: "(freiwillig)",
translated: true,
h: "njVpYkgCdiB755Pxnsk1D8GELOWqw1mBBYG+YQr7e98=",
},
"/mo": {
val: "/M",
translated: true,
h: "ggq7na5vMB1wOjQQo0Wq0o7ctwbMUiiJr1tRRKphHss=",
},
"A sync is already in progress": {
val: "Es erfolgt bereits eine Synchronisation",
translated: true,
h: "z6CqgxENo0xxB0LPp8P8rmnLPp1m2NElecEaJM8GDfI=",
},
"About Buckets": {
/* 'Buckets' refers to the application name */
val: "Über Buckets",
translated: true,
h: "9bzPsx+kCkNUeLTSVjaygyWCkm3VCdsFaAFRvdS+xEU=",
},
"Accept EULA": {
val: "Accept EULA",
translated: false,
h: "2TWZMBgBGQU/CoeXRW5NR1b0AT4yW/zrLyRpUGWBQn8=",
},
"Account": {
val: "Konto",
translated: true,
h: "ihCgI4A9UaFZ63kuiKXqFHoGsze2dYwzpgSVU0clMfQ=",
},
"Account Transactions": {
val: "Kontoumsätze",
translated: true,
h: "GPJhFDki3xJdCOMqCkqdUDX7SfEZcg9wGee8KMIuIno=",
},
"Account and transactions deleted": {
val: "Konto und Umsätze entfernt",
translated: true,
h: "iwS2+dAqfDOEtU5SUm1d1oPFTe0+JT5NCm4nH2SrglE=",
},
"Account closed": {
val: "Konto geschlossen",
translated: true,
h: "l9xs5wLKF3KIgunL1SJh9r9XDYpWkC7LYrL4KUUFm3M=",
},
"Account deleted completely": {
val: "Konto vollständig entfernt",
translated: true,
h: "LswJ+SxzkHRVy6+Et4Wga6r/Io1P6MBlTiwdjUAUj48=",
},
"Account mapping": {
/* Noun describing import details that map to an account */
val: "Account mapping",
translated: false,
h: "utrzN1AM7WMltloEYtQSoFhx5O5Zf4u6M2p33kntCXM=",
},
"Accounts": {
val: "Konten",
translated: true,
h: "1oHDkv2zB1yiCABVTWBY5oX4Ccu36nJBCG7Q+JVg8TA=",
},
"Accounts in side bar": {
val: "Konten in Seitenleiste",
translated: true,
h: "BsDoJS2nPDKya2do9fNF2o2jl0mIUxjdBycHbmsu6HY=",
},
"Action": {
val: "Action",
translated: false,
h: "XvzB5DfL6tpSZT8TMSHzyiWbhLdKUeFcJ3tN6T8RvXU=",
},
"Actions": {
val: "Aktionen",
translated: true,
h: "qm2CvbPMHZpeVCriZp/vJ2kAGatdeyDxfZ8TMaapQvo=",
},
"Activity": {
/* Noun, label for a bucket's usage (income/expenses) for a period */
val: "Aktivität",
translated: true,
h: "jfKSYDWvDxzcenHtImEM9HokIu7tBJbMki25BNTynTI=",
},
"Actual Size": {
val: "Tatsächliche Größe",
translated: true,
h: "k1ZfUj7bmT4XwiALRlZo7ztl2d+e7JcLt3WCnvjpBYg=",
},
"Advanced settings": {
val: "Advanced settings",
translated: false,
h: "oQ0ic6e7zWfGl55WCEVG2QbtvynCSY0WyVPEdEA15q4=",
},
"Agreements": {
/* Label for page with Terms of Use type agreements */
val: "Agreements",
translated: false,
h: "RJ//uETg43dMDTum+jM/26gJUl1X/TzlcrmBmETZxtc=",
},
"All Files": {
/* Label for letting users select any file for import regardless of extension */
/* Label for letting users select any file for import regardless of extension */
/* Label for letting users select any file for import regardless of extension */
/* Label for letting users select any file for import regardless of extension */
val: "Alle Dateien",
translated: true,
h: "xP+YqxC7o4/NEWANvugOAGzJXIF368ZNwle6rV7nVRg=",
},
"Allow new connections": {
val: "Allow new connections",
translated: false,
h: "MGoLxui/5J17owbWiAA17QPnQkrBZ2bExUfiXFBaC+8=",
},
"Amazon.com Reconciliation": {
val: "Abgleich mit Amazon.com",
translated: true,
h: "SS/vhEAqfP5cTcprv5/4dDYZCEsTIMySGfXEngOoMj0=",
},
"Amount": {
val: "Betrag",
translated: true,
h: "DHNNaJF4hWTWIFdaMdMhUT4aSdti7ZfaNexABzxWWzc=",
},
"Amount of money over-allocated in buckets.": {
val: "Geldbetrag, der Eimern zu viel zugeteilt wurde",
translated: true,
h: "kFucvPefN9Kae7dArnle8i0rTZZq1U+3d8w81lDNVKw=",
},
"Analysis": {
val: "Auswertung",
translated: true,
h: "+LNAOPSLW2rpFCrT+U1suhdnoYyZa1k8ALddRlddDlI=",
},
"Animation": {
/* Label for application preference enabling/disabling animations */
val: "Animationen",
translated: true,
h: "Vk4XaMgXNIEY4+Gcal1n+qdnamgr4Q5af/+wzFRoIHU=",
},
"Any other monthly bills you have?": {
val: "Andere monatliche Kosten, die Sie haben?",
translated: true,
h: "rmA9D10bvYOVj3U4kE7U6jALpz7WpqBJTv6HZaI4T/M=",
},
"App Settings": {
val: "App Settings",
translated: false,
h: "bk/DqvzHJTuksZnC0cWC2+KPOwsnilgNjXSPLv1SbPA=",
},
"As of": {
/* Label for timestamp on a document */
val: "As of",
translated: false,
h: "AONctcFQnUGl+zc/NhrnGa7CfTpqu3E92stXUc93EEU=",
},
"Assets": {
val: "Vermögen",
translated: true,
h: "VBLBowZo0Lx8GWGbWVcEEFzSxnwQmcEOSxwtD5yIhwQ=",
},
"Attached files are too large.": {
val: "Die angehängten Dateien sind zu groß.",
translated: true,
h: "HfDI7uw+P4uLUPkDu0rxQhxJqjqcriWmD9EWYaiUqvY=",
},
"Authenticated": {
val: "Authenticated",
translated: false,
h: "qFkX9LG17MNSZOEH8+oXRLvO9La2Ph/uzSCZn7/FPHg=",
},
"Authenticating": {
val: "Authenticating",
translated: false,
h: "7Sf5Nv5dGmsCdcFHDTi6IdPNrr7sui7KirEdQpUMd7I=",
},
"Authentication": {
val: "Authentication",
translated: false,
h: "NAlBsTsQWu6FaPj3Q2Iyd12M/7PEA4UYqE+gj4dHkZA=",
},
"Available version": {
/* Label for version available to upgrade Buckets to */
val: "Available version",
translated: false,
h: "dPTYVfj33eBbVAOPN62sq/SkzXeFqTiSSeGbq7RT8ns=",
},
"Avenue available": {
val: "Avenue available",
translated: false,
h: "0ZTppZemkrqVd6lIxbRj8UJat3meVAiWkM22EaiH5eg=",
},
"Avenue closed": {
val: "Avenue closed",
translated: false,
h: "E7OVHGkfKw0NKIt4PXlc0AQqXkllTGiKAqnilsHEzUE=",
},
"Avenue opened": {
val: "Avenue opened",
translated: false,
h: "3UKUOWH4r70ixbYNjwWI7kEXLVPY/H62HsX7AypQ1D8=",
},
"Avenue type": {
val: "Avenue type",
translated: false,
h: "m88+08lu2BgvX8BFsKwDKo/bYeJbqlIkmK5GD9AbD9s=",
},
"Avenue unavailable": {
val: "Avenue unavailable",
translated: false,
h: "cDAq+7ZyrtyC7zRkvSBe9Ob6LBn4eVkqXRT7Y3Bau3U=",
},
"Avenues": {
val: "Avenues",
translated: false,
h: "Jyyh8MGvKZoZXXZkPyMrHYEAAyTOt+V8Kao2KKQtS6k=",
},
"Avenues are what you use to connect your devices together so you can send your budget from one device to another.": {
val: "Avenues are what you use to connect your devices together so you can send your budget from one device to another.",
translated: false,
h: "XbtezQPrPTjwRYWch5a1SMCG3WCcDTCs0PlLzxyPRcY=",
},
"Average": {
val: "Durchschnitt",
translated: true,
h: "zLxQhptvlIYtt0l/prvWMqnsQHh7N1gxh33WeorRi2w=",
},
"Avg:": {
val: "Durchschn:",
translated: true,
h: "EVMZyhHQEFPlI2ib8VqTJo25bJBk8gHsgZR1SZ2Jcj0=",
},
"Babysitting": {
val: "Kinderbetreuung",
translated: true,
h: "yOfOnHbye/Uhao1fb5jtfP4z0XPyc757kdBFt32Uwrc=",
},
"Backup file": {
/* Label for backup file selector */
val: "Backup file",
translated: false,
h: "HF5523dI/DYBC0mgunrYA58CSFMjLy0eMYOIgDnftyQ=",
},
"Backup folder": {
/* Label for application preference of which folder to use for automatic backups */
val: "Backup folder",
translated: false,
h: "BLOblCLkVxAs6HObgPraktoiBEQNMNFixnzpvk7FWoU=",
},
"Backups": {
/* Label for backup preferences */
val: "Backups",
translated: false,
h: "2JCpk92cgO56Ebw/lZGjh81dIWUzHyTIthk3tbUO5SY=",
},
"Backups enabled": {
/* Label for application preference enabling/disabling automated backups */
val: "Backups enabled",
translated: false,
h: "Y9MhMpBC7vFMEGWhaOb2cH6gqp/6lHO1R2XRniiNYes=",
},
"Balance": {
val: "Saldo",
translated: true,
h: "azvDWgVPY349dq4q8mbtpDhehRsFKYKNzMk/TcuOvEQ=",
},
"Bank macro": {
val: "Bank macro",
translated: false,
h: "IQmQZ/1/eVg9LLwOsnxkUbQGAcx9ZkBAlrP1Ch3Xo/c=",
},
"Basic settings": {
val: "Basic settings",
translated: false,
h: "9/8gWH6aVupdwCUJFJ4KodEJWn4fFwbiASgh7oQcxPE=",
},
"Birthdays": {
val: "Geburtstage",
translated: true,
h: "rzI9rIMV5VD86pAzRZf+uFAA8rWYhz1rIH5N9fDesSk=",
},
"Break Import Links": {
val: "Import-Verknüpfungen lösen",
translated: true,
h: "XQYKw3qJ7xKoR/DX6K6NdZxbJLHVJhxy9mFVV8r1ZU4=",
},
"Bring All to Front": {
val: "Alle in den Vordergrund",
translated: true,
h: "vXNLSncC5dTsDdfhZY5dhbev+Y3PpqQEy1fwxTkGWU0=",
},
"Bucket": {
val: "Eimer",
translated: true,
h: "APPSgbsmF5H9B7YIJDaPcEVh4T7ctWU+hxQv/eG1Dg0=",
},
"Bucket Transactions": {
val: "Eimerumsätze",
translated: true,
h: "5hMoGWO5uTeCOujLdFnRx4w3D6Zka/avSxnH14UmJiI=",
},
"Bucket deleted completely": {
val: "Eimer vollständig entfernt",
translated: true,
h: "gBMlSFTWDRRSWZeZ3fuxDhpJnhv2MoF3EvZSwo1BZHg=",
},
"Bucket group": {
val: "Bucket group",
translated: false,
h: "SK6rZDww/r+lLW1JUMyv3SXYmxaP95hasIOTSW4WFZY=",
},
"Bucket transaction": {
val: "Bucket transaction",
translated: false,
h: "bEQDTy9m51uIwZj996XKffMPU91hkOBVlNOKpudB2hw=",
},
"Bucket type:": {
val: "Eimertyp:",
translated: true,
h: "NMC+sjsH6UgNhNtiqYeiHDi4zDK/+S5h5yMfZ5CQk1c=",
},
"Buckets": {
/* Bucket list page title. Does NOT refer to the application name */
/* Refers to a list of buckets, not the application title */
/* Refers to a list of buckets, not the application title */
val: "Eimer",
translated: true,
h: "fMPIWzGvVEG0t7+bZX1ucgzulk8FaQfqioLgwLsj+oE=",
},
"Buckets Budget Filename": {
/* 'Buckets' refers to the application name */
/* 'Buckets' refers to the application name */
val: "Buckets-Budgetdateiname",
translated: true,
h: "PMqvee/qJsh/OYtRi+hbcH4fgl07SR6XM0wx4c1C+sU=",
},
"Buckets License": {
/* 'Buckets' refers to the application name */
/* 'Buckets' refers to the application name */
val: "Buckets-Lizenz",
translated: true,
h: "sym++hSpJ7LeHTQAaiYRAK41eYIw9pfMFO2EbYTHGxo=",
},
"Buckets has crashed. Please restart after submitting a bug report.": {
val: "Buckets ist abgestürzt. Bitte einen Fehler melden und das Programm neustarten.",
translated: true,
h: "jPwdFrODeZ3bxIdD+YJ9CFGjCQTqdwQNr9CdB4QTI6U=",
},
"Budget": {
/* Label for budget file selector */
val: "Budget",
translated: true,
h: "zOO4DqNSFLa6Z9vlmfaz8OnwggHn8wJeP058V5mUKbE=",
},
"Budget Specific Settings": {
/* Title for budget settings page */
val: "Budget-Einstellungen",
translated: true,
h: "/RQVOKmoXTgeciF+ohehk19BxpvBXud+3HjfZPPw1v8=",
},
"Budget file": {
val: "Budget file",
translated: false,
h: "hbfzyLF9pCBuXZJ4fcHPQVNia5LnROzn4NZFhOhjuG8=",
},
"Budget password:": {
/* Label for bank macro password prompt */
val: "Budget-Passwort:",
translated: true,
h: "yB5u4awiXu76+/Pw81ZYhBtgYQktcAVe6KU4WreiReU=",
},
"Budget version is not the same": {
val: "Budget version is not the same",
translated: false,
h: "PW44KKgM+XqnK2Dvx9Oym2UZ+2CulxBHKs9+C7pHLvQ=",
},
"Budget-specific number format": {
val: "Budgetspezifisches Zahlenformat",
translated: true,
h: "34SWA6JebUvD6EsRbt8oe1ERhdfOkpdEfhXNZsRVcx4=",
},
"Budgeted": {
val: "Budgetiert",
translated: true,
h: "aP72arzLN/j79zGtL8DWE7wcBGciRcWqMOR1aTHJmNo=",
},
"Budgets are too different to merge": {
val: "Budgets are too different to merge",
translated: false,
h: "vkltd5Q5ByrmIraVpTVq0iz8MIHQWKRmddlYq9ahIKk=",
},
"Cable TV": {
val: "Kabelfernsehen",
translated: true,
h: "wISz6Dh0vnQ1Tjhr9GWcJ2rhiif2af6NXsAzEAXYxfo=",
},
"Calculator": {
val: "Rechner",
translated: true,
h: "IiaAFlM5LkjsirGL06i1plXy1FoW75TKBiuin2r4s6Q=",
},
"Can't merge with unresolved conflicts": {
val: "Can't merge with unresolved conflicts",
translated: false,
h: "5kZvSW2HEqYSqqo9U64Kvkuax9LfssNm+s4I9CvjJQ0=",
},
"Cancel": {
/* Button label */
val: "Abbrechen",
translated: true,
h: "wHdMGFBg/BNmqwwBSIr4TrXk4fT1kilDHgZN5z4N5sU=",
},
"Cancel Import": {
/* Undo/redo label for canceling import */
val: "Importieren abbrechen",
translated: true,
h: "ASPyW8TypDFl1ANm1SIrpmykDdl3rBQDzC+wk4mdZXA=",
},
"Cancel Merge": {
val: "Cancel Merge",
translated: false,
h: "xOUSd4pIBFhoe1VahnIJgCO8yf46iL9AGSBb3bE9Mvc=",
},
"Cancel merge": {
val: "Cancel merge",
translated: false,
h: "PtR83Mtr2bGbo1WTP4IRb/XgW5AiIVvzTQD9jFDSoAI=",
},
"Cancel sync": {
val: "Synchronisierung abbrechen",
translated: true,
h: "8xFWyPShIifEhumOA/PeoTtccm5TTtbQmWFViIGcPQA=",
},
"Car Insurance": {
val: "KFZ-Versicherung",
translated: true,
h: "x3xbGNEH/vHcpYAm2HXTUhRRuz2sb6yfH0gBYFFkqc4=",
},
"Car Maintenance": {
val: "KFZ-Wartungkosten",
translated: true,
h: "Lsok3+kX1L7SXMumFWNo+oxBgfmGJcWg1CdSDw6byx8=",
},
"Car Payment": {
val: "KFZ-Ratenzahlungen",
translated: true,
h: "wp49ZoinRgifzKQ+N9RrJ6LG/9Yw6hkw1RCwXwHc6tA=",
},
"Categories": {
val: "Categories",
translated: false,
h: "UxClJeKz605AO/90mJ2YOi6N2LJk9D+RJReMlC3TDO8=",
},
"Categorization": {
val: "Kategorisierung",
translated: true,
h: "DShuYOF3daz37AE7lGCN1TajYU1VyorRCvLwh4bM1r8=",
},
"Categorize": {
val: "Kategorisieren",
translated: true,
h: "mA6/TefxgXpo2M+OUx/ATLQ4QYHv4t1+8vy3MmV+EQg=",
},
"Category": {
val: "Kategorie",
translated: true,
h: "/frArhrZL+bxdiiBKi/1cYdR/tSD7rhbMHJLgHQQdNQ=",
},
"Change": {
/* Noun: name of object describing a change in data */
val: "Change",
translated: false,
h: "prG6DzYDTLinvWF30h7VL2QRdBBwll00hx4flJyEWMc=",
},
"Change Account Type": {
val: "Kontentyp ändern",
translated: true,
h: "elw7uWDm9Vij1azrwiBbY+VwbjMQuo/xziG393BqGUA=",
},
"Charity": {
val: "Wohltätige Zwecke",
translated: true,
h: "5OqY1JRI3brWCHQyu9VDY9hpjXzg1cVB1oQnXLQjZ4U=",
},
"Chat with Matt": {
/* If "Chat with Matt" is too wide, you can translate this as just "Chat" */
val: "Mit Matt chatten",
translated: true,
h: "9nQjbkjkf8l2mX6xeNaU///NYhxxWFqnvTKOmakMmRY=",
},
"Chat...": {
val: "Chat...",
translated: true,
h: "SytGirG0+cdtbPfjBma/G/tEOt4rdOj4mnjcaWsTbt8=",
},
"Check For Updates...": {
val: "Auf Aktualisierungen prüfen...",
translated: true,
h: "S/1p0syaOMqjAbHpmZa6gWaIh/9e29QR2cRJhiMadz0=",
},
"Check for Updates": {
val: "Auf Aktualisierungen prüfen",
translated: true,
h: "6vtxqhyfiDaIXgTBH0pdoPzTGftDDEoRFNGU082PhRk=",
},
"Check for updates": {
/* Label on button that causes budgets to sync between devices */
val: "Check for updates",
translated: false,
h: "MerO0fg7nnpQBvZ87GDbTKrOJZo+aGSx6qiQEeVAmXw=",
},
"Checking for updates...": {
val: "Prüfe auf Aktualisierungen...",
translated: true,
h: "wjjhyYhYEFdJWUmwdJIEdxm0iAq2bwrWU79ANObzzZY=",
},
"Choose": {
val: "Choose",
translated: false,
h: "UeJgTiqvSbyjLXgzersyKp/deJ/06L+xXts8Eq4g6Jk=",
},
"Choose a file ending in either .ynab4 or .ymeta": {
val: "Wählen Sie eine Datei mit der Endung .ynab4 oder .ymeta",
translated: true,
h: "Tym1GWz52+2AgA4qwsbqknBtvR9QYYGN2y5oYYQ7yZQ=",
},
"Choose save location": {
val: "Choose save location",
translated: false,
h: "3GFv8eEkA96n0cetdd4cUVIl0CtfTQCk4q9Z09uSE0Y=",
},
"Choose which of the files on this device you want to make available to your other devices.": {
val: "Choose which of the files on this device you want to make available to your other devices.",
translated: false,
h: "3Vyn9u6I123YU1+p+9TdGJ3wnrJHbwswJEZPYB1lrYU=",
},
"Choose...": {
/* Label for choosing backup folder */
/* Label for choosing a budget file */
/* Label for choosing a backup file */
val: "Choose...",
translated: false,
h: "mitI0a0UwvINcTM1Hb0R9fSY5KucYuyfjuNiySSQmDY=",
},
"Cleared": {
/* Tooltip text indicating that a transaction has cleared. */
val: "Abgeschlossen",
translated: true,
h: "j1SmbPuDDBP04XfOH9NNFCDzXmB9xAzSoVG7RcHcdBg=",
},
"Cleared balance": {
/* Label for balance minus uncleared transactions */
val: "bereinigter Kontostand",
translated: true,
h: "3SpY0eBe4gJ1WtupFnV904/a1Xlfx5Y4ybAdHQGzGV0=",
},
"Close Account": {
val: "Konto schließen",
translated: true,
h: "qTJEf8mdhLx1bU9LZPYaTtrT8pMLqxemoL/YqbhjESI=",
},
"Close Window": {
val: "Fenster schließen",
translated: true,
h: "hrPxvP/hrVgtNNTMX4sv5sljx57neTy+2p0U1TKGuCE=",
},
"Close account": {
val: "Konto schließen",
translated: true,
h: "7HdV8X8++teDNW33urE2eccDw3VLdSpvII89zC/sfu4=",
},
"Closed": {
/* ! Label for list of closed accounts */
val: "Geschlossen",
translated: true,
h: "8pZrnvzAUQTJhDN/XX31DLvx0wIs1Ww3fV6pktEKEHs=",
},
"Clothing": {
val: "Kleidung",
translated: true,
h: "as4CQmPu3VF2LxSvA5djgiAPatdFRqwmOt0NiHJCe7E=",
},
"Confirm password:": {
val: "Passwort bestätigen:",
translated: true,
h: "Px/rLFgkE/Sv1Z+Xm0frULVV3lxvrEc7ABJaDzmv670=",
},
"Conflicts": {
val: "Conflicts",
translated: false,
h: "W04VkIj+XKS1rPtY7a6cQITUa157onpN6NAVlO9MknY=",
},
"Connect": {
val: "Verbinden",
translated: true,
h: "pCLQy6ZAsZnJ3ff5r+iD+O2vHQhIJEEUHUhiY1NrMP0=",
},
"Connect to bank": {
val: "Mit Geldinstitut verbinden",
translated: true,
h: "0T7eA3oFvMxyPIOAkMZ2rDpJxQVORgxrLqrDx87L1ZY=",
},
"Connected": {
val: "Verbunden",
translated: true,
h: "fV/VOfsqBR+vyqF2tRjG6qsC8ufS/QDaTRaUee+UEMA=",
},
"Connecting...": {
val: "Verbindung wird hergestellt...",
translated: true,
h: "fYdj0RfOQMPN3n28gswFnK4aOvozPH0hqm9oqd+NcWI=",
},
"Connection corrupted. Please delete and re-create.": {
/* Error when an invalid SimpleFIN connection is attempted */
val: "Verbindung verloren. Bitte löschen und neu erstellen.",
translated: true,
h: "YjH9IxACkJ2e9cq+MYI3I6l3RmOWZPEBAwzjq3W7x0s=",
},
"Connection saved!": {
val: "Verbindung gespeichert!",
translated: true,
h: "wAgyeIQsbaI/kFPgBf8sWlKK1mf/VcP7BjHpC9TNYuc=",
},
"Copy": {
val: "Kopieren",
translated: true,
h: "T2DR4UKv+pyVWY8GzF/WWjk5XqMXgZ0gDyXkZmYczHw=",
},
"Create Account": {
/* Undo/redo label for creating an account */
/* Undo/redo label for creating an account */
val: "Konto erstellen",
translated: true,
h: "0N2I0sNdMLVk7zC9FqlNYoA1G6RDgQDvQErp/TjAnRA=",
},
"Create Backup": {
val: "Sicherung erstellen",
translated: true,
h: "tUZEq5sa8Ggh6lIgsWzX8Blj6/unJ8dhl9sKpfwxRYY=",
},
"Create Backup and Start Over": {
val: "Sicherung erstellen und neu beginnen",
translated: true,
h: "55tb3CtVKNADQpK4SdoMMPQvHu1ftBosd/dP8lFHV/o=",
},
"Create Macro": {
val: "Makro erstellen",
translated: true,
h: "F6PDykaoACWoqQ+oKUyJyhERAe1FjT6A3OkxL+S5l8k=",
},
"Create Template": {
val: "Vorlage erstellen",
translated: true,
h: "gAbtUL3vhxk+yCSp7fzAF4Z9tV0I4x7Uq5xDJ4nm2Uk=",
},
"Create Transaction": {
val: "Umsatz erstellen",
translated: true,
h: "G5NDAP857MBDE66GWUREcFAJc2pCogndYa6y+m6PRfE=",
},
"Create budget password:": {
val: "Budgetpasswort erstellen",
translated: true,
h: "Bf9XVrpN9UpVSKpZNRpBUw/IaFjMkNCmH4gpAfhYFkY=",
},
"Create macro": {
val: "Makro erstellen",
translated: true,
h: "9xZZAswDH8zePPUhfsaSEDJ21GU1yhILKhDWtvnUlr0=",
},
"Create new account": {
val: "Neues Konto erstellen",
translated: true,
h: "SmoVFbeAWSO4cW1YQJbuDJQz8kenVz5++WTJEkS6Vos=",
},
"Create or manage account": {
/* Link to manage relay accounts */
val: "Create or manage account",
translated: false,
h: "U5lOs+hLfJ8gBJoXR9ToFOsg130hRzN7A4AauACQHHY=",
},
"Currency symbol": {
/* Label for currency symbol setting */
val: "Währungssymbol",
translated: true,
h: "/zaBMXJh747DLHbqocisO7iV5wDJpVTSCx8RhH7Ye0E=",
},
"Current version": {
/* Label for current application version */
val: "Current version",
translated: false,
h: "lVqFstk3jMWPnA1laudxoN7T6PXUVe365RE2LqCMZmA=",
},
"Custom": {
/* A label for choosing a custom date range */
val: "Custom",
translated: false,
h: "npcV1SQQyG8XsJlGwbsserjaxIIkVCtt9ZFBODiihSI=",
},
"Cut": {
val: "Ausschneiden",
translated: true,
h: "+kuX06pgC809fwr+5h9VbC8sVgVWo6EXgg6bzfXXtJs=",
},
"Data": {
val: "Dateiinhalt",
translated: true,
h: "nb/gDaJJpEyxUczsooYPcWRNvDVzBJLOxevxBEAPM+o=",
},
"Date Posted": {
val: "Buchungsdatum",
translated: true,
h: "3A+vhaBB21UASdnwmNYVGMV9qH/U43D3DCsVSXlWasY=",
},
"Date format": {
val: "Datumsformat",
translated: true,
h: "fY1FnR2YTcyORx9p/4BdLTjtjH1FNW35jtGy64ltO4E=",
},
"Date range": {
val: "Date range",
translated: false,
h: "Byx38NxnaOdzvBIgWlDoyRZR5IEPJ329lwDnivHzJik=",
},
"Debt": {
/* Label for a total debt amount */
/* Name of bucket group for debts */
val: "Schulden",
translated: true,
h: "y9kslXhW17gMMFZ9Dq8g/tabfINzlmzT+39QNbWiWGA=",
},
"Debugger": {
val: "Debugger",
translated: true,
h: "4ScsdyOtUZsKH/cENJNnmyZFMuIjtHzPrPhrpnc+kOk=",
},
"Debugging": {
val: "Debugging",
translated: false,
h: "5qYhotBwdyjpp1WiJlT+T5wf/rpbKu5NEGOrxJMpz2U=",
},
"Decimal delimiter": {
val: "Dezimaltrennzeichen",
translated: true,
h: "Qjuny9lynn/v2WJwTnYLdXQb/ne+0Q2TBiSM+KFIrIU=",
},
"Default": {
/* Label for default backup folder location */
val: "Default",
translated: false,
h: "TKDg5zIpVAzBCbQHtW0yWzTe9w8z+EmC7VPeZA2B70k=",
},
"Default number format": {
/* Label for application number formatting preference */
val: "Standardzahlenformat",
translated: true,
h: "mgzNoP6jlMs5CPedg7OHyJuqrwEkQlj6DduekmeqfCY=",
},
"Delete": {
val: "Entfernen",
translated: true,
h: "sm3jcrSw6qxgICiEpy25imvm6QNueF6oZ+oBxfeSEJg=",
},
"Delete Account": {
val: "Konto entfernen",
translated: true,
h: "zTJTocYLEbNVwJ0ojyPCB6M0JpGx6fe6AZHWtuVJv0M=",
},
"Delete Connection": {
val: "Verbindung entfernen",
translated: true,
h: "o6bxlUpjZFFTleiRLA4ykeB3yEHsAiXW9usUdJ9jh1g=",
},
"Delete Group": {
val: "Gruppe entfernen",
translated: true,
h: "VaefOk8g8N64N+Td8TEorhhMQBe0AuWmfRz7u7+Q1Ko=",
},
"Delete Macro": {
val: "Makro entfernen",
translated: true,
h: "Qb7shd6fRLybaDzPvdr0Z4VfVek/fHVV556kEcNZrH8=",
},
"Delete Transactions": {
val: "Umsätze entfernen",
translated: true,
h: "5rAWRNk97CWy9OfDP5IWSE/T2Ao461w7C3z/IDV154I=",
},
"Delete Unknown Account": {
val: "Unbekanntes Konto entfernen",
translated: true,
h: "SzZ+N6/hpntSyAoyuLxzaipQcinkrh5c33ceQdtoUcE=",
},
"Delete all": {
val: "Alle entfernen",
translated: true,
h: "nKzti1takFUxZyWfLTGqgvdL3dJMx6CdNwVfBH1jUYE=",
},
"Deleted": {
val: "Deleted",
translated: false,
h: "qaM7+YriKFk63EE2I46KNlMjYgR2jOP4JZMTj4yIti4=",
},
"Delimiter": {
val: "Trennzeichen",
translated: true,
h: "VDesNaCayRIGFHLEXOjH3Eev3D/EzM6/dVsl7zN/+Mo=",
},
"Description": {
val: "Beschreibung",
translated: true,
h: "bg0ZDIR+z+PEkinc/ZyqkERMsVZcFFm3NhQoIqZH+WM=",
},
"Details": {
/* Label for sharing avenue details */
val: "Details",
translated: true,
h: "68e/QPEuI36iIEcTWmKDrVU9KBReQ3EjFzF1F06KQMA=",
},
"Device": {
val: "Device",
translated: false,
h: "SljXcmF5cBUDvagtLmL5aNIz++tnIbf5qjS1cxxEI1I=",
},
"Diapers": {
val: "Windeln",
translated: true,
h: "Vr53xwIeHjIIuMymcxrQ3l1RsDE6ra+ZTFT4dbR/rlI=",
},
"Disable Macro": {
val: "Makro deaktivieren",
translated: true,
h: "k0HEkS8+oirJJHylM2fcT1D1/IqnGFVX3cGlU3d3G50=",
},
"Disconnected": {
val: "Unterbrochen",
translated: true,
h: "8d3FMs2ZCPYbCLDzsVcqXsv6b5vDilOwJCEAevNsZDM=",
},
"Do both devices show the same pairing codes?": {
val: "Do both devices show the same pairing codes?",
translated: false,
h: "w66hJr+u8QSrtvG+XC0n5CLXFsJuU1YfxxNPzX6b/z8=",
},
"Done": {
val: "Abgeschlossen",
translated: true,
h: "FlUsJYC76LgtNYLenrPiDvDgAVk3wLT14rwyk2hHYiY=",
},
"Download Update": {
val: "Update herunterladen",
translated: true,
h: "OvekDBh71chOkbTXqPs/V/x0lNbpc668s4hyXRF5G+I=",
},
"Downloading update...": {
val: "Update wird heruntergeladen...",
translated: true,
h: "vTHXpZeFxjQhKPwUQPCm+eHcyYR6YjSmIm4mtV/5iTE=",
},
"Duplicate Window": {
val: "Fenster duplizieren",
translated: true,
h: "tjwFTBARBKQ5uC9Fh0zm7ag/RViV95pptJBJn9eVqHE=",
},
"Duplicate of existing transaction": {
/* Label for an imported transaction that is a duplicate of an existing one */
val: "Duplicate of existing transaction",
translated: false,
h: "6d7BweiCObuFrgVXiVOkjVaHEKwbPSJY2AbNcT/7508=",
},
"EULA accepted": {
val: "EULA accepted",
translated: false,
h: "MZZW8mGJoOJ5ehMdPPve2szfe+yi7Du06hSKo61py9Y=",
},
"EULA not accepted": {
val: "EULA not accepted",
translated: false,
h: "FVsbix5CHwscF/kgCdBTZYPnKTpIN55xFHleEFK6Oqw=",
},
"EXPERIMENTAL Buckets Macro Maker": {
/* 'Buckets' refers to the application name */
val: "EXPERIMENTELLES Werkzeug zum Erstellen von Buckets-Makros",
translated: true,
h: "NZPVXQ+Dw1vv0fLXY+Z4R1KiEkXjDZtSmY3tVz5L1VI=",
},
"Eating out": {
val: "Auswärts essen",
translated: true,
h: "aiQggrM+Wb8WtkoJykeSDnNiCBgzGqVGc1Hvkf5Uzg8=",
},
"Edit": {
val: "Bearbeiten",
translated: true,
h: "9+ZynTDPePvsJX4rW8Mn0wEzk0GRQ+udON01NKHVsQU=",
},
"Electricity": {
val: "Strom",
translated: true,
h: "D85G++Fy1hUUGZfHiKAUcNRlXmLcdkKK7RtxnwJ110U=",
},
"Enable Macro": {
val: "Makro aktivieren",
translated: true,
h: "9SWFr96CNVD21JQ30lw4cj1JCAZ44RNlKkDzQJ/RyuE=",
},
"Enabled": {
val: "Enabled",
translated: false,
h: "hHztbKAreElTc7ttNUovJFG0DIq9xfILBM+1aNV8x2Q=",
},
"Ending Balance": {
val: "Endsaldo",
translated: true,
h: "bwan2qqqdDloluCkgp+UPYWSAeOQk9zkaNwb2p0kUDk=",
},
"Ending amount:": {
val: "Endbetrag:",
translated: true,
h: "0IUvXk9nogxjdL1n0VZPrxcMOUZODNXMlGrlpyXq8bI=",
},
"Ending balance": {
val: "Ending balance",
translated: false,
h: "aAtJw4Tz1ZrB97s3K84TZqaiG7f+B04ZFnxZx9ryHWQ=",
},
"Enter License...": {
val: "Lizensschlüssel eingeben...",
translated: true,
h: "A+/eZ8qTAh97iBouJPInRkCg7F0nOkteYEBO7+lFHHA=",
},
"Error": {
val: "Fehler",
translated: true,
h: "/ErBlknw7o83xx0uIDCjdDA4u5bAwnNZuhFd2GV1Zcw=",
},
"Error during import": {
val: "Fehler beim Importieren",
translated: true,
h: "BiI3zjvgdX5vXe4kX0mS7AvEFln+iIdMmLNX1xeQqLU=",
},
"Error during merge": {
val: "Error during merge",
translated: false,
h: "PoE7TMsxGW9dp4u1juziybXV1VV8Wgv9ejdrAoUVynk=",
},
"Error fetching data": {
val: "Fehler beim Datenabruf",
translated: true,
h: "z94B0956dECmmaMVLZFW0oZMVtA92etw+2ZqumR4K9Q=",
},
"Error importing": {
val: "Fehler beim Importieren",
translated: true,
h: "rekzwWcY0HRZEhFebX1fJrp4aDJ/NTPxIwWaCYAk+7k=",
},
"Error parsing response": {
val: "Fehler bei der Antwortverarbeitung",
translated: true,
h: "PsIRbom+m8Y5OIEPW2rzJYVlNA2NQrZmEQnpW7Y/9KI=",
},
"Error restoring from backup": {
val: "Error restoring from backup",
translated: false,
h: "7dtoozbhFD0JBqVUuvIbB6I58faFMyoolWjHqHP7ypo=",
},