summaryrefslogtreecommitdiff
path: root/packages/bank-ui/src/i18n/strings.ts
blob: f55e5efbc0897c9c7c616b0a3f556964e26b2da3 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
/*
 This file is part of GNU Taler
 (C) 2022-2024 Taler Systems S.A.

 GNU Taler is free software; you can redistribute it and/or modify it under the
 terms of the GNU General Public License as published by the Free Software
 Foundation; either version 3, or (at your option) any later version.

 GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 A PARTICULAR PURPOSE.  See the GNU General Public License for more details.

 You should have received a copy of the GNU General Public License along with
 GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
 */
export interface StringsType {
  // X-Domain or 'messages'
  domain: string;
  lang: string;
  completeness: number;
  plural_forms: string;
  locale_data: {
    messages: Record<string, unknown>;
  };
}
export const strings: Record<string, StringsType> = {};

strings["it"] = {
  locale_data: {
    messages: {
      "": {
        domain: "messages",
        plural_forms: "nplurals=2; plural=n != 1;",
        lang: "it",
      },
      "Operation failed, please report": ["Registrazione"],
      "Request timeout": [""],
      "Request throttled": [""],
      "Malformed response": [""],
      "Network error": [""],
      "Unexpected request error": [""],
      "Unexpected error": [""],
      "IBAN numbers usually have more that 4 digits": [""],
      "IBAN numbers usually have less that 34 digits": [""],
      "IBAN country code not found": [""],
      "IBAN number is not valid, checksum is wrong": [""],
      "Max withdrawal amount": ["Questo ritiro è stato annullato!"],
      "Show withdrawal confirmation": ["Questo ritiro è stato annullato!"],
      "Show demo description": [""],
      "Show install wallet first": [""],
      "Use fast withdrawal form": ["Ritira contante"],
      "Show debug info": [""],
      "The reserve operation has been confirmed previously and can't be aborted":
        [""],
      "The operation id is invalid.": [""],
      "The operation was not found.": ["Lista conti pubblici non trovata."],
      "If you have a Taler wallet installed in this device": [""],
      "You will see the details of the operation in your wallet including the fees (if applies). If you still don't have one you can install it following instructions in":
        [""],
      "this page": [""],
      Withdraw: ["Prelevare"],
      "Or if you have the wallet in another device": [""],
      "Scan the QR below to start the withdrawal.": ["Chiudi il ritiro Taler"],
      required: [""],
      "IBAN should have just uppercased letters and numbers": [""],
      "not valid": [""],
      "should be greater than 0": [""],
      "balance is not enough": [""],
      "does not follow the pattern": [""],
      'only "IBAN" target are supported': [""],
      'use the "amount" parameter to specify the amount to be transferred': [
        "",
      ],
      "the amount is not valid": [""],
      'use the "message" parameter to specify a reference text for the transfer':
        [""],
      "The request was invalid or the payto://-URI used unacceptable features.":
        [""],
      "Not enough permission to complete the operation.": [
        "La banca sta creando l'operazione...",
      ],
      'The destination account "%1$s" was not found.': [
        "Lista conti pubblici non trovata.",
      ],
      "The origin and the destination of the transfer can't be the same.": [""],
      "Your balance is not enough.": [""],
      'The origin account "%1$s" was not found.': [
        "Lista conti pubblici non trovata.",
      ],
      "Using a form": [""],
      "Import payto:// URI": [""],
      Recipient: [""],
      "IBAN of the recipient's account": [""],
      "Transfer subject": [
        "Trasferisci fondi a un altro conto di questa banca:",
      ],
      subject: ["Soggetto"],
      "some text to identify the transfer": [""],
      Amount: ["Importo"],
      "amount to transfer": ["Somma da ritirare"],
      "payto URI:": [""],
      "uniform resource identifier of the target account": [""],
      "payto://iban/[receiver-iban]?message=[subject]&amount=[%1$s:X.Y]": [""],
      Cancel: [""],
      Send: [""],
      "Missing username": [""],
      "Missing password": [""],
      'Wrong credentials for "%1$s"': ["Credenziali invalide."],
      "Account not found": [""],
      Username: [""],
      "username of the account": [
        "Trasferisci fondi a un altro conto di questa banca:",
      ],
      Password: [""],
      "password of the account": ["Storico dei conti pubblici"],
      Check: [""],
      "Log in": [""],
      Register: ["Registrati"],
      "Wire transfer completed!": ["Bonifico"],
      "The withdrawal has been aborted previously and can't be confirmed": [""],
      "The withdrawal operation can't be confirmed before a wallet accepted the transaction.":
        [""],
      "Your balance is not enough for the operation.": [""],
      "Confirm the withdrawal operation": ["Conferma il ritiro"],
      "Wire transfer details": ["Bonifico"],
      "Taler Exchange operator's account": [""],
      "Taler Exchange operator's name": [""],
      Transfer: [""],
      "Authentication required": [""],
      "This operation was created with other username": [""],
      "Operation aborted": [""],
      "The wire transfer to the Taler Exchange operator's account was aborted, your balance was not affected.":
        [""],
      "You can close this page now or continue to the account page.": [""],
      Continue: [""],
      "Withdrawal confirmed": ["Questo ritiro è stato annullato!"],
      "The wire transfer to the Taler operator has been initiated. You will soon receive the requested amount in your Taler wallet.":
        [""],
      Done: [""],
      "Operation canceled": [""],
      "The operation is marked as 'selected' but some step in the withdrawal failed":
        [""],
      "The account is selected but no withdrawal identification found.": [""],
      "There is a withdrawal identification but no account has been selected or the selected account is invalid.":
        [""],
      "No withdrawal ID found and no account has been selected or the selected account is invalid.":
        [""],
      "Operation not found": [""],
      "This operation is not known by the server. The operation id is wrong or the server deleted the operation information before reaching here.":
        [""],
      "Cotinue to dashboard": [""],
      "The Withdrawal URI is not valid": ["Questo ritiro è stato annullato!"],
      'the bank backend is not supported. supported version "%1$s", server version "%2$s"':
        [""],
      "Internal error, please report.": ["Registrazione"],
      Preferences: [""],
      "Welcome, %1$s": [""],
      "Latest transactions": ["Ultime transazioni:"],
      Date: ["Data"],
      Counterpart: ["Controparte"],
      Subject: ["Soggetto"],
      sent: [""],
      received: [""],
      "invalid value": [""],
      to: [""],
      from: [""],
      "First page": [""],
      Next: [""],
      "History of public accounts": ["Storico dei conti pubblici"],
      "Currently, the bank is not accepting new registrations!": [""],
      "Missing name": ["indirizzo Payto"],
      "Use letters and numbers only, and start with a lowercase letter": [""],
      "Passwords don't match": [""],
      "Server replied with invalid phone or email.": [""],
      "Registration is disabled because the bank ran out of bonus credit.": [
        "",
      ],
      "No enough permission to create that account.": [""],
      "That account id is already taken.": [""],
      "That username is already taken.": [""],
      "That username can't be used because is reserved.": [""],
      "Only admin is allow to set debt limit.": [""],
      "No information for the selected authentication channel.": [""],
      "Authentication channel is not supported.": [""],
      "Only admin can create accounts with second factor authentication.": [""],
      "Account registration": [""],
      "Repeat password": [""],
      Name: [""],
      "Create a random temporary user": [""],
      "Make a wire transfer": ["Chiudi il bonifico"],
      "Wire transfer created!": ["Bonifico"],
      Accounts: ["Importo"],
      "A list of all business account in the bank.": [""],
      "Create account": [""],
      Balance: [""],
      Actions: [""],
      unknown: [""],
      "change password": [""],
      remove: [""],
      "Select a section": [""],
      "Last hour": [""],
      "Last day": [""],
      "Last month": [""],
      "Last year": [""],
      "Last Year": [""],
      "Trading volume on %1$s compared to %2$s": [""],
      Cashin: [""],
      Cashout: [""],
      Payin: [""],
      Payout: [""],
      "download stats as CSV": [""],
      "Descreased by": [""],
      "Increased by": [""],
      "Unable to create a cashout": [""],
      "The bank configuration does not support cashout operations.": [""],
      invalid: [""],
      "need to be higher due to fees": [""],
      "the total transfer at destination will be zero": [""],
      "Cashout created": [""],
      "Duplicated request detected, check if the operation succeded or try again.":
        [""],
      "The conversion rate was incorrectly applied": [""],
      "The account does not have sufficient funds": [""],
      "Cashouts are not supported": [""],
      "Missing cashout URI in the profile": [""],
      "Sending the confirmation message failed, retry later or contact the administrator.":
        [""],
      "Convertion rate": [""],
      Fee: [""],
      "To account": [""],
      "No cashout account": [""],
      "Before doing a cashout you need to complete your profile": [""],
      "Amount to send": ["Somma da ritirare"],
      "Amount to receive": ["Somma da ritirare"],
      "Total cost": [""],
      "Balance left": [""],
      "Before fee": [""],
      "Total cashout transfer": [""],
      "No cashout channel available": [""],
      "Before doing a cashout the server need to provide an second channel to confirm the operation":
        [""],
      "Second factor authentication": [""],
      Email: [""],
      "add a email in your profile to enable this option": [""],
      SMS: [""],
      "add a phone number in your profile to enable this option": [""],
      Details: [""],
      Delete: [""],
      Credentials: ["Credenziali invalide."],
      Cashouts: [""],
      "it doesnt have the pattern of an IBAN number": [""],
      "it doesnt have the pattern of an email": [""],
      "should start with +": [""],
      "phone number can't have other than numbers": [""],
      "account identification in the bank": [""],
      "name of the person owner the account": [""],
      "Internal IBAN": [""],
      "if empty a random account number will be assigned": [""],
      "account identification for bank transfer": [""],
      Phone: [""],
      "Cashout IBAN": [""],
      "account number where the money is going to be sent when doing cashouts":
        [""],
      "Max debt": [""],
      "how much is user able to transfer after zero balance": [""],
      "Is this a Taler Exchange?": [""],
      "This server doesn't support second factor authentication.": [""],
      "Enable second factor authentication": [""],
      "Using email": [""],
      "Using SMS": [""],
      "Is this account public?": [""],
      "public accounts have their balance publicly accesible": [""],
      "Account updated": [""],
      "The rights to change the account are not sufficient": [""],
      "The username was not found": [""],
      "You can't change the legal name, please contact the your account administrator.":
        [""],
      "You can't change the debt limit, please contact the your account administrator.":
        [""],
      "You can't change the cashout address, please contact the your account administrator.":
        [""],
      "You can't change the contact data, please contact the your account administrator.":
        [""],
      'Account "%1$s"': [""],
      "Change details": [""],
      Update: [""],
      "password doesn't match": [""],
      "Password changed": [""],
      "Not authorized to change the password, maybe the session is invalid.": [
        "",
      ],
      "You need to provide the old password. If you don't have it contact your account administrator.":
        [""],
      "Your current password doesn't match, can't change to a new password.": [
        "",
      ],
      "Update password": [""],
      "New password": [""],
      "Type it again": [""],
      "repeat the same password": [""],
      "Current password": [""],
      "your current password, for security": [""],
      Change: [""],
      "Can't delete the account": [""],
      "The account can't be delete while still holding some balance. First make sure that the owner make a complete cashout.":
        [""],
      "Account removed": [""],
      "No enough permission to delete the account.": [""],
      "The username was not found.": [""],
      "Can't delete a reserved username.": [""],
      "Can't delete an account with balance different than zero.": [""],
      "name doesn't match": [""],
      "You are going to remove the account": [""],
      "This step can't be undone.": [""],
      'Deleting account "%1$s"': [""],
      Verification: [""],
      "enter the account name that is going to be deleted": [""],
      'Account created with password "%1$s". The user must change the password on the next login.':
        [""],
      "Server replied that phone or email is invalid": [""],
      "The rights to perform the operation are not sufficient": [""],
      "Account username is already taken": [""],
      "Account id is already taken": [""],
      "Bank ran out of bonus credit.": [""],
      "Account username can't be used because is reserved": [""],
      "Can't create accounts": [""],
      "Only system admin can create accounts.": [""],
      "New business account": [""],
      Create: [""],
      "Cashout not supported.": [""],
      "Account not found.": ["Lista conti pubblici non trovata."],
      "Latest cashouts": ["Ultime transazioni:"],
      Created: [""],
      Confirmed: ["Conferma"],
      "Total debit": [""],
      "Total credit": [""],
      Status: [""],
      never: [""],
      "Cashout for account %1$s": [""],
      "This cashout not found. Maybe already aborted.": [""],
      "Cashout not found. It may be also mean that it was already aborted.": [
        "",
      ],
      "Cashout was already confimed.": [""],
      "Cashout operation is not supported.": [""],
      "The cashout operation is already aborted.": [""],
      "Missing destination account.": [""],
      "Too many failed attempts.": [""],
      "The code for this cashout is invalid.": [""],
      "Cashout detail": [""],
      Debited: [""],
      Credited: [""],
      "Enter the confirmation code": [""],
      Abort: ["Annulla"],
      Confirm: ["Conferma"],
      "Unauthorized to make the operation, maybe the session has expired or the password changed.":
        [""],
      "The operation was rejected due to insufficient funds.": [""],
      "Do not show this again": [""],
      Close: [""],
      "On this device": [""],
      'If you are using a web browser on desktop you should access your wallet with the GNU Taler WebExtension now or click the link if your WebExtension have the "Inject Taler support" option enabled.':
        [""],
      Start: [""],
      "On a mobile phone": [""],
      "Scan the QR code with your mobile device.": [
        "Usa questo codice QR per ritirare contante nel tuo wallet:",
      ],
      "There is an operation already": [""],
      "Complete or cancel the operation in": ["Conferma il ritiro"],
      "Server responded with an invalid  withdraw URI": [""],
      "Withdraw URI: %1$s": ["Prelevare"],
      "The operation was rejected due to insufficient funds": [""],
      "Prepare your wallet": [""],
      "After using your wallet you will need to confirm or cancel the operation on this site.":
        [""],
      "You need a GNU Taler Wallet": ["Ritira contante nel portafoglio Taler"],
      "If you don't have one yet you can follow the instruction in": [""],
      "Send money": [""],
      "to a %1$s wallet": [""],
      "Withdraw digital money into your mobile wallet or browser extension": [
        "",
      ],
      "operation ready": [""],
      "to another bank account": [
        "Trasferisci fondi a un altro conto di questa banca:",
      ],
      "Make a wire transfer to an account with known bank account number.": [
        "",
      ],
      "Transfer details": ["Effettua un bonifico"],
      "This is a demo bank": [""],
      "This part of the demo shows how a bank that supports Taler directly would work. In addition to using your own bank account, you can also see the transaction history of some %1$s.":
        [""],
      "This part of the demo shows how a bank that supports Taler directly would work.":
        [""],
      "Pending account delete operation": [""],
      "Pending account update operation": [""],
      "Pending password update operation": [""],
      "Pending transaction operation": [""],
      "Pending withdrawal operation": [""],
      "Pending cashout operation": [""],
      "You can complete or cancel the operation in": [""],
      "Download bank stats": [""],
      "Include hour metric": [""],
      "Include day metric": [""],
      "Include month metric": [""],
      "Include year metric": [""],
      "Include table header": [""],
      "Add previous metric for compare": [""],
      "Fail on first error": [""],
      Download: [""],
      "downloading... %1$s": [""],
      "Download completed": [""],
      "click here to save the file in your computer": [""],
      "Challenge not found.": [""],
      "This user is not authorized to complete this challenge.": [""],
      "Too many attemps, try another code.": [""],
      "The confirmation code is wrong, try again.": [""],
      "The operation expired.": [""],
      "The operation failed.": ["Questo ritiro è stato annullato!"],
      "The operation needs another confirmation to complete.": [""],
      "Account delete": [""],
      "Account update": [""],
      "Password update": [""],
      "Wire transfer": ["Bonifico"],
      Withdrawal: ["Prelevare"],
      "Confirm the operation": ["Conferma il ritiro"],
      "Send again": [""],
      "Send code": [""],
      "Operation details": [""],
      "Challenge details": [""],
      "Sent at": [""],
      "To phone": [""],
      "To email": [""],
      "Welcome to %1$s!": [""],
    },
  },
  domain: "messages",
  plural_forms: "nplurals=2; plural=n != 1;",
  lang: "it",
  completeness: 14,
};

strings["fr"] = {
  locale_data: {
    messages: {
      "": {
        domain: "messages",
        plural_forms: "nplurals=2; plural=n > 1;",
        lang: "fr",
      },
      "Operation failed, please report": [""],
      "Request timeout": [""],
      "Request throttled": [""],
      "Malformed response": [""],
      "Network error": [""],
      "Unexpected request error": [""],
      "Unexpected error": [""],
      "IBAN numbers usually have more that 4 digits": [""],
      "IBAN numbers usually have less that 34 digits": [""],
      "IBAN country code not found": [""],
      "IBAN number is not valid, checksum is wrong": [""],
      "Max withdrawal amount": [""],
      "Show withdrawal confirmation": [""],
      "Show demo description": [""],
      "Show install wallet first": [""],
      "Use fast withdrawal form": [""],
      "Show debug info": [""],
      "The reserve operation has been confirmed previously and can't be aborted":
        [""],
      "The operation id is invalid.": [""],
      "The operation was not found.": [""],
      "If you have a Taler wallet installed in this device": [""],
      "You will see the details of the operation in your wallet including the fees (if applies). If you still don't have one you can install it following instructions in":
        [""],
      "this page": [""],
      Withdraw: [""],
      "Or if you have the wallet in another device": [""],
      "Scan the QR below to start the withdrawal.": [""],
      required: [""],
      "IBAN should have just uppercased letters and numbers": [""],
      "not valid": [""],
      "should be greater than 0": [""],
      "balance is not enough": [""],
      "does not follow the pattern": [""],
      'only "IBAN" target are supported': [""],
      'use the "amount" parameter to specify the amount to be transferred': [
        "",
      ],
      "the amount is not valid": [""],
      'use the "message" parameter to specify a reference text for the transfer':
        [""],
      "The request was invalid or the payto://-URI used unacceptable features.":
        [""],
      "Not enough permission to complete the operation.": [""],
      'The destination account "%1$s" was not found.': [""],
      "The origin and the destination of the transfer can't be the same.": [""],
      "Your balance is not enough.": [""],
      'The origin account "%1$s" was not found.': [""],
      "Using a form": [""],
      "Import payto:// URI": [""],
      Recipient: [""],
      "IBAN of the recipient's account": [""],
      "Transfer subject": [""],
      subject: [""],
      "some text to identify the transfer": [""],
      Amount: [""],
      "amount to transfer": [""],
      "payto URI:": [""],
      "uniform resource identifier of the target account": [""],
      "payto://iban/[receiver-iban]?message=[subject]&amount=[%1$s:X.Y]": [""],
      Cancel: [""],
      Send: [""],
      "Missing username": [""],
      "Missing password": [""],
      'Wrong credentials for "%1$s"': [""],
      "Account not found": [""],
      Username: [""],
      "username of the account": [""],
      Password: [""],
      "password of the account": [""],
      Check: [""],
      "Log in": [""],
      Register: [""],
      "Wire transfer completed!": [""],
      "The withdrawal has been aborted previously and can't be confirmed": [""],
      "The withdrawal operation can't be confirmed before a wallet accepted the transaction.":
        [""],
      "Your balance is not enough for the operation.": [""],
      "Confirm the withdrawal operation": [""],
      "Wire transfer details": [""],
      "Taler Exchange operator's account": [""],
      "Taler Exchange operator's name": [""],
      Transfer: [""],
      "Authentication required": [""],
      "This operation was created with other username": [""],
      "Operation aborted": [""],
      "The wire transfer to the Taler Exchange operator's account was aborted, your balance was not affected.":
        [""],
      "You can close this page now or continue to the account page.": [""],
      Continue: [""],
      "Withdrawal confirmed": [""],
      "The wire transfer to the Taler operator has been initiated. You will soon receive the requested amount in your Taler wallet.":
        [""],
      Done: [""],
      "Operation canceled": [""],
      "The operation is marked as 'selected' but some step in the withdrawal failed":
        [""],
      "The account is selected but no withdrawal identification found.": [""],
      "There is a withdrawal identification but no account has been selected or the selected account is invalid.":
        [""],
      "No withdrawal ID found and no account has been selected or the selected account is invalid.":
        [""],
      "Operation not found": [""],
      "This operation is not known by the server. The operation id is wrong or the server deleted the operation information before reaching here.":
        [""],
      "Cotinue to dashboard": [""],
      "The Withdrawal URI is not valid": [""],
      'the bank backend is not supported. supported version "%1$s", server version "%2$s"':
        [""],
      "Internal error, please report.": [""],
      Preferences: [""],
      "Welcome, %1$s": [""],
      "Latest transactions": [""],
      Date: [""],
      Counterpart: [""],
      Subject: [""],
      sent: [""],
      received: [""],
      "invalid value": [""],
      to: [""],
      from: [""],
      "First page": [""],
      Next: [""],
      "History of public accounts": [""],
      "Currently, the bank is not accepting new registrations!": [""],
      "Missing name": [""],
      "Use letters and numbers only, and start with a lowercase letter": [""],
      "Passwords don't match": [""],
      "Server replied with invalid phone or email.": [""],
      "Registration is disabled because the bank ran out of bonus credit.": [
        "",
      ],
      "No enough permission to create that account.": [""],
      "That account id is already taken.": [""],
      "That username is already taken.": [""],
      "That username can't be used because is reserved.": [""],
      "Only admin is allow to set debt limit.": [""],
      "No information for the selected authentication channel.": [""],
      "Authentication channel is not supported.": [""],
      "Only admin can create accounts with second factor authentication.": [""],
      "Account registration": [""],
      "Repeat password": [""],
      Name: [""],
      "Create a random temporary user": [""],
      "Make a wire transfer": [""],
      "Wire transfer created!": [""],
      Accounts: [""],
      "A list of all business account in the bank.": [""],
      "Create account": [""],
      Balance: [""],
      Actions: [""],
      unknown: [""],
      "change password": [""],
      remove: [""],
      "Select a section": [""],
      "Last hour": [""],
      "Last day": [""],
      "Last month": [""],
      "Last year": [""],
      "Last Year": [""],
      "Trading volume on %1$s compared to %2$s": [""],
      Cashin: [""],
      Cashout: [""],
      Payin: [""],
      Payout: [""],
      "download stats as CSV": [""],
      "Descreased by": [""],
      "Increased by": [""],
      "Unable to create a cashout": [""],
      "The bank configuration does not support cashout operations.": [""],
      invalid: [""],
      "need to be higher due to fees": [""],
      "the total transfer at destination will be zero": [""],
      "Cashout created": [""],
      "Duplicated request detected, check if the operation succeded or try again.":
        [""],
      "The conversion rate was incorrectly applied": [""],
      "The account does not have sufficient funds": [""],
      "Cashouts are not supported": [""],
      "Missing cashout URI in the profile": [""],
      "Sending the confirmation message failed, retry later or contact the administrator.":
        [""],
      "Convertion rate": [""],
      Fee: [""],
      "To account": [""],
      "No cashout account": [""],
      "Before doing a cashout you need to complete your profile": [""],
      "Amount to send": [""],
      "Amount to receive": [""],
      "Total cost": [""],
      "Balance left": [""],
      "Before fee": [""],
      "Total cashout transfer": [""],
      "No cashout channel available": [""],
      "Before doing a cashout the server need to provide an second channel to confirm the operation":
        [""],
      "Second factor authentication": [""],
      Email: [""],
      "add a email in your profile to enable this option": [""],
      SMS: [""],
      "add a phone number in your profile to enable this option": [""],
      Details: [""],
      Delete: [""],
      Credentials: [""],
      Cashouts: [""],
      "it doesnt have the pattern of an IBAN number": [""],
      "it doesnt have the pattern of an email": [""],
      "should start with +": [""],
      "phone number can't have other than numbers": [""],
      "account identification in the bank": [""],
      "name of the person owner the account": [""],
      "Internal IBAN": [""],
      "if empty a random account number will be assigned": [""],
      "account identification for bank transfer": [""],
      Phone: [""],
      "Cashout IBAN": [""],
      "account number where the money is going to be sent when doing cashouts":
        [""],
      "Max debt": [""],
      "how much is user able to transfer after zero balance": [""],
      "Is this a Taler Exchange?": [""],
      "This server doesn't support second factor authentication.": [""],
      "Enable second factor authentication": [""],
      "Using email": [""],
      "Using SMS": [""],
      "Is this account public?": [""],
      "public accounts have their balance publicly accesible": [""],
      "Account updated": [""],
      "The rights to change the account are not sufficient": [""],
      "The username was not found": [""],
      "You can't change the legal name, please contact the your account administrator.":
        [""],
      "You can't change the debt limit, please contact the your account administrator.":
        [""],
      "You can't change the cashout address, please contact the your account administrator.":
        [""],
      "You can't change the contact data, please contact the your account administrator.":
        [""],
      'Account "%1$s"': [""],
      "Change details": [""],
      Update: [""],
      "password doesn't match": [""],
      "Password changed": [""],
      "Not authorized to change the password, maybe the session is invalid.": [
        "",
      ],
      "You need to provide the old password. If you don't have it contact your account administrator.":
        [""],
      "Your current password doesn't match, can't change to a new password.": [
        "",
      ],
      "Update password": [""],
      "New password": [""],
      "Type it again": [""],
      "repeat the same password": [""],
      "Current password": [""],
      "your current password, for security": [""],
      Change: [""],
      "Can't delete the account": [""],
      "The account can't be delete while still holding some balance. First make sure that the owner make a complete cashout.":
        [""],
      "Account removed": [""],
      "No enough permission to delete the account.": [""],
      "The username was not found.": [""],
      "Can't delete a reserved username.": [""],
      "Can't delete an account with balance different than zero.": [""],
      "name doesn't match": [""],
      "You are going to remove the account": [""],
      "This step can't be undone.": [""],
      'Deleting account "%1$s"': [""],
      Verification: [""],
      "enter the account name that is going to be deleted": [""],
      'Account created with password "%1$s". The user must change the password on the next login.':
        [""],
      "Server replied that phone or email is invalid": [""],
      "The rights to perform the operation are not sufficient": [""],
      "Account username is already taken": [""],
      "Account id is already taken": [""],
      "Bank ran out of bonus credit.": [""],
      "Account username can't be used because is reserved": [""],
      "Can't create accounts": [""],
      "Only system admin can create accounts.": [""],
      "New business account": [""],
      Create: [""],
      "Cashout not supported.": [""],
      "Account not found.": [""],
      "Latest cashouts": [""],
      Created: [""],
      Confirmed: [""],
      "Total debit": [""],
      "Total credit": [""],
      Status: [""],
      never: [""],
      "Cashout for account %1$s": [""],
      "This cashout not found. Maybe already aborted.": [""],
      "Cashout not found. It may be also mean that it was already aborted.": [
        "",
      ],
      "Cashout was already confimed.": [""],
      "Cashout operation is not supported.": [""],
      "The cashout operation is already aborted.": [""],
      "Missing destination account.": [""],
      "Too many failed attempts.": [""],
      "The code for this cashout is invalid.": [""],
      "Cashout detail": [""],
      Debited: [""],
      Credited: [""],
      "Enter the confirmation code": [""],
      Abort: [""],
      Confirm: [""],
      "Unauthorized to make the operation, maybe the session has expired or the password changed.":
        [""],
      "The operation was rejected due to insufficient funds.": [""],
      "Do not show this again": [""],
      Close: [""],
      "On this device": [""],
      'If you are using a web browser on desktop you should access your wallet with the GNU Taler WebExtension now or click the link if your WebExtension have the "Inject Taler support" option enabled.':
        [""],
      Start: [""],
      "On a mobile phone": [""],
      "Scan the QR code with your mobile device.": [""],
      "There is an operation already": [""],
      "Complete or cancel the operation in": [""],
      "Server responded with an invalid  withdraw URI": [""],
      "Withdraw URI: %1$s": [""],
      "The operation was rejected due to insufficient funds": [""],
      "Prepare your wallet": [""],
      "After using your wallet you will need to confirm or cancel the operation on this site.":
        [""],
      "You need a GNU Taler Wallet": [""],
      "If you don't have one yet you can follow the instruction in": [""],
      "Send money": [""],
      "to a %1$s wallet": [""],
      "Withdraw digital money into your mobile wallet or browser extension": [
        "",
      ],
      "operation ready": [""],
      "to another bank account": [""],
      "Make a wire transfer to an account with known bank account number.": [
        "",
      ],
      "Transfer details": [""],
      "This is a demo bank": [""],
      "This part of the demo shows how a bank that supports Taler directly would work. In addition to using your own bank account, you can also see the transaction history of some %1$s.":
        [""],
      "This part of the demo shows how a bank that supports Taler directly would work.":
        [""],
      "Pending account delete operation": [""],
      "Pending account update operation": [""],
      "Pending password update operation": [""],
      "Pending transaction operation": [""],
      "Pending withdrawal operation": [""],
      "Pending cashout operation": [""],
      "You can complete or cancel the operation in": [""],
      "Download bank stats": [""],
      "Include hour metric": [""],
      "Include day metric": [""],
      "Include month metric": [""],
      "Include year metric": [""],
      "Include table header": [""],
      "Add previous metric for compare": [""],
      "Fail on first error": [""],
      Download: [""],
      "downloading... %1$s": [""],
      "Download completed": [""],
      "click here to save the file in your computer": [""],
      "Challenge not found.": [""],
      "This user is not authorized to complete this challenge.": [""],
      "Too many attemps, try another code.": [""],
      "The confirmation code is wrong, try again.": [""],
      "The operation expired.": [""],
      "The operation failed.": [""],
      "The operation needs another confirmation to complete.": [""],
      "Account delete": [""],
      "Account update": [""],
      "Password update": [""],
      "Wire transfer": [""],
      Withdrawal: [""],
      "Confirm the operation": [""],
      "Send again": [""],
      "Send code": [""],
      "Operation details": [""],
      "Challenge details": [""],
      "Sent at": [""],
      "To phone": [""],
      "To email": [""],
      "Welcome to %1$s!": [""],
    },
  },
  domain: "messages",
  plural_forms: "nplurals=2; plural=n > 1;",
  lang: "fr",
  completeness: 0,
};

strings["es"] = {
  locale_data: {
    messages: {
      "": {
        domain: "messages",
        plural_forms: "nplurals=2; plural=n != 1;",
        lang: "es",
      },
      "Operation failed, please report": [
        "La operaicón falló, por favor reportelo",
      ],
      "Request timeout": ["La petición al servidor agoto su tiempo"],
      "Request throttled": ["La petición al servidor interrumpida"],
      "Malformed response": ["Respuesta malformada"],
      "Network error": ["Error de conexión"],
      "Unexpected request error": ["Error de pedido inesperado"],
      "Unexpected error": ["Error inesperado"],
      "IBAN numbers usually have more that 4 digits": [
        "Los números IBAN usualmente tienen mas de 4 digitos",
      ],
      "IBAN numbers usually have less that 34 digits": [
        "Los números IBAN usualmente tienen menos de 34 digitos",
      ],
      "IBAN country code not found": ["Código de pais de IBAN no encontrado"],
      "IBAN number is not valid, checksum is wrong": [
        "El número IBAN no es válido, falló la verificación",
      ],
      "Max withdrawal amount": ["Monto máximo de extracción"],
      "Show withdrawal confirmation": ["Mostrar confirmación de extracción"],
      "Show demo description": ["Mostrar descripción de demo"],
      "Show install wallet first": ["Mostrar instalar la billetera primero"],
      "Use fast withdrawal form": ["Usar formulario de extracción rápida"],
      "Show debug info": ["Mostrar información de depuración"],
      "The reserve operation has been confirmed previously and can't be aborted":
        [
          "La operación en la reserva ya ha sido confirmada previamente y no puede ser abortada",
        ],
      "The operation id is invalid.": ["El id de operación es invalido."],
      "The operation was not found.": ["La operación no se encontró."],
      "If you have a Taler wallet installed in this device": [
        "Si tienes una billetera Taler instalada en este dispositivo",
      ],
      "You will see the details of the operation in your wallet including the fees (if applies). If you still don't have one you can install it following instructions in":
        [
          "Veras los detalles de la operación en tu billetera incluyendo comisiones (si aplicán). Si todavía no tienes una puedes instalarla siguiendo las instrucciones en",
        ],
      "this page": ["esta página"],
      Withdraw: ["Retirar"],
      "Or if you have the wallet in another device": [
        "O si tienes la billetera en otro dispositivo",
      ],
      "Scan the QR below to start the withdrawal.": [
        "Escanea el QR debajo para comenzar la extracción.",
      ],
      required: ["requerido"],
      "IBAN should have just uppercased letters and numbers": [
        "IBAN debería tener letras mayúsculas y números",
      ],
      "not valid": ["no válido"],
      "should be greater than 0": ["Debería ser mas grande que 0"],
      "balance is not enough": ["el saldo no es suficiente"],
      "does not follow the pattern": ["no tiene un patrón valido"],
      'only "IBAN" target are supported': [
        'solo cuentas "IBAN" son soportadas',
      ],
      'use the "amount" parameter to specify the amount to be transferred': [
        'usa el parámetro "amount" para indicar el monto a ser transferido',
      ],
      "the amount is not valid": ["el monto no es válido"],
      'use the "message" parameter to specify a reference text for the transfer':
        [
          'usa el parámetro "message" para indicar un texto de referencia en la transferencia',
        ],
      "The request was invalid or the payto://-URI used unacceptable features.":
        [
          "El pedido era inválido o el URI payto:// usado tiene características inaceptables.",
        ],
      "Not enough permission to complete the operation.": [
        "Sin permisos suficientes para completar la operación.",
      ],
      'The destination account "%1$s" was not found.': [
        'La cuenta de destino "%1$s" no fue encontrada.',
      ],
      "The origin and the destination of the transfer can't be the same.": [
        "El origen y destino de la transferencia no puede ser la misma.",
      ],
      "Your balance is not enough.": ["El saldo no es suficiente."],
      'The origin account "%1$s" was not found.': [
        'La cuenta origen "%1$s" no fue encontrada.',
      ],
      "Using a form": ["Usando un formulario"],
      "Import payto:// URI": ["Importando un URI payto://"],
      Recipient: ["Destinatario"],
      "IBAN of the recipient's account": [
        "Numero IBAN de la cuenta destinataria",
      ],
      "Transfer subject": ["Asunto de transferencia"],
      subject: ["asunto"],
      "some text to identify the transfer": [
        "algún texto para identificar la transferencia",
      ],
      Amount: ["Monto"],
      "amount to transfer": ["monto a transferir"],
      "payto URI:": ["payto URI:"],
      "uniform resource identifier of the target account": [
        "identificador de recurso uniforme de la cuenta destino",
      ],
      "payto://iban/[receiver-iban]?message=[subject]&amount=[%1$s:X.Y]": [
        "payto://iban/[iban-destinatario]?message=[asunto]&amount=[%1$s:X.Y]",
      ],
      Cancel: ["Cancelar"],
      Send: ["Envíar"],
      "Missing username": ["Falta nombre de usuario"],
      "Missing password": ["Falta contraseña"],
      'Wrong credentials for "%1$s"': ['Credenciales incorrectas para "%1$s"'],
      "Account not found": ["Cuenta no encontrada"],
      Username: ["Nombre de usuario"],
      "username of the account": ["nombre de usuario de la cuenta"],
      Password: ["Contraseña"],
      "password of the account": ["contraseña de la cuenta"],
      Check: ["Verificar"],
      "Log in": ["Acceso"],
      Register: ["Registrarse"],
      "Wire transfer completed!": ["Transferencia bancaria completada!"],
      "The withdrawal has been aborted previously and can't be confirmed": [
        "La extracción fue abortada anteriormente y no puede ser confirmada",
      ],
      "The withdrawal operation can't be confirmed before a wallet accepted the transaction.":
        [
          "La operación de extracción no puede ser confirmada antes de que una billetera acepte la transaccion.",
        ],
      "Your balance is not enough for the operation.": [
        "El saldo no es suficiente para la operación.",
      ],
      "Confirm the withdrawal operation": [
        "Confirme la operación de extracción",
      ],
      "Wire transfer details": ["Detalle de transferencia bancaria"],
      "Taler Exchange operator's account": [
        "Cuenta del operador del Taler Exchange",
      ],
      "Taler Exchange operator's name": [
        "Nombre del operador del Taler Exchange",
      ],
      Transfer: ["Transferencia"],
      "Authentication required": ["Autenticación requerida"],
      "This operation was created with other username": [
        "Esta operación fue creada con otro usuario",
      ],
      "Operation aborted": ["Operación abortada"],
      "The wire transfer to the Taler Exchange operator's account was aborted, your balance was not affected.":
        [
          "La transferencia bancaria a la cuenta del operador del Taler Exchange fue abortada, su saldo no fue afectado.",
        ],
      "You can close this page now or continue to the account page.": [
        "Ya puedes cerrar esta pagina or continuar a la página de estado de cuenta.",
      ],
      Continue: ["Continuar"],
      "Withdrawal confirmed": ["La extracción fue confirmada"],
      "The wire transfer to the Taler operator has been initiated. You will soon receive the requested amount in your Taler wallet.":
        [
          "La transferencia bancaria al operador Taler fue iniciada. Pronto recibirás el monto pedido en tu billetera Taler.",
        ],
      Done: ["Listo"],
      "Operation canceled": ["Operación cancelada"],
      "The operation is marked as 'selected' but some step in the withdrawal failed":
        [
          "La operación está marcada como 'seleccionada' pero algunos pasos en la extracción fallaron",
        ],
      "The account is selected but no withdrawal identification found.": [
        "La cuenta está seleccionada pero no se encontró el identificador de extracción.",
      ],
      "There is a withdrawal identification but no account has been selected or the selected account is invalid.":
        [
          "Hay un identificador de extracción pero la cuenta no ha sido seleccionada o la selccionada es inválida.",
        ],
      "No withdrawal ID found and no account has been selected or the selected account is invalid.":
        [
          "No hay un identificador de extracción y ninguna cuenta a sido seleccionada o la seleccionada es inválida.",
        ],
      "Operation not found": ["Operación no encontrada"],
      "This operation is not known by the server. The operation id is wrong or the server deleted the operation information before reaching here.":
        [
          "Esta operación no es conocida por el servidor. El identificador de operación es incorrecto o el server borró la información de la operación antes de llegar hasta aquí.",
        ],
      "Cotinue to dashboard": ["Continuar al panel"],
      "The Withdrawal URI is not valid": ["El URI de estracción no es válido"],
      'the bank backend is not supported. supported version "%1$s", server version "%2$s"':
        [
          'El servidor de bank no esta spoportado. Version soportada "%1$s", version del server "%2$s"',
        ],
      "Internal error, please report.": [
        "Error interno, por favor reporte el error.",
      ],
      Preferences: ["Preferencias"],
      "Welcome, %1$s": ["Bienvenido/a, %1$s"],
      "Latest transactions": ["Últimas transacciones"],
      Date: ["Fecha"],
      Counterpart: ["Contraparte"],
      Subject: ["Asunto"],
      sent: ["enviado"],
      received: ["recibido"],
      "invalid value": ["valor inválido"],
      to: ["hacia"],
      from: ["desde"],
      "First page": ["Primera página"],
      Next: ["Siguiente"],
      "History of public accounts": ["Historial de cuentas públicas"],
      "Currently, the bank is not accepting new registrations!": [
        "Actualmente, el banco no está aceptado nuevos registros!",
      ],
      "Missing name": ["Falta nombre"],
      "Use letters and numbers only, and start with a lowercase letter": [
        "Solo use letras y números, y comience con una letra minúscula",
      ],
      "Passwords don't match": ["La contraseña no coincide"],
      "Server replied with invalid phone or email.": [
        "El servidor repondio con teléfono o dirección de correo inválido.",
      ],
      "Registration is disabled because the bank ran out of bonus credit.": [
        "El registro está deshabilitado porque el banco se quedó sin crédito bonus.",
      ],
      "No enough permission to create that account.": [
        "Sin permisos suficientes para crear esa cuenta.",
      ],
      "That account id is already taken.": [
        "El identificador de cuenta ya está tomado.",
      ],
      "That username is already taken.": [
        "El nombre de usuario ya está tomado.",
      ],
      "That username can't be used because is reserved.": [
        "El nombre de usuario no puede ser usado porque esta reservado.",
      ],
      "Only admin is allow to set debt limit.": [
        "Solo el administrador tiene permitido cambiar el límite de deuda.",
      ],
      "No information for the selected authentication channel.": [
        "No hay información para el canal de autenticación seleccionado.",
      ],
      "Authentication channel is not supported.": [
        "Canal de autenticación no esta soportado.",
      ],
      "Only admin can create accounts with second factor authentication.": [
        "Solo el administrador puede crear cuentas con el segundo factor de autenticación.",
      ],
      "Account registration": ["Registro de cuenta"],
      "Repeat password": ["Repita la contraseña"],
      Name: ["Nombre"],
      "Create a random temporary user": ["Crear un usuario aleatorio temporal"],
      "Make a wire transfer": ["Hacer una transferencia bancaria"],
      "Wire transfer created!": ["Transferencia bancaria creada!"],
      Accounts: ["Cuentas"],
      "A list of all business account in the bank.": [
        "Una lista de todas las cuentas en el banco.",
      ],
      "Create account": ["Crear cuenta"],
      Balance: ["Saldo"],
      Actions: ["Acciones"],
      unknown: ["desconocido"],
      "change password": ["cambiar contraseña"],
      remove: ["elimiar"],
      "Select a section": ["Seleccione una sección"],
      "Last hour": ["Última hora"],
      "Last day": ["Último día"],
      "Last month": ["Último mes"],
      "Last year": ["Último año"],
      "Last Year": ["Último Año"],
      "Trading volume on %1$s compared to %2$s": [
        "Vólumen de comercio en %1$s comparado con %2$s",
      ],
      Cashin: ["Ingreso"],
      Cashout: ["Egreso"],
      Payin: ["Envios de dinero"],
      Payout: ["Recibos de dinero"],
      "download stats as CSV": ["descargar estadísticas en CSV"],
      "Descreased by": ["Descendiente por"],
      "Increased by": ["Ascendente por"],
      "Unable to create a cashout": ["Imposible crear un egreso"],
      "The bank configuration does not support cashout operations.": [
        "La configuración del banco no soporta operaciones de egreso.",
      ],
      invalid: ["inválido"],
      "need to be higher due to fees": [
        "necesita ser mayor debido a las comisiones",
      ],
      "the total transfer at destination will be zero": [
        "el total de la transferencia en destino será cero",
      ],
      "Cashout created": ["Egreso creado"],
      "Duplicated request detected, check if the operation succeded or try again.":
        [
          "Se detectó una petición duplicada, verifique si la operación tuvo éxito o intente otra vez.",
        ],
      "The conversion rate was incorrectly applied": [
        "La tasa de conversión se aplicó incorrectamente",
      ],
      "The account does not have sufficient funds": [
        "La cuenta no tiene fondos suficientes",
      ],
      "Cashouts are not supported": ["Egresos no están soportados"],
      "Missing cashout URI in the profile": [
        "Falta dirección de egreso en el perfíl",
      ],
      "Sending the confirmation message failed, retry later or contact the administrator.":
        [
          "El envío del mensaje de confirmación falló, intente mas tarde o contacte al administrador.",
        ],
      "Convertion rate": ["Tasa de conversión"],
      Fee: ["Comisión"],
      "To account": ["Hacia cuenta"],
      "No cashout account": ["No hay cuenta de egreso"],
      "Before doing a cashout you need to complete your profile": [
        "Antes de hacer un egreso necesita completar su perfíl",
      ],
      "Amount to send": ["Monto a enviar"],
      "Amount to receive": ["Monto a recibir"],
      "Total cost": ["Costo total"],
      "Balance left": ["Saldo remanente"],
      "Before fee": ["Antes de comisión"],
      "Total cashout transfer": ["Total de egreso"],
      "No cashout channel available": ["No hay canal de egreso disponible"],
      "Before doing a cashout the server need to provide an second channel to confirm the operation":
        [
          "Antes de hacer un egreso el servidor necesita proveer un segundo canal para confirmar la operación",
        ],
      "Second factor authentication": ["Segundo factor de autenticación"],
      Email: ["Correo eletrónico"],
      "add a email in your profile to enable this option": [
        "agrege un correo en su perfíl para habilitar esta opción",
      ],
      SMS: ["SMS"],
      "add a phone number in your profile to enable this option": [
        "agregue un número de teléfono para habilitar esta opción",
      ],
      Details: ["Detalles"],
      Delete: ["Borrar"],
      Credentials: ["Credenciales"],
      Cashouts: ["Egresos"],
      "it doesnt have the pattern of an IBAN number": [
        "no tiene el patrón de un número IBAN",
      ],
      "it doesnt have the pattern of an email": [
        "no tiene el patrón de un correo electrónico",
      ],
      "should start with +": ["debería comenzar con un +"],
      "phone number can't have other than numbers": [
        "número de teléfono no puede tener otra cosa que numeros",
      ],
      "account identification in the bank": [
        "identificador de cuenta en el banco",
      ],
      "name of the person owner the account": [
        "nombre de la persona dueña de la cuenta",
      ],
      "Internal IBAN": ["IBAN interno"],
      "if empty a random account number will be assigned": [
        "si está vacío un número de cuenta aleatorio será asignado",
      ],
      "account identification for bank transfer": [
        "identificador de cuenta para transferencia bancaria",
      ],
      Phone: ["Teléfono"],
      "Cashout IBAN": ["IBAN de egreso"],
      "account number where the money is going to be sent when doing cashouts":
        [
          "numero de cuenta donde el dinero será enviado cuando se ejecuten egresos",
        ],
      "Max debt": ["Máxima deuda"],
      "how much is user able to transfer after zero balance": [
        "cuanto tiene habilitado a transferir despues de un saldo en cero",
      ],
      "Is this a Taler Exchange?": ["Es un Taler Exchange?"],
      "This server doesn't support second factor authentication.": [
        "Este servidor no tiene soporte para segundo factor de autenticación.",
      ],
      "Enable second factor authentication": [
        "Hábilitar segundo factor de autenticación",
      ],
      "Using email": ["Usando correo eletrónico"],
      "Using SMS": ["Usando SMS"],
      "Is this account public?": ["Es una cuenta pública?"],
      "public accounts have their balance publicly accesible": [
        "las cuentas públicas tienen su saldo accesible al público",
      ],
      "Account updated": ["Cuenta actualizada"],
      "The rights to change the account are not sufficient": [
        "Los permisos para cambiar la cuenta no son suficientes",
      ],
      "The username was not found": ["El nombre de usaurio no se encontró"],
      "You can't change the legal name, please contact the your account administrator.":
        [
          "No puede cambiar el nombre legal, por favor contacte el administrador de la cuenta.",
        ],
      "You can't change the debt limit, please contact the your account administrator.":
        [
          "No puede cambiar el límite de deuda, por favor contacte el administrador de la cuenta.",
        ],
      "You can't change the cashout address, please contact the your account administrator.":
        [
          "No puede cambiar la dirección de egreso, por favor contacte al administrador de la cuenta.",
        ],
      "You can't change the contact data, please contact the your account administrator.":
        [
          "No puede cambiar los datos de contacto, por favor contacte al administrador de la cuenta.",
        ],
      'Account "%1$s"': ['Cuenta "%1$s"'],
      "Change details": ["Cambiar detalles"],
      Update: ["Actualizar"],
      "password doesn't match": ["la contraseña no coincide"],
      "Password changed": ["La contraseña cambió"],
      "Not authorized to change the password, maybe the session is invalid.": [
        "No está autorizado a cambiar el password, quizá la sesión es invalida.",
      ],
      "You need to provide the old password. If you don't have it contact your account administrator.":
        [
          "Se necesita el password viejo para cambiar la contraseña. Si no lo tiene contacte a su administrador.",
        ],
      "Your current password doesn't match, can't change to a new password.": [
        "Su actual contraseña no coincide, no puede cambiar a una nueva contraseña.",
      ],
      "Update password": ["Actualizar contraseña"],
      "New password": ["Nueva contraseña"],
      "Type it again": ["Escribalo otra vez"],
      "repeat the same password": ["repita la misma contraseña"],
      "Current password": ["Contraseña actual"],
      "your current password, for security": [
        "su actual contraseña, por seguridad",
      ],
      Change: ["Cambiar"],
      "Can't delete the account": ["No se puede eliminar la cuenta"],
      "The account can't be delete while still holding some balance. First make sure that the owner make a complete cashout.":
        [
          "La cuenta no puede ser eliminada mientras tiene saldo. Primero aseguresé que el dueño haga un egreso completo.",
        ],
      "Account removed": ["Cuenta eliminada"],
      "No enough permission to delete the account.": [
        "No tiene permisos suficientes para eliminar la cuenta.",
      ],
      "The username was not found.": ["El nombr ede usuario no se encontró."],
      "Can't delete a reserved username.": [
        "No se puede eliminar un nombre de usuario reservado.",
      ],
      "Can't delete an account with balance different than zero.": [
        "No se puede eliminar una cuenta con saldo diferente a cero.",
      ],
      "name doesn't match": ["el nombre no coincide"],
      "You are going to remove the account": ["Está por eliminar la cuenta"],
      "This step can't be undone.": ["Este paso no puede ser deshecho."],
      'Deleting account "%1$s"': ['Borrando cuenta "%1$s"'],
      Verification: ["Verificación"],
      "enter the account name that is going to be deleted": [
        "ingrese el nombre de cuenta que será eliminado",
      ],
      'Account created with password "%1$s". The user must change the password on the next login.':
        [
          'Cuenta creada con contraseña "%1$s". El usuario debe cambiar la contraseña en el siguiente ingreso.',
        ],
      "Server replied that phone or email is invalid": [
        "El servidor respondió que el teléfono o correo eletrónico es invalido",
      ],
      "The rights to perform the operation are not sufficient": [
        "Los permisos para ejecutar la operación no son suficientes",
      ],
      "Account username is already taken": [
        "El nombre del usuario ya está tomado",
      ],
      "Account id is already taken": ["El id de cuenta ya está tomado"],
      "Bank ran out of bonus credit.": [
        "El banco no tiene mas crédito de bonus.",
      ],
      "Account username can't be used because is reserved": [
        "El nombre de usuario de la cuenta no puede userse porque está reservado",
      ],
      "Can't create accounts": ["No puede crear cuentas"],
      "Only system admin can create accounts.": [
        "Solo los administradores del sistema pueden crear cuentas.",
      ],
      "New business account": ["Nueva cuenta"],
      Create: ["Crear"],
      "Cashout not supported.": ["Egreso no soportado."],
      "Account not found.": ["Cuenta no encontrada."],
      "Latest cashouts": ["Últimos egresos"],
      Created: ["Creado"],
      Confirmed: ["Confirmado"],
      "Total debit": ["Débito total"],
      "Total credit": ["Crédito total"],
      Status: ["Estado"],
      never: ["nunca"],
      "Cashout for account %1$s": ["Egreso para cuenta %1$s"],
      "This cashout not found. Maybe already aborted.": [
        "Este egreso no se encontró. Quizá fue abortado.",
      ],
      "Cashout not found. It may be also mean that it was already aborted.": [
        "Egreso no econtrado. También puede significar que ya ha sido abortado.",
      ],
      "Cashout was already confimed.": ["Egreso ya fue confirmado."],
      "Cashout operation is not supported.": [
        "Operación de egreso no soportada.",
      ],
      "The cashout operation is already aborted.": [
        "La operación de egreso ya está abortada.",
      ],
      "Missing destination account.": ["Falta cuenta destino."],
      "Too many failed attempts.": ["Demasiados intentos fallidos."],
      "The code for this cashout is invalid.": [
        "El código para este egreso es invalido.",
      ],
      "Cashout detail": ["Detalles de egreso"],
      Debited: ["Debitado"],
      Credited: ["Acreditado"],
      "Enter the confirmation code": ["Ingresar el código de confirmación"],
      Abort: ["Abortar"],
      Confirm: ["Confirmar"],
      "Unauthorized to make the operation, maybe the session has expired or the password changed.":
        [
          "No autorizado para hacer la operación, quizá la sesión haya expirado or cambió la contraseña.",
        ],
      "The operation was rejected due to insufficient funds.": [
        "La operación fue rechazada debido a saldo insuficiente.",
      ],
      "Do not show this again": ["No mostrar otra vez"],
      Close: ["Cerrar"],
      "On this device": ["En este dispositivo"],
      'If you are using a web browser on desktop you should access your wallet with the GNU Taler WebExtension now or click the link if your WebExtension have the "Inject Taler support" option enabled.':
        [
          'Si esta usando un explorador web de escritorio deberías acceder ahora a tu billletera con la GNU Taler WebExtension o hacer click en el link si tu extensión tiene la configuración "Inyectar soporte para Taler" habilitada.',
        ],
      Start: ["Comenzar"],
      "On a mobile phone": ["En un dispotivo mobile"],
      "Scan the QR code with your mobile device.": [
        "Escanear el código QR con tu dispotivo móvil.",
      ],
      "There is an operation already": ["Ya hay una operación"],
      "Complete or cancel the operation in": [
        "Completa o cancela la operación en",
      ],
      "Server responded with an invalid  withdraw URI": [
        "El servidor respondió con una URI de extracción inválida",
      ],
      "Withdraw URI: %1$s": ["URI de extracción: %1$s"],
      "The operation was rejected due to insufficient funds": [
        "La operación fue rechazada debido a fundos insuficientes",
      ],
      "Prepare your wallet": ["Prepare su billetera"],
      "After using your wallet you will need to confirm or cancel the operation on this site.":
        [
          "Despues de usar tu billetera necesitarás confirmar o cancelar la operación en este sitio.",
        ],
      "You need a GNU Taler Wallet": ["Necesitas una GNU Taler Wallet"],
      "If you don't have one yet you can follow the instruction in": [
        "Si no tienes una todavía puedes seguir las instrucciones en",
      ],
      "Send money": ["Enviar dinero"],
      "to a %1$s wallet": ["a una billetera %1$s"],
      "Withdraw digital money into your mobile wallet or browser extension": [
        "Extraer dinero digital a tu billetera móvil o extesión web",
      ],
      "operation ready": ["operación lista"],
      "to another bank account": ["a otra cuenta bancaria"],
      "Make a wire transfer to an account with known bank account number.": [
        "Hacer una transferencia bancaria a una cuenta con un número de cuenta conocido.",
      ],
      "Transfer details": ["Detalles de transferencia"],
      "This is a demo bank": ["Este es un banco de demostración"],
      "This part of the demo shows how a bank that supports Taler directly would work. In addition to using your own bank account, you can also see the transaction history of some %1$s.":
        [
          "Esta parte de la demostración muestra cómo funciona un banco que soporta Taler directamente. Además de usar tu propia cuenta de banco, también podrás ver el historial de transacciones de algunas %1$s.",
        ],
      "This part of the demo shows how a bank that supports Taler directly would work.":
        [
          "Esta parte de la demostración muetra como un banco que soporta Taler directamente funcionaría.",
        ],
      "Pending account delete operation": [
        "Operación pendiente de eliminación de cuenta",
      ],
      "Pending account update operation": [
        "Operación pendiente de actualización de cuenta",
      ],
      "Pending password update operation": [
        "Operación pendiente de actualización de password",
      ],
      "Pending transaction operation": ["Operación pendiente de transacción"],
      "Pending withdrawal operation": ["Operación pendiente de extracción"],
      "Pending cashout operation": ["Operación pendiente de egreso"],
      "You can complete or cancel the operation in": [
        "Puedes completar o cancelar la operación en",
      ],
      "Download bank stats": ["Descargar estadísticas del banco"],
      "Include hour metric": ["Incluir métrica horaria"],
      "Include day metric": ["Incluir métrica diaria"],
      "Include month metric": ["Incluir métrica mensual"],
      "Include year metric": ["Incluir métrica anual"],
      "Include table header": ["Incluir encabezado de tabla"],
      "Add previous metric for compare": [
        "Agregar métrica previa para comparar",
      ],
      "Fail on first error": ["Fallar en el primer error"],
      Download: ["Descargar"],
      "downloading... %1$s": ["descargando... %1$s"],
      "Download completed": ["Descarga completada"],
      "click here to save the file in your computer": [
        "click aquí para guardar el archivo en su computadora",
      ],
      "Challenge not found.": ["Desafío no encontrado."],
      "This user is not authorized to complete this challenge.": [
        "Este usuario no está autorizado para completar este desafío.",
      ],
      "Too many attemps, try another code.": [
        "Demasiados intentos, intente otro código.",
      ],
      "The confirmation code is wrong, try again.": [
        "El código de confirmación es erroneo, intente otra vez.",
      ],
      "The operation expired.": ["La operación expiró."],
      "The operation failed.": ["La operación falló."],
      "The operation needs another confirmation to complete.": [
        "La operación necesita otra confirmación para completar.",
      ],
      "Account delete": ["Eliminación de cuenta"],
      "Account update": ["Actualización de cuenta"],
      "Password update": ["Actualización de contraseña"],
      "Wire transfer": ["Transferencia bancaria"],
      Withdrawal: ["Extracción"],
      "Confirm the operation": ["Confirmar la operación"],
      "Send again": ["Enviar otra vez"],
      "Send code": ["Enviar código"],
      "Operation details": ["Detalles de operación"],
      "Challenge details": ["Detalles del desafío"],
      "Sent at": ["Enviado a"],
      "To phone": ["Al teléfono"],
      "To email": ["Al email"],
      "Welcome to %1$s!": ["Bienvenido a %1$s!"],
    },
  },
  domain: "messages",
  plural_forms: "nplurals=2; plural=n != 1;",
  lang: "es",
  completeness: 100,
};

strings["en"] = {
  locale_data: {
    messages: {
      "": {
        domain: "messages",
        plural_forms: "nplurals=2; plural=(n != 1);",
        lang: "en",
      },
      "Operation failed, please report": [""],
      "Request timeout": [""],
      "Request throttled": [""],
      "Malformed response": [""],
      "Network error": [""],
      "Unexpected request error": [""],
      "Unexpected error": [""],
      "IBAN numbers usually have more that 4 digits": [""],
      "IBAN numbers usually have less that 34 digits": [""],
      "IBAN country code not found": [""],
      "IBAN number is not valid, checksum is wrong": [""],
      "Max withdrawal amount": [""],
      "Show withdrawal confirmation": [""],
      "Show demo description": [""],
      "Show install wallet first": [""],
      "Use fast withdrawal form": [""],
      "Show debug info": [""],
      "The reserve operation has been confirmed previously and can't be aborted":
        [""],
      "The operation id is invalid.": [""],
      "The operation was not found.": [""],
      "If you have a Taler wallet installed in this device": [""],
      "You will see the details of the operation in your wallet including the fees (if applies). If you still don't have one you can install it following instructions in":
        [""],
      "this page": [""],
      Withdraw: [""],
      "Or if you have the wallet in another device": [""],
      "Scan the QR below to start the withdrawal.": [""],
      required: [""],
      "IBAN should have just uppercased letters and numbers": [""],
      "not valid": [""],
      "should be greater than 0": [""],
      "balance is not enough": [""],
      "does not follow the pattern": [""],
      'only "IBAN" target are supported': [""],
      'use the "amount" parameter to specify the amount to be transferred': [
        "",
      ],
      "the amount is not valid": [""],
      'use the "message" parameter to specify a reference text for the transfer':
        [""],
      "The request was invalid or the payto://-URI used unacceptable features.":
        [""],
      "Not enough permission to complete the operation.": [""],
      'The destination account "%1$s" was not found.': [""],
      "The origin and the destination of the transfer can't be the same.": [""],
      "Your balance is not enough.": [""],
      'The origin account "%1$s" was not found.': [""],
      "Using a form": [""],
      "Import payto:// URI": [""],
      Recipient: [""],
      "IBAN of the recipient's account": [""],
      "Transfer subject": [""],
      subject: [""],
      "some text to identify the transfer": [""],
      Amount: [""],
      "amount to transfer": [""],
      "payto URI:": [""],
      "uniform resource identifier of the target account": [""],
      "payto://iban/[receiver-iban]?message=[subject]&amount=[%1$s:X.Y]": [""],
      Cancel: [""],
      Send: [""],
      "Missing username": [""],
      "Missing password": [""],
      'Wrong credentials for "%1$s"': [""],
      "Account not found": [""],
      Username: [""],
      "username of the account": [""],
      Password: [""],
      "password of the account": [""],
      Check: [""],
      "Log in": [""],
      Register: [""],
      "Wire transfer completed!": [""],
      "The withdrawal has been aborted previously and can't be confirmed": [""],
      "The withdrawal operation can't be confirmed before a wallet accepted the transaction.":
        [""],
      "Your balance is not enough for the operation.": [""],
      "Confirm the withdrawal operation": [""],
      "Wire transfer details": [""],
      "Taler Exchange operator's account": [""],
      "Taler Exchange operator's name": [""],
      Transfer: [""],
      "Authentication required": [""],
      "This operation was created with other username": [""],
      "Operation aborted": [""],
      "The wire transfer to the Taler Exchange operator's account was aborted, your balance was not affected.":
        [""],
      "You can close this page now or continue to the account page.": [""],
      Continue: [""],
      "Withdrawal confirmed": [""],
      "The wire transfer to the Taler operator has been initiated. You will soon receive the requested amount in your Taler wallet.":
        [""],
      Done: [""],
      "Operation canceled": [""],
      "The operation is marked as 'selected' but some step in the withdrawal failed":
        [""],
      "The account is selected but no withdrawal identification found.": [""],
      "There is a withdrawal identification but no account has been selected or the selected account is invalid.":
        [""],
      "No withdrawal ID found and no account has been selected or the selected account is invalid.":
        [""],
      "Operation not found": [""],
      "This operation is not known by the server. The operation id is wrong or the server deleted the operation information before reaching here.":
        [""],
      "Cotinue to dashboard": [""],
      "The Withdrawal URI is not valid": [""],
      'the bank backend is not supported. supported version "%1$s", server version "%2$s"':
        [""],
      "Internal error, please report.": [""],
      Preferences: [""],
      "Welcome, %1$s": [""],
      "Latest transactions": [""],
      Date: [""],
      Counterpart: [""],
      Subject: [""],
      sent: [""],
      received: [""],
      "invalid value": [""],
      to: [""],
      from: [""],
      "First page": [""],
      Next: [""],
      "History of public accounts": [""],
      "Currently, the bank is not accepting new registrations!": [""],
      "Missing name": [""],
      "Use letters and numbers only, and start with a lowercase letter": [""],
      "Passwords don't match": [""],
      "Server replied with invalid phone or email.": [""],
      "Registration is disabled because the bank ran out of bonus credit.": [
        "",
      ],
      "No enough permission to create that account.": [""],
      "That account id is already taken.": [""],
      "That username is already taken.": [""],
      "That username can't be used because is reserved.": [""],
      "Only admin is allow to set debt limit.": [""],
      "No information for the selected authentication channel.": [""],
      "Authentication channel is not supported.": [""],
      "Only admin can create accounts with second factor authentication.": [""],
      "Account registration": [""],
      "Repeat password": [""],
      Name: [""],
      "Create a random temporary user": [""],
      "Make a wire transfer": [""],
      "Wire transfer created!": [""],
      Accounts: [""],
      "A list of all business account in the bank.": [""],
      "Create account": [""],
      Balance: [""],
      Actions: [""],
      unknown: [""],
      "change password": [""],
      remove: [""],
      "Select a section": [""],
      "Last hour": [""],
      "Last day": [""],
      "Last month": [""],
      "Last year": [""],
      "Last Year": [""],
      "Trading volume on %1$s compared to %2$s": [""],
      Cashin: [""],
      Cashout: [""],
      Payin: [""],
      Payout: [""],
      "download stats as CSV": [""],
      "Descreased by": [""],
      "Increased by": [""],
      "Unable to create a cashout": [""],
      "The bank configuration does not support cashout operations.": [""],
      invalid: [""],
      "need to be higher due to fees": [""],
      "the total transfer at destination will be zero": [""],
      "Cashout created": [""],
      "Duplicated request detected, check if the operation succeded or try again.":
        [""],
      "The conversion rate was incorrectly applied": [""],
      "The account does not have sufficient funds": [""],
      "Cashouts are not supported": [""],
      "Missing cashout URI in the profile": [""],
      "Sending the confirmation message failed, retry later or contact the administrator.":
        [""],
      "Convertion rate": [""],
      Fee: [""],
      "To account": [""],
      "No cashout account": [""],
      "Before doing a cashout you need to complete your profile": [""],
      "Amount to send": [""],
      "Amount to receive": [""],
      "Total cost": [""],
      "Balance left": [""],
      "Before fee": [""],
      "Total cashout transfer": [""],
      "No cashout channel available": [""],
      "Before doing a cashout the server need to provide an second channel to confirm the operation":
        [""],
      "Second factor authentication": [""],
      Email: [""],
      "add a email in your profile to enable this option": [""],
      SMS: [""],
      "add a phone number in your profile to enable this option": [""],
      Details: [""],
      Delete: [""],
      Credentials: [""],
      Cashouts: [""],
      "it doesnt have the pattern of an IBAN number": [""],
      "it doesnt have the pattern of an email": [""],
      "should start with +": [""],
      "phone number can't have other than numbers": [""],
      "account identification in the bank": [""],
      "name of the person owner the account": [""],
      "Internal IBAN": [""],
      "if empty a random account number will be assigned": [""],
      "account identification for bank transfer": [""],
      Phone: [""],
      "Cashout IBAN": [""],
      "account number where the money is going to be sent when doing cashouts":
        [""],
      "Max debt": [""],
      "how much is user able to transfer after zero balance": [""],
      "Is this a Taler Exchange?": [""],
      "This server doesn't support second factor authentication.": [""],
      "Enable second factor authentication": [""],
      "Using email": [""],
      "Using SMS": [""],
      "Is this account public?": [""],
      "public accounts have their balance publicly accesible": [""],
      "Account updated": [""],
      "The rights to change the account are not sufficient": [""],
      "The username was not found": [""],
      "You can't change the legal name, please contact the your account administrator.":
        [""],
      "You can't change the debt limit, please contact the your account administrator.":
        [""],
      "You can't change the cashout address, please contact the your account administrator.":
        [""],
      "You can't change the contact data, please contact the your account administrator.":
        [""],
      'Account "%1$s"': [""],
      "Change details": [""],
      Update: [""],
      "password doesn't match": [""],
      "Password changed": [""],
      "Not authorized to change the password, maybe the session is invalid.": [
        "",
      ],
      "You need to provide the old password. If you don't have it contact your account administrator.":
        [""],
      "Your current password doesn't match, can't change to a new password.": [
        "",
      ],
      "Update password": [""],
      "New password": [""],
      "Type it again": [""],
      "repeat the same password": [""],
      "Current password": [""],
      "your current password, for security": [""],
      Change: [""],
      "Can't delete the account": [""],
      "The account can't be delete while still holding some balance. First make sure that the owner make a complete cashout.":
        [""],
      "Account removed": [""],
      "No enough permission to delete the account.": [""],
      "The username was not found.": [""],
      "Can't delete a reserved username.": [""],
      "Can't delete an account with balance different than zero.": [""],
      "name doesn't match": [""],
      "You are going to remove the account": [""],
      "This step can't be undone.": [""],
      'Deleting account "%1$s"': [""],
      Verification: [""],
      "enter the account name that is going to be deleted": [""],
      'Account created with password "%1$s". The user must change the password on the next login.':
        [""],
      "Server replied that phone or email is invalid": [""],
      "The rights to perform the operation are not sufficient": [""],
      "Account username is already taken": [""],
      "Account id is already taken": [""],
      "Bank ran out of bonus credit.": [""],
      "Account username can't be used because is reserved": [""],
      "Can't create accounts": [""],
      "Only system admin can create accounts.": [""],
      "New business account": [""],
      Create: [""],
      "Cashout not supported.": [""],
      "Account not found.": [""],
      "Latest cashouts": [""],
      Created: [""],
      Confirmed: [""],
      "Total debit": [""],
      "Total credit": [""],
      Status: [""],
      never: [""],
      "Cashout for account %1$s": [""],
      "This cashout not found. Maybe already aborted.": [""],
      "Cashout not found. It may be also mean that it was already aborted.": [
        "",
      ],
      "Cashout was already confimed.": [""],
      "Cashout operation is not supported.": [""],
      "The cashout operation is already aborted.": [""],
      "Missing destination account.": [""],
      "Too many failed attempts.": [""],
      "The code for this cashout is invalid.": [""],
      "Cashout detail": [""],
      Debited: [""],
      Credited: [""],
      "Enter the confirmation code": [""],
      Abort: [""],
      Confirm: [""],
      "Unauthorized to make the operation, maybe the session has expired or the password changed.":
        [""],
      "The operation was rejected due to insufficient funds.": [""],
      "Do not show this again": [""],
      Close: [""],
      "On this device": [""],
      'If you are using a web browser on desktop you should access your wallet with the GNU Taler WebExtension now or click the link if your WebExtension have the "Inject Taler support" option enabled.':
        [""],
      Start: [""],
      "On a mobile phone": [""],
      "Scan the QR code with your mobile device.": [""],
      "There is an operation already": [""],
      "Complete or cancel the operation in": [""],
      "Server responded with an invalid  withdraw URI": [""],
      "Withdraw URI: %1$s": [""],
      "The operation was rejected due to insufficient funds": [""],
      "Prepare your wallet": [""],
      "After using your wallet you will need to confirm or cancel the operation on this site.":
        [""],
      "You need a GNU Taler Wallet": [""],
      "If you don't have one yet you can follow the instruction in": [""],
      "Send money": [""],
      "to a %1$s wallet": [""],
      "Withdraw digital money into your mobile wallet or browser extension": [
        "",
      ],
      "operation ready": [""],
      "to another bank account": [""],
      "Make a wire transfer to an account with known bank account number.": [
        "",
      ],
      "Transfer details": [""],
      "This is a demo bank": [""],
      "This part of the demo shows how a bank that supports Taler directly would work. In addition to using your own bank account, you can also see the transaction history of some %1$s.":
        [""],
      "This part of the demo shows how a bank that supports Taler directly would work.":
        [""],
      "Pending account delete operation": [""],
      "Pending account update operation": [""],
      "Pending password update operation": [""],
      "Pending transaction operation": [""],
      "Pending withdrawal operation": [""],
      "Pending cashout operation": [""],
      "You can complete or cancel the operation in": [""],
      "Download bank stats": [""],
      "Include hour metric": [""],
      "Include day metric": [""],
      "Include month metric": [""],
      "Include year metric": [""],
      "Include table header": [""],
      "Add previous metric for compare": [""],
      "Fail on first error": [""],
      Download: [""],
      "downloading... %1$s": [""],
      "Download completed": [""],
      "click here to save the file in your computer": [""],
      "Challenge not found.": [""],
      "This user is not authorized to complete this challenge.": [""],
      "Too many attemps, try another code.": [""],
      "The confirmation code is wrong, try again.": [""],
      "The operation expired.": [""],
      "The operation failed.": [""],
      "The operation needs another confirmation to complete.": [""],
      "Account delete": [""],
      "Account update": [""],
      "Password update": [""],
      "Wire transfer": [""],
      Withdrawal: [""],
      "Confirm the operation": [""],
      "Send again": [""],
      "Send code": [""],
      "Operation details": [""],
      "Challenge details": [""],
      "Sent at": [""],
      "To phone": [""],
      "To email": [""],
      "Welcome to %1$s!": [""],
    },
  },
  domain: "messages",
  plural_forms: "nplurals=2; plural=(n != 1);",
  lang: "en",
  completeness: 100,
};

strings["de"] = {
  locale_data: {
    messages: {
      "": {
        domain: "messages",
        plural_forms: "nplurals=2; plural=n != 1;",
        lang: "de",
      },
      "Operation failed, please report": [""],
      "Request timeout": [""],
      "Request throttled": [""],
      "Malformed response": [""],
      "Network error": [""],
      "Unexpected request error": [""],
      "Unexpected error": [""],
      "IBAN numbers usually have more that 4 digits": [""],
      "IBAN numbers usually have less that 34 digits": [""],
      "IBAN country code not found": [""],
      "IBAN number is not valid, checksum is wrong": [""],
      "Max withdrawal amount": [""],
      "Show withdrawal confirmation": [""],
      "Show demo description": [""],
      "Show install wallet first": [""],
      "Use fast withdrawal form": [""],
      "Show debug info": [""],
      "The reserve operation has been confirmed previously and can't be aborted":
        [""],
      "The operation id is invalid.": [""],
      "The operation was not found.": [""],
      "If you have a Taler wallet installed in this device": [""],
      "You will see the details of the operation in your wallet including the fees (if applies). If you still don't have one you can install it following instructions in":
        [""],
      "this page": [""],
      Withdraw: [""],
      "Or if you have the wallet in another device": [""],
      "Scan the QR below to start the withdrawal.": [""],
      required: [""],
      "IBAN should have just uppercased letters and numbers": [""],
      "not valid": [""],
      "should be greater than 0": [""],
      "balance is not enough": [""],
      "does not follow the pattern": [""],
      'only "IBAN" target are supported': [""],
      'use the "amount" parameter to specify the amount to be transferred': [
        "",
      ],
      "the amount is not valid": [""],
      'use the "message" parameter to specify a reference text for the transfer':
        [""],
      "The request was invalid or the payto://-URI used unacceptable features.":
        [""],
      "Not enough permission to complete the operation.": [""],
      'The destination account "%1$s" was not found.': [""],
      "The origin and the destination of the transfer can't be the same.": [""],
      "Your balance is not enough.": [""],
      'The origin account "%1$s" was not found.': [""],
      "Using a form": [""],
      "Import payto:// URI": [""],
      Recipient: [""],
      "IBAN of the recipient's account": [""],
      "Transfer subject": [""],
      subject: ["Verwendungszweck"],
      "some text to identify the transfer": [""],
      Amount: ["Betrag"],
      "amount to transfer": ["Betrag"],
      "payto URI:": [""],
      "uniform resource identifier of the target account": [""],
      "payto://iban/[receiver-iban]?message=[subject]&amount=[%1$s:X.Y]": [""],
      Cancel: [""],
      Send: [""],
      "Missing username": [""],
      "Missing password": [""],
      'Wrong credentials for "%1$s"': [""],
      "Account not found": [""],
      Username: [""],
      "username of the account": [""],
      Password: [""],
      "password of the account": ["Buchungen auf öffentlich sichtbaren Konten"],
      Check: [""],
      "Log in": [""],
      Register: [""],
      "Wire transfer completed!": [""],
      "The withdrawal has been aborted previously and can't be confirmed": [""],
      "The withdrawal operation can't be confirmed before a wallet accepted the transaction.":
        [""],
      "Your balance is not enough for the operation.": [""],
      "Confirm the withdrawal operation": ["Abhebung bestätigen"],
      "Wire transfer details": [""],
      "Taler Exchange operator's account": [""],
      "Taler Exchange operator's name": [""],
      Transfer: [""],
      "Authentication required": [""],
      "This operation was created with other username": [""],
      "Operation aborted": [""],
      "The wire transfer to the Taler Exchange operator's account was aborted, your balance was not affected.":
        [""],
      "You can close this page now or continue to the account page.": [""],
      Continue: [""],
      "Withdrawal confirmed": [""],
      "The wire transfer to the Taler operator has been initiated. You will soon receive the requested amount in your Taler wallet.":
        [""],
      Done: [""],
      "Operation canceled": [""],
      "The operation is marked as 'selected' but some step in the withdrawal failed":
        [""],
      "The account is selected but no withdrawal identification found.": [""],
      "There is a withdrawal identification but no account has been selected or the selected account is invalid.":
        [""],
      "No withdrawal ID found and no account has been selected or the selected account is invalid.":
        [""],
      "Operation not found": [""],
      "This operation is not known by the server. The operation id is wrong or the server deleted the operation information before reaching here.":
        [""],
      "Cotinue to dashboard": [""],
      "The Withdrawal URI is not valid": [""],
      'the bank backend is not supported. supported version "%1$s", server version "%2$s"':
        [""],
      "Internal error, please report.": [""],
      Preferences: [""],
      "Welcome, %1$s": [""],
      "Latest transactions": [""],
      Date: ["Datum"],
      Counterpart: ["Empfänger"],
      Subject: ["Verwendungszweck"],
      sent: [""],
      received: [""],
      "invalid value": [""],
      to: [""],
      from: [""],
      "First page": [""],
      Next: [""],
      "History of public accounts": [
        "Buchungen auf öffentlich sichtbaren Konten",
      ],
      "Currently, the bank is not accepting new registrations!": [""],
      "Missing name": [""],
      "Use letters and numbers only, and start with a lowercase letter": [""],
      "Passwords don't match": [""],
      "Server replied with invalid phone or email.": [""],
      "Registration is disabled because the bank ran out of bonus credit.": [
        "",
      ],
      "No enough permission to create that account.": [""],
      "That account id is already taken.": [""],
      "That username is already taken.": [""],
      "That username can't be used because is reserved.": [""],
      "Only admin is allow to set debt limit.": [""],
      "No information for the selected authentication channel.": [""],
      "Authentication channel is not supported.": [""],
      "Only admin can create accounts with second factor authentication.": [""],
      "Account registration": [""],
      "Repeat password": [""],
      Name: [""],
      "Create a random temporary user": [""],
      "Make a wire transfer": [""],
      "Wire transfer created!": [""],
      Accounts: ["Betrag"],
      "A list of all business account in the bank.": [""],
      "Create account": [""],
      Balance: [""],
      Actions: [""],
      unknown: [""],
      "change password": [""],
      remove: [""],
      "Select a section": [""],
      "Last hour": [""],
      "Last day": [""],
      "Last month": [""],
      "Last year": [""],
      "Last Year": [""],
      "Trading volume on %1$s compared to %2$s": [""],
      Cashin: [""],
      Cashout: [""],
      Payin: [""],
      Payout: [""],
      "download stats as CSV": [""],
      "Descreased by": [""],
      "Increased by": [""],
      "Unable to create a cashout": [""],
      "The bank configuration does not support cashout operations.": [""],
      invalid: [""],
      "need to be higher due to fees": [""],
      "the total transfer at destination will be zero": [""],
      "Cashout created": [""],
      "Duplicated request detected, check if the operation succeded or try again.":
        [""],
      "The conversion rate was incorrectly applied": [""],
      "The account does not have sufficient funds": [""],
      "Cashouts are not supported": [""],
      "Missing cashout URI in the profile": [""],
      "Sending the confirmation message failed, retry later or contact the administrator.":
        [""],
      "Convertion rate": [""],
      Fee: [""],
      "To account": [""],
      "No cashout account": [""],
      "Before doing a cashout you need to complete your profile": [""],
      "Amount to send": ["Betrag"],
      "Amount to receive": [""],
      "Total cost": [""],
      "Balance left": [""],
      "Before fee": [""],
      "Total cashout transfer": [""],
      "No cashout channel available": [""],
      "Before doing a cashout the server need to provide an second channel to confirm the operation":
        [""],
      "Second factor authentication": [""],
      Email: [""],
      "add a email in your profile to enable this option": [""],
      SMS: [""],
      "add a phone number in your profile to enable this option": [""],
      Details: [""],
      Delete: [""],
      Credentials: [""],
      Cashouts: [""],
      "it doesnt have the pattern of an IBAN number": [""],
      "it doesnt have the pattern of an email": [""],
      "should start with +": [""],
      "phone number can't have other than numbers": [""],
      "account identification in the bank": [""],
      "name of the person owner the account": [""],
      "Internal IBAN": [""],
      "if empty a random account number will be assigned": [""],
      "account identification for bank transfer": [""],
      Phone: [""],
      "Cashout IBAN": [""],
      "account number where the money is going to be sent when doing cashouts":
        [""],
      "Max debt": [""],
      "how much is user able to transfer after zero balance": [""],
      "Is this a Taler Exchange?": [""],
      "This server doesn't support second factor authentication.": [""],
      "Enable second factor authentication": [""],
      "Using email": [""],
      "Using SMS": [""],
      "Is this account public?": [""],
      "public accounts have their balance publicly accesible": [""],
      "Account updated": [""],
      "The rights to change the account are not sufficient": [""],
      "The username was not found": [""],
      "You can't change the legal name, please contact the your account administrator.":
        [""],
      "You can't change the debt limit, please contact the your account administrator.":
        [""],
      "You can't change the cashout address, please contact the your account administrator.":
        [""],
      "You can't change the contact data, please contact the your account administrator.":
        [""],
      'Account "%1$s"': [""],
      "Change details": [""],
      Update: [""],
      "password doesn't match": [""],
      "Password changed": [""],
      "Not authorized to change the password, maybe the session is invalid.": [
        "",
      ],
      "You need to provide the old password. If you don't have it contact your account administrator.":
        [""],
      "Your current password doesn't match, can't change to a new password.": [
        "",
      ],
      "Update password": [""],
      "New password": [""],
      "Type it again": [""],
      "repeat the same password": [""],
      "Current password": [""],
      "your current password, for security": [""],
      Change: [""],
      "Can't delete the account": [""],
      "The account can't be delete while still holding some balance. First make sure that the owner make a complete cashout.":
        [""],
      "Account removed": [""],
      "No enough permission to delete the account.": [""],
      "The username was not found.": [""],
      "Can't delete a reserved username.": [""],
      "Can't delete an account with balance different than zero.": [""],
      "name doesn't match": [""],
      "You are going to remove the account": [""],
      "This step can't be undone.": [""],
      'Deleting account "%1$s"': [""],
      Verification: [""],
      "enter the account name that is going to be deleted": [""],
      'Account created with password "%1$s". The user must change the password on the next login.':
        [""],
      "Server replied that phone or email is invalid": [""],
      "The rights to perform the operation are not sufficient": [""],
      "Account username is already taken": [""],
      "Account id is already taken": [""],
      "Bank ran out of bonus credit.": [""],
      "Account username can't be used because is reserved": [""],
      "Can't create accounts": [""],
      "Only system admin can create accounts.": [""],
      "New business account": [""],
      Create: [""],
      "Cashout not supported.": [""],
      "Account not found.": [""],
      "Latest cashouts": [""],
      Created: [""],
      Confirmed: ["Bestätigen"],
      "Total debit": [""],
      "Total credit": [""],
      Status: [""],
      never: [""],
      "Cashout for account %1$s": [""],
      "This cashout not found. Maybe already aborted.": [""],
      "Cashout not found. It may be also mean that it was already aborted.": [
        "",
      ],
      "Cashout was already confimed.": [""],
      "Cashout operation is not supported.": [""],
      "The cashout operation is already aborted.": [""],
      "Missing destination account.": [""],
      "Too many failed attempts.": [""],
      "The code for this cashout is invalid.": [""],
      "Cashout detail": [""],
      Debited: [""],
      Credited: [""],
      "Enter the confirmation code": [""],
      Abort: [""],
      Confirm: ["Bestätigen"],
      "Unauthorized to make the operation, maybe the session has expired or the password changed.":
        [""],
      "The operation was rejected due to insufficient funds.": [""],
      "Do not show this again": [""],
      Close: [""],
      "On this device": [""],
      'If you are using a web browser on desktop you should access your wallet with the GNU Taler WebExtension now or click the link if your WebExtension have the "Inject Taler support" option enabled.':
        [""],
      Start: [""],
      "On a mobile phone": [""],
      "Scan the QR code with your mobile device.": [""],
      "There is an operation already": [""],
      "Complete or cancel the operation in": ["Abhebung bestätigen"],
      "Server responded with an invalid  withdraw URI": [""],
      "Withdraw URI: %1$s": [""],
      "The operation was rejected due to insufficient funds": [""],
      "Prepare your wallet": [""],
      "After using your wallet you will need to confirm or cancel the operation on this site.":
        [""],
      "You need a GNU Taler Wallet": [""],
      "If you don't have one yet you can follow the instruction in": [""],
      "Send money": [""],
      "to a %1$s wallet": [""],
      "Withdraw digital money into your mobile wallet or browser extension": [
        "",
      ],
      "operation ready": [""],
      "to another bank account": [""],
      "Make a wire transfer to an account with known bank account number.": [
        "",
      ],
      "Transfer details": [""],
      "This is a demo bank": [""],
      "This part of the demo shows how a bank that supports Taler directly would work. In addition to using your own bank account, you can also see the transaction history of some %1$s.":
        [""],
      "This part of the demo shows how a bank that supports Taler directly would work.":
        [""],
      "Pending account delete operation": [""],
      "Pending account update operation": [""],
      "Pending password update operation": [""],
      "Pending transaction operation": [""],
      "Pending withdrawal operation": [""],
      "Pending cashout operation": [""],
      "You can complete or cancel the operation in": [""],
      "Download bank stats": [""],
      "Include hour metric": [""],
      "Include day metric": [""],
      "Include month metric": [""],
      "Include year metric": [""],
      "Include table header": [""],
      "Add previous metric for compare": [""],
      "Fail on first error": [""],
      Download: [""],
      "downloading... %1$s": [""],
      "Download completed": [""],
      "click here to save the file in your computer": [""],
      "Challenge not found.": [""],
      "This user is not authorized to complete this challenge.": [""],
      "Too many attemps, try another code.": [""],
      "The confirmation code is wrong, try again.": [""],
      "The operation expired.": [""],
      "The operation failed.": [""],
      "The operation needs another confirmation to complete.": [""],
      "Account delete": [""],
      "Account update": [""],
      "Password update": [""],
      "Wire transfer": [""],
      Withdrawal: ["Abhebung bestätigen"],
      "Confirm the operation": ["Abhebung bestätigen"],
      "Send again": [""],
      "Send code": [""],
      "Operation details": [""],
      "Challenge details": [""],
      "Sent at": [""],
      "To phone": [""],
      "To email": [""],
      "Welcome to %1$s!": [""],
    },
  },
  domain: "messages",
  plural_forms: "nplurals=2; plural=n != 1;",
  lang: "de",
  completeness: 4,
};