-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathro.tsx
3729 lines (3725 loc) · 107 KB
/
ro.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: "Acepin",
href: "https://github.com/acepin",
},
// {
// name: "",
// href: "", /* optional */
// }
];
const messages:IMessages = {
"\n Though filling out this form is preferrable, you can also email [email protected]\n ": {
val: "\n Deși este de preferat să completați acest formular, puteți trimite un e-mail la [email protected]\n ",
translated: true,
h: "05fPQ/cX0e4UXnYsbNTo8b6FUwq/WZ1URc7ixr6WlV8=",
},
"(Drop files or click)": {
val: "(Aruncați fișierele sau faceți clic)",
translated: true,
h: "cn8vjUpkolK+X1qsHPyR11Qj7uQWZVR6eWnhPRb/zfw=",
},
"(If you want a response)": {
val: "(Dacă doriți un răspuns)",
translated: true,
h: "Ij4mQm0L5WO4Iunvl3fKwbhLwjTodc3Chq81GsFM+T0=",
},
"(easiest)": {
val: "(cel mai ușor)",
translated: true,
h: "mvpASP1TOoS7w7iXoO7ThUyiPKnrtytWyDC2XJ1WReE=",
},
"(optional)": {
val: "(opțional)",
translated: true,
h: "njVpYkgCdiB755Pxnsk1D8GELOWqw1mBBYG+YQr7e98=",
},
"/mo": {
val: "/lu",
translated: true,
h: "ggq7na5vMB1wOjQQo0Wq0o7ctwbMUiiJr1tRRKphHss=",
},
"A sync is already in progress": {
val: "O sincronizare e deja în desfășurare",
translated: true,
h: "z6CqgxENo0xxB0LPp8P8rmnLPp1m2NElecEaJM8GDfI=",
},
"About Buckets": {
/* 'Buckets' refers to the application name */
val: "Despre Buckets",
translated: true,
h: "9bzPsx+kCkNUeLTSVjaygyWCkm3VCdsFaAFRvdS+xEU=",
},
"Accept EULA": {
val: "Acceptați EULA",
translated: true,
h: "2TWZMBgBGQU/CoeXRW5NR1b0AT4yW/zrLyRpUGWBQn8=",
},
"Account": {
val: "Cont",
translated: true,
h: "ihCgI4A9UaFZ63kuiKXqFHoGsze2dYwzpgSVU0clMfQ=",
},
"Account Transactions": {
val: "Tranzacții în cont",
translated: true,
h: "GPJhFDki3xJdCOMqCkqdUDX7SfEZcg9wGee8KMIuIno=",
},
"Account and transactions deleted": {
val: "Cont și tranzacții șterse",
translated: true,
h: "iwS2+dAqfDOEtU5SUm1d1oPFTe0+JT5NCm4nH2SrglE=",
},
"Account closed": {
val: "Cont închis",
translated: true,
h: "l9xs5wLKF3KIgunL1SJh9r9XDYpWkC7LYrL4KUUFm3M=",
},
"Account deleted completely": {
val: "Cont șters complet",
translated: true,
h: "LswJ+SxzkHRVy6+Et4Wga6r/Io1P6MBlTiwdjUAUj48=",
},
"Account mapping": {
/* Noun describing import details that map to an account */
val: "Mapare la cont",
translated: true,
h: "utrzN1AM7WMltloEYtQSoFhx5O5Zf4u6M2p33kntCXM=",
},
"Accounts": {
val: "Conturi",
translated: true,
h: "1oHDkv2zB1yiCABVTWBY5oX4Ccu36nJBCG7Q+JVg8TA=",
},
"Accounts in side bar": {
val: "Conturi în bara laterală",
translated: true,
h: "BsDoJS2nPDKya2do9fNF2o2jl0mIUxjdBycHbmsu6HY=",
},
"Action": {
val: "Acțiune",
translated: true,
h: "XvzB5DfL6tpSZT8TMSHzyiWbhLdKUeFcJ3tN6T8RvXU=",
},
"Actions": {
val: "Acțiuni",
translated: true,
h: "qm2CvbPMHZpeVCriZp/vJ2kAGatdeyDxfZ8TMaapQvo=",
},
"Activity": {
/* Noun, label for a bucket's usage (income/expenses) for a period */
val: "Activitate",
translated: true,
h: "jfKSYDWvDxzcenHtImEM9HokIu7tBJbMki25BNTynTI=",
},
"Actual Size": {
val: "Dimensiune reală",
translated: true,
h: "k1ZfUj7bmT4XwiALRlZo7ztl2d+e7JcLt3WCnvjpBYg=",
},
"Advanced settings": {
val: "Setări avansate",
translated: true,
h: "oQ0ic6e7zWfGl55WCEVG2QbtvynCSY0WyVPEdEA15q4=",
},
"Agreements": {
/* Label for page with Terms of Use type agreements */
val: "Acorduri",
translated: true,
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: "Toate fișierele",
translated: true,
h: "xP+YqxC7o4/NEWANvugOAGzJXIF368ZNwle6rV7nVRg=",
},
"Allow new connections": {
val: "Permite conexiuni noi",
translated: true,
h: "MGoLxui/5J17owbWiAA17QPnQkrBZ2bExUfiXFBaC+8=",
},
"Amazon.com Reconciliation": {
val: "Reconciliere Amazon.com",
translated: true,
h: "SS/vhEAqfP5cTcprv5/4dDYZCEsTIMySGfXEngOoMj0=",
},
"Amount": {
val: "Sumă",
translated: true,
h: "DHNNaJF4hWTWIFdaMdMhUT4aSdti7ZfaNexABzxWWzc=",
},
"Amount of money over-allocated in buckets.": {
val: "Suma de bani supraalocată în găleți.",
translated: true,
h: "kFucvPefN9Kae7dArnle8i0rTZZq1U+3d8w81lDNVKw=",
},
"Analysis": {
val: "Analiză",
translated: true,
h: "+LNAOPSLW2rpFCrT+U1suhdnoYyZa1k8ALddRlddDlI=",
},
"Animation": {
/* Label for application preference enabling/disabling animations */
val: "Animații",
translated: true,
h: "Vk4XaMgXNIEY4+Gcal1n+qdnamgr4Q5af/+wzFRoIHU=",
},
"Any other monthly bills you have?": {
val: "Ați avea și alte facturi lunare?",
translated: true,
h: "rmA9D10bvYOVj3U4kE7U6jALpz7WpqBJTv6HZaI4T/M=",
},
"App Settings": {
val: "Setări app",
translated: true,
h: "bk/DqvzHJTuksZnC0cWC2+KPOwsnilgNjXSPLv1SbPA=",
},
"As of": {
/* Label for timestamp on a document */
val: "La",
translated: true,
h: "AONctcFQnUGl+zc/NhrnGa7CfTpqu3E92stXUc93EEU=",
},
"Assets": {
val: "Active",
translated: true,
h: "VBLBowZo0Lx8GWGbWVcEEFzSxnwQmcEOSxwtD5yIhwQ=",
},
"Attached files are too large.": {
val: "Fișierele atașate sunt prea mari.",
translated: true,
h: "HfDI7uw+P4uLUPkDu0rxQhxJqjqcriWmD9EWYaiUqvY=",
},
"Authenticated": {
val: "Autentificat",
translated: true,
h: "qFkX9LG17MNSZOEH8+oXRLvO9La2Ph/uzSCZn7/FPHg=",
},
"Authenticating": {
val: "Se autentifică",
translated: true,
h: "7Sf5Nv5dGmsCdcFHDTi6IdPNrr7sui7KirEdQpUMd7I=",
},
"Authentication": {
val: "Autentificare",
translated: true,
h: "NAlBsTsQWu6FaPj3Q2Iyd12M/7PEA4UYqE+gj4dHkZA=",
},
"Available version": {
/* Label for version available to upgrade Buckets to */
val: "Versiune disponibilă",
translated: true,
h: "dPTYVfj33eBbVAOPN62sq/SkzXeFqTiSSeGbq7RT8ns=",
},
"Avenue available": {
val: "Cale disponibilă",
translated: true,
h: "0ZTppZemkrqVd6lIxbRj8UJat3meVAiWkM22EaiH5eg=",
},
"Avenue closed": {
val: "Cale închisă",
translated: true,
h: "E7OVHGkfKw0NKIt4PXlc0AQqXkllTGiKAqnilsHEzUE=",
},
"Avenue opened": {
val: "Cale deschisă",
translated: true,
h: "3UKUOWH4r70ixbYNjwWI7kEXLVPY/H62HsX7AypQ1D8=",
},
"Avenue type": {
val: "Tip de cale",
translated: true,
h: "m88+08lu2BgvX8BFsKwDKo/bYeJbqlIkmK5GD9AbD9s=",
},
"Avenue unavailable": {
val: "Cale indisponibilă",
translated: true,
h: "cDAq+7ZyrtyC7zRkvSBe9Ob6LBn4eVkqXRT7Y3Bau3U=",
},
"Avenues": {
val: "Căi",
translated: true,
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: "Căile se folosesc la conectarea dispozitivelor între ele pentru a putea trimite bugetul de la un dispozitiv la altul.",
translated: true,
h: "XbtezQPrPTjwRYWch5a1SMCG3WCcDTCs0PlLzxyPRcY=",
},
"Average": {
val: "Medie",
translated: true,
h: "zLxQhptvlIYtt0l/prvWMqnsQHh7N1gxh33WeorRi2w=",
},
"Avg:": {
val: "Med:",
translated: true,
h: "EVMZyhHQEFPlI2ib8VqTJo25bJBk8gHsgZR1SZ2Jcj0=",
},
"Babysitting": {
val: "Babysitting",
translated: true,
h: "yOfOnHbye/Uhao1fb5jtfP4z0XPyc757kdBFt32Uwrc=",
},
"Backup file": {
/* Label for backup file selector */
val: "Fișier copie de rezervă",
translated: true,
h: "HF5523dI/DYBC0mgunrYA58CSFMjLy0eMYOIgDnftyQ=",
},
"Backup folder": {
/* Label for application preference of which folder to use for automatic backups */
val: "Director cu copii de rezervă",
translated: true,
h: "BLOblCLkVxAs6HObgPraktoiBEQNMNFixnzpvk7FWoU=",
},
"Backups": {
/* Label for backup preferences */
val: "Copii de rezervă",
translated: true,
h: "2JCpk92cgO56Ebw/lZGjh81dIWUzHyTIthk3tbUO5SY=",
},
"Backups enabled": {
/* Label for application preference enabling/disabling automated backups */
val: "Copii de rezervă activate",
translated: true,
h: "Y9MhMpBC7vFMEGWhaOb2cH6gqp/6lHO1R2XRniiNYes=",
},
"Balance": {
val: "Sold",
translated: true,
h: "azvDWgVPY349dq4q8mbtpDhehRsFKYKNzMk/TcuOvEQ=",
},
"Bank macro": {
val: "Macro bancă",
translated: true,
h: "IQmQZ/1/eVg9LLwOsnxkUbQGAcx9ZkBAlrP1Ch3Xo/c=",
},
"Basic settings": {
val: "Setări de bază",
translated: true,
h: "9/8gWH6aVupdwCUJFJ4KodEJWn4fFwbiASgh7oQcxPE=",
},
"Birthdays": {
val: "Zile de naștere",
translated: true,
h: "rzI9rIMV5VD86pAzRZf+uFAA8rWYhz1rIH5N9fDesSk=",
},
"Break Import Links": {
val: "Rupe legăturile de import",
translated: true,
h: "XQYKw3qJ7xKoR/DX6K6NdZxbJLHVJhxy9mFVV8r1ZU4=",
},
"Bring All to Front": {
val: "Adu totul în față",
translated: true,
h: "vXNLSncC5dTsDdfhZY5dhbev+Y3PpqQEy1fwxTkGWU0=",
},
"Bucket": {
val: "Găleată",
translated: true,
h: "APPSgbsmF5H9B7YIJDaPcEVh4T7ctWU+hxQv/eG1Dg0=",
},
"Bucket Transactions": {
val: "Tranzacții în găleată",
translated: true,
h: "5hMoGWO5uTeCOujLdFnRx4w3D6Zka/avSxnH14UmJiI=",
},
"Bucket deleted completely": {
val: "Găleată ștersă definitiv",
translated: true,
h: "gBMlSFTWDRRSWZeZ3fuxDhpJnhv2MoF3EvZSwo1BZHg=",
},
"Bucket group": {
val: "Grupul găleții",
translated: true,
h: "SK6rZDww/r+lLW1JUMyv3SXYmxaP95hasIOTSW4WFZY=",
},
"Bucket transaction": {
val: "Tranzacție în găleată",
translated: true,
h: "bEQDTy9m51uIwZj996XKffMPU91hkOBVlNOKpudB2hw=",
},
"Bucket type:": {
val: "Tip găleată:",
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: "Găleți",
translated: true,
h: "fMPIWzGvVEG0t7+bZX1ucgzulk8FaQfqioLgwLsj+oE=",
},
"Buckets Budget Filename": {
/* 'Buckets' refers to the application name */
/* 'Buckets' refers to the application name */
val: "Nume fișier buget Buckets",
translated: true,
h: "PMqvee/qJsh/OYtRi+hbcH4fgl07SR6XM0wx4c1C+sU=",
},
"Buckets License": {
/* 'Buckets' refers to the application name */
/* 'Buckets' refers to the application name */
val: "Licență Buckets",
translated: true,
h: "sym++hSpJ7LeHTQAaiYRAK41eYIw9pfMFO2EbYTHGxo=",
},
"Buckets has crashed. Please restart after submitting a bug report.": {
val: "Buckets s-a oprit. Vă rugăm să reporniți aplicația după ce ați trimis un raport de eroare.",
translated: true,
h: "jPwdFrODeZ3bxIdD+YJ9CFGjCQTqdwQNr9CdB4QTI6U=",
},
"Budget": {
/* Label for budget file selector */
val: "Buget",
translated: true,
h: "zOO4DqNSFLa6Z9vlmfaz8OnwggHn8wJeP058V5mUKbE=",
},
"Budget Specific Settings": {
/* Title for budget settings page */
val: "Setări specifice bugetului",
translated: true,
h: "/RQVOKmoXTgeciF+ohehk19BxpvBXud+3HjfZPPw1v8=",
},
"Budget file": {
val: "Fișier buget",
translated: true,
h: "hbfzyLF9pCBuXZJ4fcHPQVNia5LnROzn4NZFhOhjuG8=",
},
"Budget password:": {
/* Label for bank macro password prompt */
val: "Parolă buget:",
translated: true,
h: "yB5u4awiXu76+/Pw81ZYhBtgYQktcAVe6KU4WreiReU=",
},
"Budget version is not the same": {
val: "Versiunea bugetului este diferită",
translated: true,
h: "PW44KKgM+XqnK2Dvx9Oym2UZ+2CulxBHKs9+C7pHLvQ=",
},
"Budget-specific number format": {
val: "Format numeric specific bugetului",
translated: true,
h: "34SWA6JebUvD6EsRbt8oe1ERhdfOkpdEfhXNZsRVcx4=",
},
"Budgeted": {
val: "Bugetat",
translated: true,
h: "aP72arzLN/j79zGtL8DWE7wcBGciRcWqMOR1aTHJmNo=",
},
"Budgets are too different to merge": {
val: "Bugetele sunt prea diferite pentru combinare",
translated: true,
h: "vkltd5Q5ByrmIraVpTVq0iz8MIHQWKRmddlYq9ahIKk=",
},
"Cable TV": {
val: "Abonament TV",
translated: true,
h: "wISz6Dh0vnQ1Tjhr9GWcJ2rhiif2af6NXsAzEAXYxfo=",
},
"Calculator": {
val: "Calculator",
translated: true,
h: "IiaAFlM5LkjsirGL06i1plXy1FoW75TKBiuin2r4s6Q=",
},
"Can't merge with unresolved conflicts": {
val: "Nu pot combina având conflicte nerezolvate",
translated: true,
h: "5kZvSW2HEqYSqqo9U64Kvkuax9LfssNm+s4I9CvjJQ0=",
},
"Cancel": {
/* Button label */
val: "Anulează",
translated: true,
h: "wHdMGFBg/BNmqwwBSIr4TrXk4fT1kilDHgZN5z4N5sU=",
},
"Cancel Import": {
/* Undo/redo label for canceling import */
val: "anulează importul",
translated: true,
h: "ASPyW8TypDFl1ANm1SIrpmykDdl3rBQDzC+wk4mdZXA=",
},
"Cancel Merge": {
val: "anulează combinarea",
translated: true,
h: "xOUSd4pIBFhoe1VahnIJgCO8yf46iL9AGSBb3bE9Mvc=",
},
"Cancel merge": {
val: "Anulează combinarea",
translated: true,
h: "PtR83Mtr2bGbo1WTP4IRb/XgW5AiIVvzTQD9jFDSoAI=",
},
"Cancel sync": {
val: "Anulează sincronizarea",
translated: true,
h: "8xFWyPShIifEhumOA/PeoTtccm5TTtbQmWFViIGcPQA=",
},
"Car Insurance": {
val: "Asigurare auto",
translated: true,
h: "x3xbGNEH/vHcpYAm2HXTUhRRuz2sb6yfH0gBYFFkqc4=",
},
"Car Maintenance": {
val: "Întreținere automobil",
translated: true,
h: "Lsok3+kX1L7SXMumFWNo+oxBgfmGJcWg1CdSDw6byx8=",
},
"Car Payment": {
val: "Plată pentru automobil",
translated: true,
h: "wp49ZoinRgifzKQ+N9RrJ6LG/9Yw6hkw1RCwXwHc6tA=",
},
"Categories": {
val: "Categorii",
translated: true,
h: "UxClJeKz605AO/90mJ2YOi6N2LJk9D+RJReMlC3TDO8=",
},
"Categorization": {
val: "Categorisire",
translated: true,
h: "DShuYOF3daz37AE7lGCN1TajYU1VyorRCvLwh4bM1r8=",
},
"Categorize": {
val: "Categorisește",
translated: true,
h: "mA6/TefxgXpo2M+OUx/ATLQ4QYHv4t1+8vy3MmV+EQg=",
},
"Category": {
val: "Categorie",
translated: true,
h: "/frArhrZL+bxdiiBKi/1cYdR/tSD7rhbMHJLgHQQdNQ=",
},
"Change": {
/* Noun: name of object describing a change in data */
val: "Schimbă",
translated: true,
h: "prG6DzYDTLinvWF30h7VL2QRdBBwll00hx4flJyEWMc=",
},
"Change Account Type": {
val: "Schimbă tipul contului",
translated: true,
h: "elw7uWDm9Vij1azrwiBbY+VwbjMQuo/xziG393BqGUA=",
},
"Charity": {
val: "Caritate",
translated: true,
h: "5OqY1JRI3brWCHQyu9VDY9hpjXzg1cVB1oQnXLQjZ4U=",
},
"Chat with Matt": {
/* If "Chat with Matt" is too wide, you can translate this as just "Chat" */
val: "Conversați cu Matt",
translated: true,
h: "9nQjbkjkf8l2mX6xeNaU///NYhxxWFqnvTKOmakMmRY=",
},
"Chat...": {
val: "Conversați...",
translated: true,
h: "SytGirG0+cdtbPfjBma/G/tEOt4rdOj4mnjcaWsTbt8=",
},
"Check For Updates...": {
val: "Caută actualizări...",
translated: true,
h: "S/1p0syaOMqjAbHpmZa6gWaIh/9e29QR2cRJhiMadz0=",
},
"Check for Updates": {
val: "Caută actualizări",
translated: true,
h: "6vtxqhyfiDaIXgTBH0pdoPzTGftDDEoRFNGU082PhRk=",
},
"Check for updates": {
/* Label on button that causes budgets to sync between devices */
val: "Caută actualizări",
translated: true,
h: "MerO0fg7nnpQBvZ87GDbTKrOJZo+aGSx6qiQEeVAmXw=",
},
"Checking for updates...": {
val: "Se caută actualizări...",
translated: true,
h: "wjjhyYhYEFdJWUmwdJIEdxm0iAq2bwrWU79ANObzzZY=",
},
"Choose": {
val: "Alegeți",
translated: true,
h: "UeJgTiqvSbyjLXgzersyKp/deJ/06L+xXts8Eq4g6Jk=",
},
"Choose a file ending in either .ynab4 or .ymeta": {
val: "Alegeți un fișier cu extensia .ynab4 sau .ymeta",
translated: true,
h: "Tym1GWz52+2AgA4qwsbqknBtvR9QYYGN2y5oYYQ7yZQ=",
},
"Choose save location": {
val: "Alegeți locul unde să salvați",
translated: true,
h: "3GFv8eEkA96n0cetdd4cUVIl0CtfTQCk4q9Z09uSE0Y=",
},
"Choose which of the files on this device you want to make available to your other devices.": {
val: "Alegeți ce fișiere de pe acest dispozitiv vreți să faceți disponibile pentru celelate dispozitive ale dumneavoastră.",
translated: true,
h: "3Vyn9u6I123YU1+p+9TdGJ3wnrJHbwswJEZPYB1lrYU=",
},
"Choose...": {
/* Label for choosing backup folder */
/* Label for choosing a budget file */
/* Label for choosing a backup file */
val: "Alegeți...",
translated: true,
h: "mitI0a0UwvINcTM1Hb0R9fSY5KucYuyfjuNiySSQmDY=",
},
"Cleared": {
/* Tooltip text indicating that a transaction has cleared. */
val: "Procesată",
translated: true,
h: "j1SmbPuDDBP04XfOH9NNFCDzXmB9xAzSoVG7RcHcdBg=",
},
"Cleared balance": {
/* Label for balance minus uncleared transactions */
val: "Sold procesate",
translated: true,
h: "3SpY0eBe4gJ1WtupFnV904/a1Xlfx5Y4ybAdHQGzGV0=",
},
"Close Account": {
val: "Închide cont",
translated: true,
h: "qTJEf8mdhLx1bU9LZPYaTtrT8pMLqxemoL/YqbhjESI=",
},
"Close Window": {
val: "Închide fereastră",
translated: true,
h: "hrPxvP/hrVgtNNTMX4sv5sljx57neTy+2p0U1TKGuCE=",
},
"Close account": {
val: "Închide cont",
translated: true,
h: "7HdV8X8++teDNW33urE2eccDw3VLdSpvII89zC/sfu4=",
},
"Closed": {
/* ! Label for list of closed accounts */
val: "Închise",
translated: true,
h: "8pZrnvzAUQTJhDN/XX31DLvx0wIs1Ww3fV6pktEKEHs=",
},
"Clothing": {
val: "Îmbrăcăminte",
translated: true,
h: "as4CQmPu3VF2LxSvA5djgiAPatdFRqwmOt0NiHJCe7E=",
},
"Confirm password:": {
val: "Confirmați parola:",
translated: true,
h: "Px/rLFgkE/Sv1Z+Xm0frULVV3lxvrEc7ABJaDzmv670=",
},
"Conflicts": {
val: "Conflicte",
translated: true,
h: "W04VkIj+XKS1rPtY7a6cQITUa157onpN6NAVlO9MknY=",
},
"Connect": {
val: "Conectează",
translated: true,
h: "pCLQy6ZAsZnJ3ff5r+iD+O2vHQhIJEEUHUhiY1NrMP0=",
},
"Connect to bank": {
val: "Conectează-te la bancă",
translated: true,
h: "0T7eA3oFvMxyPIOAkMZ2rDpJxQVORgxrLqrDx87L1ZY=",
},
"Connected": {
val: "Connectat",
translated: true,
h: "fV/VOfsqBR+vyqF2tRjG6qsC8ufS/QDaTRaUee+UEMA=",
},
"Connecting...": {
val: "Conectare...",
translated: true,
h: "fYdj0RfOQMPN3n28gswFnK4aOvozPH0hqm9oqd+NcWI=",
},
"Connection corrupted. Please delete and re-create.": {
/* Error when an invalid SimpleFIN connection is attempted */
val: "Conexiune coruptă. Vă rugăm să ștergeți și să recreați.",
translated: true,
h: "YjH9IxACkJ2e9cq+MYI3I6l3RmOWZPEBAwzjq3W7x0s=",
},
"Connection saved!": {
val: "Conexiune salvată!",
translated: true,
h: "wAgyeIQsbaI/kFPgBf8sWlKK1mf/VcP7BjHpC9TNYuc=",
},
"Copy": {
val: "Copiază",
translated: true,
h: "T2DR4UKv+pyVWY8GzF/WWjk5XqMXgZ0gDyXkZmYczHw=",
},
"Create Account": {
/* Undo/redo label for creating an account */
/* Undo/redo label for creating an account */
val: "creează cont",
translated: true,
h: "0N2I0sNdMLVk7zC9FqlNYoA1G6RDgQDvQErp/TjAnRA=",
},
"Create Backup": {
val: "Creează o copie de rezervă",
translated: true,
h: "tUZEq5sa8Ggh6lIgsWzX8Blj6/unJ8dhl9sKpfwxRYY=",
},
"Create Backup and Start Over": {
val: "Creează o copie de rezervă și ia-o de la capăt",
translated: true,
h: "55tb3CtVKNADQpK4SdoMMPQvHu1ftBosd/dP8lFHV/o=",
},
"Create Macro": {
val: "Creează macrocomandă",
translated: true,
h: "F6PDykaoACWoqQ+oKUyJyhERAe1FjT6A3OkxL+S5l8k=",
},
"Create Template": {
val: "Creează un șablon",
translated: true,
h: "gAbtUL3vhxk+yCSp7fzAF4Z9tV0I4x7Uq5xDJ4nm2Uk=",
},
"Create Transaction": {
val: "Creează o tranzacție",
translated: true,
h: "G5NDAP857MBDE66GWUREcFAJc2pCogndYa6y+m6PRfE=",
},
"Create budget password:": {
val: "Creează o parolă pentru buget:",
translated: true,
h: "Bf9XVrpN9UpVSKpZNRpBUw/IaFjMkNCmH4gpAfhYFkY=",
},
"Create macro": {
val: "Creează macrocomandă",
translated: true,
h: "9xZZAswDH8zePPUhfsaSEDJ21GU1yhILKhDWtvnUlr0=",
},
"Create new account": {
val: "Creează un cont nou",
translated: true,
h: "SmoVFbeAWSO4cW1YQJbuDJQz8kenVz5++WTJEkS6Vos=",
},
"Create or manage account": {
/* Link to manage relay accounts */
val: "Creează sau gestionează cont",
translated: true,
h: "U5lOs+hLfJ8gBJoXR9ToFOsg130hRzN7A4AauACQHHY=",
},
"Currency symbol": {
/* Label for currency symbol setting */
val: "Simbol pentru valută",
translated: true,
h: "/zaBMXJh747DLHbqocisO7iV5wDJpVTSCx8RhH7Ye0E=",
},
"Current version": {
/* Label for current application version */
val: "Versiune curentă",
translated: true,
h: "lVqFstk3jMWPnA1laudxoN7T6PXUVe365RE2LqCMZmA=",
},
"Custom": {
/* A label for choosing a custom date range */
val: "Personalizat",
translated: true,
h: "npcV1SQQyG8XsJlGwbsserjaxIIkVCtt9ZFBODiihSI=",
},
"Cut": {
val: "Decupează",
translated: true,
h: "+kuX06pgC809fwr+5h9VbC8sVgVWo6EXgg6bzfXXtJs=",
},
"Data": {
val: "Date",
translated: true,
h: "nb/gDaJJpEyxUczsooYPcWRNvDVzBJLOxevxBEAPM+o=",
},
"Date Posted": {
val: "Data publicării",
translated: true,
h: "3A+vhaBB21UASdnwmNYVGMV9qH/U43D3DCsVSXlWasY=",
},
"Date format": {
val: "Formatul datei",
translated: true,
h: "fY1FnR2YTcyORx9p/4BdLTjtjH1FNW35jtGy64ltO4E=",
},
"Date range": {
val: "Interval de timp",
translated: true,
h: "Byx38NxnaOdzvBIgWlDoyRZR5IEPJ329lwDnivHzJik=",
},
"Debt": {
/* Label for a total debt amount */
/* Name of bucket group for debts */
val: "Datorii",
translated: true,
h: "y9kslXhW17gMMFZ9Dq8g/tabfINzlmzT+39QNbWiWGA=",
},
"Debugger": {
val: "Depanator",
translated: true,
h: "4ScsdyOtUZsKH/cENJNnmyZFMuIjtHzPrPhrpnc+kOk=",
},
"Debugging": {
val: "Depanare",
translated: true,
h: "5qYhotBwdyjpp1WiJlT+T5wf/rpbKu5NEGOrxJMpz2U=",
},
"Decimal delimiter": {
val: "Delimitator zecimal",
translated: true,
h: "Qjuny9lynn/v2WJwTnYLdXQb/ne+0Q2TBiSM+KFIrIU=",
},
"Default": {
/* Label for default backup folder location */
val: "Implicit",
translated: true,
h: "TKDg5zIpVAzBCbQHtW0yWzTe9w8z+EmC7VPeZA2B70k=",
},
"Default number format": {
/* Label for application number formatting preference */
val: "Format numeric implicit",
translated: true,
h: "mgzNoP6jlMs5CPedg7OHyJuqrwEkQlj6DduekmeqfCY=",
},
"Delete": {
val: "Șterge",
translated: true,
h: "sm3jcrSw6qxgICiEpy25imvm6QNueF6oZ+oBxfeSEJg=",
},
"Delete Account": {
val: "Șterge cont",
translated: true,
h: "zTJTocYLEbNVwJ0ojyPCB6M0JpGx6fe6AZHWtuVJv0M=",
},
"Delete Connection": {
val: "Șterge conexiune",
translated: true,
h: "o6bxlUpjZFFTleiRLA4ykeB3yEHsAiXW9usUdJ9jh1g=",
},
"Delete Group": {
val: "Șterge grup",
translated: true,
h: "VaefOk8g8N64N+Td8TEorhhMQBe0AuWmfRz7u7+Q1Ko=",
},
"Delete Macro": {
val: "Șterge macrocomandă",
translated: true,
h: "Qb7shd6fRLybaDzPvdr0Z4VfVek/fHVV556kEcNZrH8=",
},
"Delete Transactions": {
val: "Șterge tranzacții",
translated: true,
h: "5rAWRNk97CWy9OfDP5IWSE/T2Ao461w7C3z/IDV154I=",
},
"Delete Unknown Account": {
val: "Șterge cont necunoscut",
translated: true,
h: "SzZ+N6/hpntSyAoyuLxzaipQcinkrh5c33ceQdtoUcE=",
},
"Delete all": {
val: "Șterge tot",
translated: true,
h: "nKzti1takFUxZyWfLTGqgvdL3dJMx6CdNwVfBH1jUYE=",
},
"Deleted": {
val: "Șters",
translated: true,
h: "qaM7+YriKFk63EE2I46KNlMjYgR2jOP4JZMTj4yIti4=",
},
"Delimiter": {
val: "Delimitator",
translated: true,
h: "VDesNaCayRIGFHLEXOjH3Eev3D/EzM6/dVsl7zN/+Mo=",
},
"Description": {
val: "Descriere",
translated: true,
h: "bg0ZDIR+z+PEkinc/ZyqkERMsVZcFFm3NhQoIqZH+WM=",
},
"Details": {
/* Label for sharing avenue details */
val: "Detalii",
translated: true,
h: "68e/QPEuI36iIEcTWmKDrVU9KBReQ3EjFzF1F06KQMA=",
},
"Device": {
val: "Dispozitiv",
translated: true,
h: "SljXcmF5cBUDvagtLmL5aNIz++tnIbf5qjS1cxxEI1I=",
},
"Diapers": {
val: "Scutece",
translated: true,
h: "Vr53xwIeHjIIuMymcxrQ3l1RsDE6ra+ZTFT4dbR/rlI=",
},
"Disable Macro": {
val: "Dezactivează macrocomandă",
translated: true,
h: "k0HEkS8+oirJJHylM2fcT1D1/IqnGFVX3cGlU3d3G50=",
},
"Disconnected": {
val: "Deconectat",
translated: true,
h: "8d3FMs2ZCPYbCLDzsVcqXsv6b5vDilOwJCEAevNsZDM=",
},
"Do both devices show the same pairing codes?": {
val: "Afișează ambele dispozitive același cod de împerechere?",
translated: true,
h: "w66hJr+u8QSrtvG+XC0n5CLXFsJuU1YfxxNPzX6b/z8=",
},
"Done": {
val: "Terminat",
translated: true,
h: "FlUsJYC76LgtNYLenrPiDvDgAVk3wLT14rwyk2hHYiY=",
},
"Download Update": {
val: "Descarcă actualizarea",
translated: true,
h: "OvekDBh71chOkbTXqPs/V/x0lNbpc668s4hyXRF5G+I=",
},
"Downloading update...": {
val: "Se descarcă actualizarea...",
translated: true,
h: "vTHXpZeFxjQhKPwUQPCm+eHcyYR6YjSmIm4mtV/5iTE=",
},
"Duplicate Window": {
val: "Duplică fereastra",
translated: true,
h: "tjwFTBARBKQ5uC9Fh0zm7ag/RViV95pptJBJn9eVqHE=",
},
"Duplicate of existing transaction": {
/* Label for an imported transaction that is a duplicate of an existing one */
val: "Duplicat al unei tranzacții existente",
translated: true,
h: "6d7BweiCObuFrgVXiVOkjVaHEKwbPSJY2AbNcT/7508=",
},
"EULA accepted": {
val: "EULA acceptată",
translated: true,
h: "MZZW8mGJoOJ5ehMdPPve2szfe+yi7Du06hSKo61py9Y=",
},
"EULA not accepted": {
val: "EULA neacceptată",
translated: true,
h: "FVsbix5CHwscF/kgCdBTZYPnKTpIN55xFHleEFK6Oqw=",
},
"EXPERIMENTAL Buckets Macro Maker": {
/* 'Buckets' refers to the application name */
val: "EXPERIMENTAL Creator macrocomenzi Buckets",
translated: true,
h: "NZPVXQ+Dw1vv0fLXY+Z4R1KiEkXjDZtSmY3tVz5L1VI=",
},
"Eating out": {
val: "Ieșiri la restaurant",
translated: true,
h: "aiQggrM+Wb8WtkoJykeSDnNiCBgzGqVGc1Hvkf5Uzg8=",
},
"Edit": {
val: "Editare",
translated: true,
h: "9+ZynTDPePvsJX4rW8Mn0wEzk0GRQ+udON01NKHVsQU=",
},
"Electricity": {
val: "Electricitate",
translated: true,
h: "D85G++Fy1hUUGZfHiKAUcNRlXmLcdkKK7RtxnwJ110U=",
},
"Enable Macro": {
val: "Activează macrocomanda",
translated: true,
h: "9SWFr96CNVD21JQ30lw4cj1JCAZ44RNlKkDzQJ/RyuE=",
},
"Enabled": {
val: "Activat",
translated: true,
h: "hHztbKAreElTc7ttNUovJFG0DIq9xfILBM+1aNV8x2Q=",
},
"Ending Balance": {
val: "Sold final",
translated: true,
h: "bwan2qqqdDloluCkgp+UPYWSAeOQk9zkaNwb2p0kUDk=",
},
"Ending amount:": {
val: "Sumă finală:",
translated: true,
h: "0IUvXk9nogxjdL1n0VZPrxcMOUZODNXMlGrlpyXq8bI=",
},
"Ending balance": {
val: "Sold final",
translated: true,
h: "aAtJw4Tz1ZrB97s3K84TZqaiG7f+B04ZFnxZx9ryHWQ=",
},
"Enter License...": {
val: "Introduceți licența...",
translated: true,
h: "A+/eZ8qTAh97iBouJPInRkCg7F0nOkteYEBO7+lFHHA=",
},
"Error": {
val: "Eroare",
translated: true,
h: "/ErBlknw7o83xx0uIDCjdDA4u5bAwnNZuhFd2GV1Zcw=",
},
"Error during import": {
val: "Eroare în timpul importului",
translated: true,
h: "BiI3zjvgdX5vXe4kX0mS7AvEFln+iIdMmLNX1xeQqLU=",
},
"Error during merge": {
val: "Eroare în timpul combinării",
translated: true,
h: "PoE7TMsxGW9dp4u1juziybXV1VV8Wgv9ejdrAoUVynk=",
},
"Error fetching data": {
val: "Eroare în timpul preluării datelor",
translated: true,
h: "z94B0956dECmmaMVLZFW0oZMVtA92etw+2ZqumR4K9Q=",
},
"Error importing": {
val: "Eroare la import",
translated: true,
h: "rekzwWcY0HRZEhFebX1fJrp4aDJ/NTPxIwWaCYAk+7k=",
},
"Error parsing response": {
val: "Eroare la analiza importului",
translated: true,
h: "PsIRbom+m8Y5OIEPW2rzJYVlNA2NQrZmEQnpW7Y/9KI=",
},
"Error restoring from backup": {