forked from buckets/translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
es.tsx
2775 lines (2771 loc) · 81.5 KB
/
es.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: "osanchez",
href: "https://osanchez.dev", /* optional */
},
{
name: "Rafael Sillero",
href: "https://github.com/Rsilnav",
},
{
name: "Laureano Rodrigo",
href: "", /* optional */
}
// {
// name: "",
// href: "", /* optional */
// },
];
const messages:IMessages = {
"\n Though filling out this form is preferrable, you can also email [email protected]\n ": {
val: "\n Aunque es preferible llenar este formulario, puedes enviar un correo electrónico a [email protected] \n ",
translated: true,
h: "05fPQ/cX0e4UXnYsbNTo8b6FUwq/WZ1URc7ixr6WlV8=",
},
"(Drop files or click)": {
val: "(Arrastra los archivos o click aquí)",
translated: true,
h: "cn8vjUpkolK+X1qsHPyR11Qj7uQWZVR6eWnhPRb/zfw=",
},
"(If you want a response)": {
val: "(Si quieres una respuesta)",
translated: true,
h: "Ij4mQm0L5WO4Iunvl3fKwbhLwjTodc3Chq81GsFM+T0=",
},
"(optional)": {
val: "(opcional)",
translated: true,
h: "njVpYkgCdiB755Pxnsk1D8GELOWqw1mBBYG+YQr7e98=",
},
"/mo": {
val: "/mes",
translated: true,
h: "ggq7na5vMB1wOjQQo0Wq0o7ctwbMUiiJr1tRRKphHss=",
},
"A sync is already in progress": {
val: "Hay una sincronización en progreso",
translated: true,
h: "z6CqgxENo0xxB0LPp8P8rmnLPp1m2NElecEaJM8GDfI=",
},
"About Buckets": {
/* 'Buckets' refers to the application name */
val: "Acerca de Buckets",
translated: true,
h: "9bzPsx+kCkNUeLTSVjaygyWCkm3VCdsFaAFRvdS+xEU=",
},
"Account": {
val: "Cuenta",
translated: true,
h: "ihCgI4A9UaFZ63kuiKXqFHoGsze2dYwzpgSVU0clMfQ=",
},
"Account Transactions": {
val: "Transacciones de cuenta",
translated: true,
h: "GPJhFDki3xJdCOMqCkqdUDX7SfEZcg9wGee8KMIuIno=",
},
"Account and transactions deleted": {
val: "La cuenta y las transacciones fueron borradas",
translated: true,
h: "iwS2+dAqfDOEtU5SUm1d1oPFTe0+JT5NCm4nH2SrglE=",
},
"Account closed": {
val: "Cuenta eliminada",
translated: true,
h: "l9xs5wLKF3KIgunL1SJh9r9XDYpWkC7LYrL4KUUFm3M=",
},
"Account deleted completely": {
val: "Cuenta borrada completamente",
translated: true,
h: "LswJ+SxzkHRVy6+Et4Wga6r/Io1P6MBlTiwdjUAUj48=",
},
"Account name": {
val: "Nombre de la cuenta",
translated: true,
h: "Wo+ZnjRTxGkow1m4BGCavACj82/UajUNs6oLDXB++sU=",
},
"Accounts": {
val: "Cuentas",
translated: true,
h: "1oHDkv2zB1yiCABVTWBY5oX4Ccu36nJBCG7Q+JVg8TA=",
},
"Accounts in side bar": {
val: "Cuentas en la barra lateral",
translated: true,
h: "BsDoJS2nPDKya2do9fNF2o2jl0mIUxjdBycHbmsu6HY=",
},
"Actions": {
val: "Acciones",
translated: true,
h: "qm2CvbPMHZpeVCriZp/vJ2kAGatdeyDxfZ8TMaapQvo=",
},
"Activity": {
val: "Actividad",
translated: true,
h: "jfKSYDWvDxzcenHtImEM9HokIu7tBJbMki25BNTynTI=",
},
"Actual Size": {
val: "Tamaño real",
translated: true,
h: "k1ZfUj7bmT4XwiALRlZo7ztl2d+e7JcLt3WCnvjpBYg=",
},
"Add": {
val: "Agregar",
translated: true,
h: "sHHJQ9jaFQD0ZjykXnD1vKiFV5C98TviMmSgajkSEXY=",
},
"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 */
val: "Todos los archivos",
translated: true,
h: "xP+YqxC7o4/NEWANvugOAGzJXIF368ZNwle6rV7nVRg=",
},
"Allow new device requests": {
val: "Permitir peticiones de un nuevo dispositivo",
translated: true,
h: "+ADhW+DC+iBwee59O+D2to40KBQLqc3YMIxy7akwYiQ=",
},
"Amazon.com Reconciliation": {
val: "Conciliación con Amazon.com",
translated: true,
h: "SS/vhEAqfP5cTcprv5/4dDYZCEsTIMySGfXEngOoMj0=",
},
"Amount": {
val: "Cantidad",
translated: true,
h: "DHNNaJF4hWTWIFdaMdMhUT4aSdti7ZfaNexABzxWWzc=",
},
"Amount of money over-allocated in buckets.": {
val: "Cantidad sobrepasada en los cubos.",
translated: true,
h: "kFucvPefN9Kae7dArnle8i0rTZZq1U+3d8w81lDNVKw=",
},
"Analysis": {
val: "Análisis",
translated: true,
h: "+LNAOPSLW2rpFCrT+U1suhdnoYyZa1k8ALddRlddDlI=",
},
"Animation": {
/* Label for application preference enabling/disabling animations */
val: "Animación",
translated: true,
h: "Vk4XaMgXNIEY4+Gcal1n+qdnamgr4Q5af/+wzFRoIHU=",
},
"Any other monthly bills you have?": {
val: "¿Tienes algún otro recibo mensual?",
translated: true,
h: "rmA9D10bvYOVj3U4kE7U6jALpz7WpqBJTv6HZaI4T/M=",
},
"Application preferences": {
val: "Preferencias de la aplicación",
translated: true,
h: "PIhGW3aVUScG87KKiDCF4fLhudwZ3eYbz7n7msHJU1U=",
},
"Assets": {
val: "Activos",
translated: true,
h: "VBLBowZo0Lx8GWGbWVcEEFzSxnwQmcEOSxwtD5yIhwQ=",
},
"Attached files are too large.": {
val: "Los archivos adjuntos son demasiado grandes.",
translated: true,
h: "HfDI7uw+P4uLUPkDu0rxQhxJqjqcriWmD9EWYaiUqvY=",
},
"Average": {
val: "Promedio",
translated: true,
h: "zLxQhptvlIYtt0l/prvWMqnsQHh7N1gxh33WeorRi2w=",
},
"Avg:": {
val: "Promedio:",
translated: true,
h: "EVMZyhHQEFPlI2ib8VqTJo25bJBk8gHsgZR1SZ2Jcj0=",
},
"Babysitting": {
val: "Niñera",
translated: true,
h: "yOfOnHbye/Uhao1fb5jtfP4z0XPyc757kdBFt32Uwrc=",
},
"Balance": {
val: "Saldo",
translated: true,
h: "azvDWgVPY349dq4q8mbtpDhehRsFKYKNzMk/TcuOvEQ=",
},
"Balance:": {
val: "Saldo:",
translated: true,
h: "hHHAAGXs0oscbD5jkMQSQUQ5sLsgo/sPaBumUBAq+CA=",
},
"Birthdays": {
val: "Cumpleaños",
translated: true,
h: "rzI9rIMV5VD86pAzRZf+uFAA8rWYhz1rIH5N9fDesSk=",
},
"Break Import Links": {
val: "Break Import Links",
translated: false,
h: "XQYKw3qJ7xKoR/DX6K6NdZxbJLHVJhxy9mFVV8r1ZU4=",
},
"Bring All to Front": {
val: "Traer todo al frente",
translated: true,
h: "vXNLSncC5dTsDdfhZY5dhbev+Y3PpqQEy1fwxTkGWU0=",
},
"Bucket": {
val: "Cubo",
translated: true,
h: "APPSgbsmF5H9B7YIJDaPcEVh4T7ctWU+hxQv/eG1Dg0=",
},
"Bucket Transactions": {
val: "Bucket Transactions",
translated: false,
h: "5hMoGWO5uTeCOujLdFnRx4w3D6Zka/avSxnH14UmJiI=",
},
"Bucket deleted completely": {
val: "Cubo borrado definitivamente",
translated: true,
h: "gBMlSFTWDRRSWZeZ3fuxDhpJnhv2MoF3EvZSwo1BZHg=",
},
"Bucket type:": {
val: "Tipo de cubo:",
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: "Cubos",
translated: true,
h: "fMPIWzGvVEG0t7+bZX1ucgzulk8FaQfqioLgwLsj+oE=",
},
"Buckets Budget Filename": {
/* 'Buckets' refers to the application name */
val: "Nombre de archivo",
translated: true,
h: "PMqvee/qJsh/OYtRi+hbcH4fgl07SR6XM0wx4c1C+sU=",
},
"Buckets License": {
/* 'Buckets' refers to the application name */
/* 'Buckets' refers to the application name */
val: "Licencia para Buckets",
translated: true,
h: "sym++hSpJ7LeHTQAaiYRAK41eYIw9pfMFO2EbYTHGxo=",
},
"Buckets has crashed. Please restart after submitting a bug report.": {
val: "Buckets se cerró inesperadamente. Por favor reinicia para enviar un informe de errores.",
translated: true,
h: "jPwdFrODeZ3bxIdD+YJ9CFGjCQTqdwQNr9CdB4QTI6U=",
},
"Budget": {
val: "Presupuesto",
translated: true,
h: "zOO4DqNSFLa6Z9vlmfaz8OnwggHn8wJeP058V5mUKbE=",
},
"Budget Specific Settings": {
/* Title for budget settings page */
val: "Preferencias especificas para el presupuesto",
translated: true,
h: "/RQVOKmoXTgeciF+ohehk19BxpvBXud+3HjfZPPw1v8=",
},
"Budget password:": {
/* Label for bank macro password prompt */
val: "Contraseña del presupuesto:",
translated: true,
h: "yB5u4awiXu76+/Pw81ZYhBtgYQktcAVe6KU4WreiReU=",
},
"Budgeted": {
val: "Presupuestado",
translated: true,
h: "aP72arzLN/j79zGtL8DWE7wcBGciRcWqMOR1aTHJmNo=",
},
"CSV Account": {
val: "Cuenta CSV",
translated: true,
h: "iUtlYMX6nlvjb8WPFElRbcnOQ/BXPc6BjaHKp6b6GUM=",
},
"CSV Fields": {
val: "Campos CSV",
translated: true,
h: "oqAayNv4L3OeWfsN66FDAh9MWIsR//voLRTEotp3GUQ=",
},
"Cable TV": {
val: "TV por cable",
translated: true,
h: "wISz6Dh0vnQ1Tjhr9GWcJ2rhiif2af6NXsAzEAXYxfo=",
},
"Calculator": {
val: "Calculadora",
translated: true,
h: "IiaAFlM5LkjsirGL06i1plXy1FoW75TKBiuin2r4s6Q=",
},
"Cancel": {
/* Button label */
val: "Cancelar",
translated: true,
h: "wHdMGFBg/BNmqwwBSIr4TrXk4fT1kilDHgZN5z4N5sU=",
},
"Cancel sync": {
val: "Cancelar sincronización",
translated: true,
h: "8xFWyPShIifEhumOA/PeoTtccm5TTtbQmWFViIGcPQA=",
},
"Car Insurance": {
val: "Seguro de coche",
translated: true,
h: "x3xbGNEH/vHcpYAm2HXTUhRRuz2sb6yfH0gBYFFkqc4=",
},
"Car Maintenance": {
val: "Mantenimiento del vehiculo",
translated: true,
h: "Lsok3+kX1L7SXMumFWNo+oxBgfmGJcWg1CdSDw6byx8=",
},
"Car Payment": {
val: "Pago del coche",
translated: true,
h: "wp49ZoinRgifzKQ+N9RrJ6LG/9Yw6hkw1RCwXwHc6tA=",
},
"Categorization": {
val: "Categorización",
translated: true,
h: "DShuYOF3daz37AE7lGCN1TajYU1VyorRCvLwh4bM1r8=",
},
"Categorize": {
val: "Categorizar",
translated: true,
h: "mA6/TefxgXpo2M+OUx/ATLQ4QYHv4t1+8vy3MmV+EQg=",
},
"Category": {
val: "Categoría",
translated: true,
h: "/frArhrZL+bxdiiBKi/1cYdR/tSD7rhbMHJLgHQQdNQ=",
},
"Change Account Type": {
val: "Cambiar tipo de cuenta",
translated: true,
h: "elw7uWDm9Vij1azrwiBbY+VwbjMQuo/xziG393BqGUA=",
},
"Channel": {
/* Label for sharing channel name */
val: "Canal",
translated: true,
h: "6McSbB26j6gQAt0v7ByUJ/jiHqBZ2yz4LSOmbKx3YvY=",
},
"Channels": {
val: "Canales",
translated: true,
h: "3WbePrysEPFoKdtJSdWovHXxPrOsBkkHhJdOkxTq8wQ=",
},
"Charity": {
val: "Donativos",
translated: true,
h: "5OqY1JRI3brWCHQyu9VDY9hpjXzg1cVB1oQnXLQjZ4U=",
},
"Chat with Matt": {
/* If "Chat with Matt" is too wide, you can translate this as just "Chat" */
val: "Charlar con Matt",
translated: true,
h: "9nQjbkjkf8l2mX6xeNaU///NYhxxWFqnvTKOmakMmRY=",
},
"Chat...": {
val: "Charlar...",
translated: true,
h: "SytGirG0+cdtbPfjBma/G/tEOt4rdOj4mnjcaWsTbt8=",
},
"Check For Updates...": {
val: "Buscar actualizaciones...",
translated: true,
h: "S/1p0syaOMqjAbHpmZa6gWaIh/9e29QR2cRJhiMadz0=",
},
"Check for Updates": {
val: "Buscar actualizaciones",
translated: true,
h: "6vtxqhyfiDaIXgTBH0pdoPzTGftDDEoRFNGU082PhRk=",
},
"Checking for updates...": {
val: "Buscando actualizaciones...",
translated: true,
h: "wjjhyYhYEFdJWUmwdJIEdxm0iAq2bwrWU79ANObzzZY=",
},
"Choose a file ending in either .ynab4 or .ymeta": {
val: "Selecciona un archivo con extensión .ynab4 o .ymeta",
translated: true,
h: "Tym1GWz52+2AgA4qwsbqknBtvR9QYYGN2y5oYYQ7yZQ=",
},
"Cleared": {
/* Tooltip text indicating that a transaction has cleared. */
val: "Conciliado",
translated: true,
h: "j1SmbPuDDBP04XfOH9NNFCDzXmB9xAzSoVG7RcHcdBg=",
},
"Cleared balance": {
/* Label for balance minus uncleared transactions */
val: "Saldo conciliado",
translated: true,
h: "3SpY0eBe4gJ1WtupFnV904/a1Xlfx5Y4ybAdHQGzGV0=",
},
"Click the \"Set mapping\" to continue.": {
val: "Click the \"Set mapping\" to continue.",
translated: false,
h: "17QBrVZk8kjbKoqmqsbEBBHyjcoru22TcYanag65Jrw=",
},
"Close Account": {
val: "Cerrar cuenta",
translated: true,
h: "qTJEf8mdhLx1bU9LZPYaTtrT8pMLqxemoL/YqbhjESI=",
},
"Close Window": {
val: "Cerrar ventana",
translated: true,
h: "hrPxvP/hrVgtNNTMX4sv5sljx57neTy+2p0U1TKGuCE=",
},
"Close account": {
val: "Cerrar cuenta",
translated: true,
h: "7HdV8X8++teDNW33urE2eccDw3VLdSpvII89zC/sfu4=",
},
"Closed": {
/* ! Label for list of closed accounts */
val: "Cerrado",
translated: true,
h: "8pZrnvzAUQTJhDN/XX31DLvx0wIs1Ww3fV6pktEKEHs=",
},
"Clothing": {
val: "Ropa",
translated: true,
h: "as4CQmPu3VF2LxSvA5djgiAPatdFRqwmOt0NiHJCe7E=",
},
"Confirm password:": {
val: "Confirmar contraseña:",
translated: true,
h: "Px/rLFgkE/Sv1Z+Xm0frULVV3lxvrEc7ABJaDzmv670=",
},
"Connect": {
val: "Conectar",
translated: true,
h: "pCLQy6ZAsZnJ3ff5r+iD+O2vHQhIJEEUHUhiY1NrMP0=",
},
"Connect to bank": {
val: "Conectar con el banco",
translated: true,
h: "0T7eA3oFvMxyPIOAkMZ2rDpJxQVORgxrLqrDx87L1ZY=",
},
"Connected": {
val: "Conectado",
translated: true,
h: "fV/VOfsqBR+vyqF2tRjG6qsC8ufS/QDaTRaUee+UEMA=",
},
"Connecting...": {
val: "Conectando...",
translated: true,
h: "fYdj0RfOQMPN3n28gswFnK4aOvozPH0hqm9oqd+NcWI=",
},
"Connection corrupted. Please delete and re-create.": {
/* Error when an invalid SimpleFIN connection is attempted */
val: "Conexión inválida. Por favor, bórrala y créala de nuevo",
translated: true,
h: "YjH9IxACkJ2e9cq+MYI3I6l3RmOWZPEBAwzjq3W7x0s=",
},
"Connection saved!": {
val: "¡Conexión guardada!",
translated: true,
h: "wAgyeIQsbaI/kFPgBf8sWlKK1mf/VcP7BjHpC9TNYuc=",
},
"Copy": {
val: "Copiar",
translated: true,
h: "T2DR4UKv+pyVWY8GzF/WWjk5XqMXgZ0gDyXkZmYczHw=",
},
"Create Account": {
val: "Crear Cuenta",
translated: true,
h: "0N2I0sNdMLVk7zC9FqlNYoA1G6RDgQDvQErp/TjAnRA=",
},
"Create Backup": {
val: "Crear copia de seguridad",
translated: true,
h: "tUZEq5sa8Ggh6lIgsWzX8Blj6/unJ8dhl9sKpfwxRYY=",
},
"Create Backup and Start Over": {
val: "Crear copia de segurtidad y empezar de cero",
translated: true,
h: "55tb3CtVKNADQpK4SdoMMPQvHu1ftBosd/dP8lFHV/o=",
},
"Create Macro": {
val: "Crear Macro",
translated: true,
h: "F6PDykaoACWoqQ+oKUyJyhERAe1FjT6A3OkxL+S5l8k=",
},
"Create Template": {
val: "Crear Plantilla",
translated: true,
h: "gAbtUL3vhxk+yCSp7fzAF4Z9tV0I4x7Uq5xDJ4nm2Uk=",
},
"Create Transaction": {
val: "Crear Transacción",
translated: true,
h: "G5NDAP857MBDE66GWUREcFAJc2pCogndYa6y+m6PRfE=",
},
"Create budget password:": {
val: "Crear password para el presupuesto:",
translated: true,
h: "Bf9XVrpN9UpVSKpZNRpBUw/IaFjMkNCmH4gpAfhYFkY=",
},
"Create macro": {
val: "Crear macro",
translated: true,
h: "9xZZAswDH8zePPUhfsaSEDJ21GU1yhILKhDWtvnUlr0=",
},
"Create new account": {
val: "Crear nueva cuenta",
translated: true,
h: "SmoVFbeAWSO4cW1YQJbuDJQz8kenVz5++WTJEkS6Vos=",
},
"Currency symbol": {
/* Label for currency symbol setting */
val: "Simbolo de moneda",
translated: true,
h: "/zaBMXJh747DLHbqocisO7iV5wDJpVTSCx8RhH7Ye0E=",
},
"Cut": {
val: "Cortar",
translated: true,
h: "+kuX06pgC809fwr+5h9VbC8sVgVWo6EXgg6bzfXXtJs=",
},
"Date Posted": {
val: "Fecha Valor",
translated: true,
h: "3A+vhaBB21UASdnwmNYVGMV9qH/U43D3DCsVSXlWasY=",
},
"Date format": {
val: "Formado de fecha",
translated: true,
h: "fY1FnR2YTcyORx9p/4BdLTjtjH1FNW35jtGy64ltO4E=",
},
"Debt": {
/* Label for a total debt amount */
/* Name of bucket group for debts */
val: "Deuda",
translated: true,
h: "y9kslXhW17gMMFZ9Dq8g/tabfINzlmzT+39QNbWiWGA=",
},
"Debugger": {
val: "Depurador",
translated: true,
h: "4ScsdyOtUZsKH/cENJNnmyZFMuIjtHzPrPhrpnc+kOk=",
},
"Decimal delimiter": {
val: "Carácter separador de decimales",
translated: true,
h: "Qjuny9lynn/v2WJwTnYLdXQb/ne+0Q2TBiSM+KFIrIU=",
},
"Delete": {
val: "Eliminar",
translated: true,
h: "sm3jcrSw6qxgICiEpy25imvm6QNueF6oZ+oBxfeSEJg=",
},
"Delete Account": {
val: "Borrar Cuenta",
translated: true,
h: "zTJTocYLEbNVwJ0ojyPCB6M0JpGx6fe6AZHWtuVJv0M=",
},
"Delete Connection": {
val: "Borrar Conexión",
translated: true,
h: "o6bxlUpjZFFTleiRLA4ykeB3yEHsAiXW9usUdJ9jh1g=",
},
"Delete Group": {
val: "Borrar Grupo",
translated: true,
h: "VaefOk8g8N64N+Td8TEorhhMQBe0AuWmfRz7u7+Q1Ko=",
},
"Delete Macro": {
val: "Borrar Macro",
translated: true,
h: "Qb7shd6fRLybaDzPvdr0Z4VfVek/fHVV556kEcNZrH8=",
},
"Delete Transactions": {
val: "Borrar Transacciones",
translated: true,
h: "5rAWRNk97CWy9OfDP5IWSE/T2Ao461w7C3z/IDV154I=",
},
"Delete all": {
val: "Borrar todo",
translated: true,
h: "nKzti1takFUxZyWfLTGqgvdL3dJMx6CdNwVfBH1jUYE=",
},
"Description": {
val: "Descripción",
translated: true,
h: "bg0ZDIR+z+PEkinc/ZyqkERMsVZcFFm3NhQoIqZH+WM=",
},
"Details": {
/* Label for sharing channel details */
val: "Detalles",
translated: true,
h: "68e/QPEuI36iIEcTWmKDrVU9KBReQ3EjFzF1F06KQMA=",
},
"Diapers": {
val: "Pañales",
translated: true,
h: "Vr53xwIeHjIIuMymcxrQ3l1RsDE6ra+ZTFT4dbR/rlI=",
},
"Disable Macro": {
val: "Desactivar Macro",
translated: true,
h: "k0HEkS8+oirJJHylM2fcT1D1/IqnGFVX3cGlU3d3G50=",
},
"Disconnected": {
val: "Desconectado",
translated: true,
h: "8d3FMs2ZCPYbCLDzsVcqXsv6b5vDilOwJCEAevNsZDM=",
},
"Do both devices display the same image and code?": {
val: "¿Muestran ambos dispositivos la misma imagen y código?",
translated: true,
h: "b4hrUuVyQY42ZQnEyYvmBHmzVT6WcHo30VshIQAx3zQ=",
},
"Done": {
val: "Hecho",
translated: true,
h: "FlUsJYC76LgtNYLenrPiDvDgAVk3wLT14rwyk2hHYiY=",
},
"Download": {
val: "Descargar",
translated: true,
h: "QVM3NKWnuJ19cWUaN3y9fVCbkiQTygWbOYuFMklAwNc=",
},
"Download Update": {
val: "Descargar la actualización",
translated: true,
h: "OvekDBh71chOkbTXqPs/V/x0lNbpc668s4hyXRF5G+I=",
},
"Downloading update...": {
val: "Descargando actualización...",
translated: true,
h: "vTHXpZeFxjQhKPwUQPCm+eHcyYR6YjSmIm4mtV/5iTE=",
},
"Duplicate Window": {
val: "Duplicar la ventana",
translated: true,
h: "tjwFTBARBKQ5uC9Fh0zm7ag/RViV95pptJBJn9eVqHE=",
},
"EXPERIMENTAL Buckets Macro Maker": {
/* 'Buckets' refers to the application name */
val: "Creador de macros EXPERIMENTAL de Buckets",
translated: true,
h: "NZPVXQ+Dw1vv0fLXY+Z4R1KiEkXjDZtSmY3tVz5L1VI=",
},
"Eating out": {
val: "Comer fuera de casa",
translated: true,
h: "aiQggrM+Wb8WtkoJykeSDnNiCBgzGqVGc1Hvkf5Uzg8=",
},
"Edit": {
val: "Editar",
translated: true,
h: "9+ZynTDPePvsJX4rW8Mn0wEzk0GRQ+udON01NKHVsQU=",
},
"Electricity": {
val: "Electricidad",
translated: true,
h: "D85G++Fy1hUUGZfHiKAUcNRlXmLcdkKK7RtxnwJ110U=",
},
"Enable Macro": {
val: "Activar Macro",
translated: false,
h: "9SWFr96CNVD21JQ30lw4cj1JCAZ44RNlKkDzQJ/RyuE=",
},
"Ending Balance": {
val: "Saldo final",
translated: true,
h: "bwan2qqqdDloluCkgp+UPYWSAeOQk9zkaNwb2p0kUDk=",
},
"Ending amount:": {
val: "Cantidad final:",
translated: true,
h: "0IUvXk9nogxjdL1n0VZPrxcMOUZODNXMlGrlpyXq8bI=",
},
"Enter Buckets License": {
val: "Introducir licencia de Buckets",
translated: true,
h: "QPy/bCk+yTP2DzZAmXWbRYj2KC5QbrLq/XeXrysIX6Q=",
},
"Enter License...": {
val: "Introducir licencia...",
translated: true,
h: "A+/eZ8qTAh97iBouJPInRkCg7F0nOkteYEBO7+lFHHA=",
},
"Error": {
val: "Error",
translated: true,
h: "/ErBlknw7o83xx0uIDCjdDA4u5bAwnNZuhFd2GV1Zcw=",
},
"Error during import": {
val: "Error durante la importación",
translated: true,
h: "BiI3zjvgdX5vXe4kX0mS7AvEFln+iIdMmLNX1xeQqLU=",
},
"Error fetching data": {
val: "Error al obtener datos",
translated: true,
h: "z94B0956dECmmaMVLZFW0oZMVtA92etw+2ZqumR4K9Q=",
},
"Error importing": {
val: "Se ha producido un error mientras se importaba",
translated: true,
h: "rekzwWcY0HRZEhFebX1fJrp4aDJ/NTPxIwWaCYAk+7k=",
},
"Error parsing response": {
val: "Error al analizar la respuesta",
translated: true,
h: "PsIRbom+m8Y5OIEPW2rzJYVlNA2NQrZmEQnpW7Y/9KI=",
},
"Error running recording": {
val: "Error al ejecutar grabación",
translated: true,
h: "eE9Fw8G4vQpND3fFWnfGNvtN5LxCcQQecWO6fQgBmpM=",
},
"Error running sync": {
val: "Error al sincronizar",
translated: true,
h: "LB/WNzHp4orPsbCVEJuDzUPsQUfNRDNXw7sFnbzfguw=",
},
"Error updating transaction": {
val: "Error al actualizar transacción",
translated: true,
h: "IEJfuOO0LRCEv2OUh8Cz02PtiJ8tqVTRzeXK5DyqBQs=",
},
"Expenses": {
val: "Gastos",
translated: true,
h: "d6aKytFAPwPUzFOv41R0itfcMu11VdE29vkM05dnpBU=",
},
"Export": {
val: "Exportar",
translated: true,
h: "mZJs0iE089tMZ5BWqTUBp+2aJ90wKL4act4hUPt7zkA=",
},
"Faint cents": {
/* Label for application preference enabling/disabling faint cents */
val: "Faint cents",
translated: false,
h: "gL5W+6nmqNfRsbiNIBEyHIX0LvI1xCYl+kDyuUwFsGI=",
},
"File": {
val: "Archivo",
translated: true,
h: "9XpUff7TtVQbIncvgmrfzVB2gkBh35RnM1ET/HFr3k0=",
},
"File does not exist:": {
val: "El archivo no existe:",
translated: true,
h: "RPeWW9lCHkg+d6XybADj3OH2jxrYcSOhrA3+QHEcYz0=",
},
"File saved: ": {
val: "Archivo guardado: ",
translated: true,
h: "e6UDV8UzF5qqysQpN3OrcspjD8zPNn72zKd1CH1lFe8=",
},
"File type not recognized.": {
val: "Tipo de archivo no reconocido.",
translated: true,
h: "Z6QnadHff9fEji/vnFxKuxbfAKGNb263Hm13z3txfSM=",
},
"Find Next": {
/* Edit menu label for finding the next match. Perhaps use what your browser or other applications use. */
val: "Buscar siguiente",
translated: true,
h: "LALfI5V4TsQo0DcGJwmNmrm3xNPtY5PmQuxB1voZo34=",
},
"Find Previous": {
/* Edit menu label for finding the previous match. Perhaps use what your browser or other applications use. */
val: "Buscar anterior",
translated: true,
h: "0n6Dq5KDTxxsTAKrJE+RDdgi9ln6FyfUEPNBJ6ejZ5o=",
},
"Find...": {
val: "Buscar...",
translated: true,
h: "aUU1pzvlZzKNgYZP2ZpPtQMImBOStbFnK33P3YwXTNs=",
},
"Finish import": {
val: "Finalizar importación",
translated: true,
h: "4xsUuxEj2AOOfV6aSUBcosl89BFoAZ+srMPIeWzIjUI=",
},
"For Date Posted, you must also choose the date format.": {
val: "Para la Fecha Valor, también debe escoger el formato de fecha.",
translated: false,
h: "G2XPMMlP2JPnutFhPAo1RnCQMTzdukxPSc+FjoF2Vjs=",
},
"Force Reload": {
val: "Forzar Recarga de datos",
translated: true,
h: "ktBJY2UXO+2r0ZvmbQXhArN51bSTnyaNnnBNR9PQ5K8=",
},
"From": {
val: "Desde",
translated: true,
h: "cCFAY2/zl3pq5fMwrP/2LBsrrL36SYzS+6in7mvWyvY=",
},
"Fuel": {
val: "Gasolina",
translated: true,
h: "lU9dO2a3oisfgHqd0n39sKC/wl7ymSV/XprtLhQLEiI=",
},
"Gain/Loss": {
val: "Ganancia/pérdida",
translated: true,
h: "Kop7hNPijjGN5jXxpDmcP32CJy22tzVz1qXWTjNxVg0=",
},
"Getting Started...": {
val: "Empezar...",
translated: true,
h: "XD8GQYEIDrNjTMPX4TjGeAbbCIEBcAONlYPd/D8Hz84=",
},
"Go To...": {
/* Submenu title for navigation shortcuts */
val: "Ir a...",
translated: true,
h: "AsKW6buNlZ7YlWHN1pVgNlCAzqiFIsJGL1cg8CkVGkg=",
},
"Goal completion:": {
val: "El objetivo se cumplirá:",
translated: true,
h: "v+G5gj6B+MtHwQovNmj/BWbpnQncARZGo+swhE1fbtg=",
},
"Goal:": {
val: "Objetivo:",
translated: true,
h: "77+E2dn/Mw53xjGhNc6irsiq1WULAiC4yIyt4NaO0DM=",
},
"Goal: 0": {
val: "Objetivo: 0",
translated: true,
h: "rtvJnJFYA7lHYjPjGpF27/h2So3pRdrRLjfnkg78woQ=",
},
"Groceries": {
val: "Alimentación",
translated: true,
h: "T6Kz6/FDxQkeIUJq8SVGn0T7OPdZ7B0YjPD3qHqW5p4=",
},
"Guide": {
/* Menu label for the Buckets user guide */
val: "Guía",
translated: true,
h: "E0TqJgLjqp65xs2CJV72FGZk5q/R8lIwaWCMnXpvTPE=",
},
"Header row": {
/* Label for checkbox indicating whether a CSV file has a header row or not */
val: "Cabecera",
translated: true,
h: "uRtdJlb7w3q8Zl9lZhtY0JReqNVI7CfOdo5I9SW5lfw=",
},
"Health Insurance": {
val: "Seguro de Salud",
translated: true,
h: "nsWIG2Kbb9OtoQkBvgkFh5MfMVNfbuGKhZypQ3uoQJw=",
},
"Hello! Thanks for trying out Buckets.": {
val: "Hola! Gracias por probar Buckets.",
translated: true,
h: "0m9VvMGwLCqD3lmZ24GbzlkRxPX1kf/DsbWA9kkBWX0=",
},
"Help": {
val: "Ayuda",
translated: true,
h: "TvUUB7AuCuFJ9IWiz2SbsjnUvYoDPZAaMPxup/rwosM=",
},
"Hide Buckets": {
/* 'Buckets' refers to the application name. */
val: "Ocultar Buckets",
translated: true,
h: "38YdGXFjndmgDFgXTpfUZ0F+W/D9e267YaAvzYZm4O8=",
},
"Hide Others": {
val: "Ocultar otros",
translated: true,
h: "RpKz0G7Y8OE5oyGm0/zRffPdr7RQkneZCYrikLHIZ+U=",
},
"Holidays": {
val: "Vacaciones",
translated: true,
h: "HTQ10E8CaKVUu71N6uLx9J+Y6naLLRX37v0oQkesV3k=",
},
"Household goods": {
val: "Artículos para el hogar",
translated: true,
h: "UK1mJCSwg2XnGpH47pKFFD8NlrCfcd3bQb1bJt2RXEg=",
},
"ID": {
val: "ID",
translated: true,
h: "ge86Jcy26vcv5uPFI29MfLOxHh8ctACck6nRdrl9aM4=",
},
"Identify the data each column contains using the drop downs below.": {
val: "Identifique los datos que contiene cada columna usando los desplegables de debajo.",
translated: true,
h: "59JoGSJaPOdtgmCL+QLp8U/e6y+OGGM8fdEX4sClrpk=",
},
"If Net is 0, the bucket transactions will be marked as transfers rather than as income or expenses.": {
val: "Si Neto es 0, la transacción del cubo será identificada como transferencia en lugar de como ingreso o gasto.",
translated: true,
h: "/btREV6/jPJtrc1ERDwLUyJAowC8+v6gUB7bmJJYzT4=",
},
"If multiple columns are selected for Amount, the first non-zero value will be used. This is helpful if the CSV contains separate Credit and Debit columns.": {
val: "Si hay varias columnas selecionadas para Cantidad, la primera que tenga un valor distinto a cero será usada. Esto es útil si el archivo CSV presenta los conceptos Crédito y Débito en columnas separadas.",
translated: true
,
h: "bxc4+JxhDrm2oYWek0ISeJDxq173KLfpcnOT4GEMWGQ=",
},
"Import": {
val: "Importar",
translated: true,
h: "F3sijvfYz3oB4iz2rVHjUvNDLQs43MbXDVIr5VFA2/c=",
},
"Import .zip file": {
val: "Importar archivo .zip",
translated: true,
h: "EmJa8O6YE7jrgmaqDUM5pIdurIYHfx1RIvVLHmqhRws=",
},
"Import From Web YNAB...": {
val: "Importar de YNAB Web...",
translated: true,
h: "7Yteq/akhgWWCBUeqgBRz4wP6bKcirfp74uLeTQop3Q=",
},
"Import From YNAB4...": {
val: "Importar de YNAB4...",
translated: true,
h: "z10Vp9BzEC6CkLTNtR8xywSTNYGMBbGFZMD7XUEbrVs=",
},
"Import Transactions...": {
val: "Importar transacciones...",
translated: true,
h: "PPLzf/61MKc3iWfDMTRo6ERH/TYu6TxBH2vmVbZD5Lk=",
},
"Import all Amazon Reports": {
val: "Import all Amazon Reports",
translated: false,
h: "EwzV2gCi/cxxLtdXGeSBJLDZhAhXqomL1rdi7QPOQxA=",
},
"Import complete!": {
val: "Importación finalizada!",
translated: true,
h: "L9VgrAXBV8q2Ux9I1Y2Mr/vbc6PiBI0Uxct20Hw6hwY=",
},
"Import file": {
/* Button label for starting a file import */
/* Button label for starting a file import */
val: "Importar archivo",
translated: true,
h: "iaQvPnsbTKu/ItmjoC8ctwpVbyumVe15GLL8nCbe25Q=",
},
"Import from Web YNAB": {
val: "Importar de YNAB Web",
translated: true,
h: "NyXkbdCVf1mZfbmhjqJx4M10Vz/UfGdvSHdz+G6CGKc=",
},
"Import from YNAB4": {
val: "Importar de YNAB4",
translated: true,
h: "FJ55mGfxitbc5YeY1s6YEji8I54ILSi3sfzQALSx50I=",
},
"Import links broken": {
/* Notification indicating that the links between imported transaction files and a particular account have been broken. */
val: "La conexión entre los archivos de transacciones importados y la cuenta ha desaparecido",
translated: true,
h: "rLgGF32tMx7KSWu+vRLEbr+IbkedxhS8ELcYZhNCqTs=",
},
"In": {
val: "Añadir",
translated: true,
h: "TcCPpYF7/U7vM5pPmpqvJipZt0WPk3A/vC7Ec8pfDvo=",
},
"In/Out": {
val: "Añadir/Sacar",
translated: true,
h: "G/e+QHikQOjTM9bcDBrmUZj6ONRstDFt17sNXu9zUd8=",
},
"Include log file": {
val: "Incluir el archivo de registro",