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
|
{
"language": "en",
"messages": [
{
"id": "Andorra",
"message": "Andorra",
"translation": "Andorra",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Austria",
"message": "Austria",
"translation": "Austria",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Belgium",
"message": "Belgium",
"translation": "Belgium",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Cyprus",
"message": "Cyprus",
"translation": "Cyprus",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Germany",
"message": "Germany",
"translation": "Germany",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Estonia",
"message": "Estonia",
"translation": "Estonia",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Spain",
"message": "Spain",
"translation": "Spain",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Finland",
"message": "Finland",
"translation": "Finland",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "France",
"message": "France",
"translation": "France",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Greece",
"message": "Greece",
"translation": "Greece",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Croatia",
"message": "Croatia",
"translation": "Croatia",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Ireland",
"message": "Ireland",
"translation": "Ireland",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Italy",
"message": "Italy",
"translation": "Italy",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Lithuania",
"message": "Lithuania",
"translation": "Lithuania",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Luxembourg",
"message": "Luxembourg",
"translation": "Luxembourg",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Latvia",
"message": "Latvia",
"translation": "Latvia",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Monaco",
"message": "Monaco",
"translation": "Monaco",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Malta",
"message": "Malta",
"translation": "Malta",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Netherlands",
"message": "Netherlands",
"translation": "Netherlands",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Portugal",
"message": "Portugal",
"translation": "Portugal",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Slovenia",
"message": "Slovenia",
"translation": "Slovenia",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Slovakia",
"message": "Slovakia",
"translation": "Slovakia",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "San Marino",
"message": "San Marino",
"translation": "San Marino",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Vatican City",
"message": "Vatican City",
"translation": "Vatican City",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Page Not Found",
"message": "Page Not Found",
"translation": "Page Not Found",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The page you were looking for does not exist. If you believe this is a mistake then don’t hesitate to contact @onetruemangoman on Discord or email us at %s.",
"message": "The page you were looking for does not exist. If you believe this is a mistake then don’t hesitate to contact @onetruemangoman on Discord or email us at %s.",
"translation": "The page you were looking for does not exist. If you believe this is a mistake then don’t hesitate to contact @onetruemangoman on Discord or email us at %s.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Euro Cash",
"message": "Euro Cash",
"translation": "Euro Cash",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Found a mistake or want to contribute missing information?",
"message": "Found a mistake or want to contribute missing information?",
"translation": "Found a mistake or want to contribute missing information?",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Feel free to contact us!",
"message": "Feel free to contact us!",
"translation": "Feel free to contact us!",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "If you’re seeing this page, it means that something went wrong on our end that we need to fix. Our team has been notified of this error, and we apologise for the inconvenience.",
"message": "If you’re seeing this page, it means that something went wrong on our end that we need to fix. Our team has been notified of this error, and we apologise for the inconvenience.",
"translation": "If you’re seeing this page, it means that something went wrong on our end that we need to fix. Our team has been notified of this error, and we apologise for the inconvenience.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "If this issue persists, don’t hesitate to contact @onetruemangoman on Discord or to email us at %s.",
"message": "If this issue persists, don’t hesitate to contact @onetruemangoman on Discord or to email us at %s.",
"translation": "If this issue persists, don’t hesitate to contact @onetruemangoman on Discord or to email us at %s.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Home",
"message": "Home",
"translation": "Home",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "News",
"message": "News",
"translation": "News",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin Collecting",
"message": "Coin Collecting",
"translation": "Coin Collecting",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coins",
"message": "Coins",
"translation": "Coins",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Banknotes",
"message": "Banknotes",
"translation": "Banknotes",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Jargon",
"message": "Jargon",
"translation": "Jargon",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Discord",
"message": "Discord",
"translation": "Discord",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "About",
"message": "About",
"translation": "About",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Language",
"message": "Language",
"translation": "Language",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "About Us",
"message": "About Us",
"translation": "About Us",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Open Source",
"message": "Open Source",
"translation": "Open Source",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "This website is an open project, and a collaboration between developers, translators, and researchers. All source code, data, images, and more for the website are open source and can be found %shere%s. This site is licensed under the BSD 0-Clause license giving you the full freedom to do whatever you would like with anyof the content on this site.",
"message": "This website is an open project, and a collaboration between developers, translators, and researchers. All source code, data, images, and more for the website are open source and can be found %shere%s. This site is licensed under the BSD 0-Clause license giving you the full freedom to do whatever you would like with anyof the content on this site.",
"translation": "This website is an open project, and a collaboration between developers, translators, and researchers. All source code, data, images, and more for the website are open source and can be found %shere%s. This site is licensed under the BSD 0-Clause license giving you the full freedom to do whatever you would like with anyof the content on this site.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Contact Us",
"message": "Contact Us",
"translation": "Contact Us",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "While we try to stay as up-to-date as possible and to fact check our information, it is always possible that we get something wrong, lack a translation, or are missing some piece of data you may have. In such a case don’t hesitate to contact us; we’ll try to get the site updated or fixed as soon as possible. You are always free to contribute via a git patch if you are more technically included, but if not you can always send an email to %s or contact ‘@onetruemangoman’ on Discord.",
"message": "While we try to stay as up-to-date as possible and to fact check our information, it is always possible that we get something wrong, lack a translation, or are missing some piece of data you may have. In such a case don’t hesitate to contact us; we’ll try to get the site updated or fixed as soon as possible. You are always free to contribute via a git patch if you are more technically included, but if not you can always send an email to %s or contact ‘@onetruemangoman’ on Discord.",
"translation": "While we try to stay as up-to-date as possible and to fact check our information, it is always possible that we get something wrong, lack a translation, or are missing some piece of data you may have. In such a case don’t hesitate to contact us; we’ll try to get the site updated or fixed as soon as possible. You are always free to contribute via a git patch if you are more technically included, but if not you can always send an email to %s or contact ‘@onetruemangoman’ on Discord.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Special Thanks",
"message": "Special Thanks",
"translation": "Special Thanks",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Development",
"message": "Development",
"translation": "Development",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Research",
"message": "Research",
"translation": "Research",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Translations",
"message": "Translations",
"translation": "Translations",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "British- \u0026 American English",
"message": "British- \u0026 American English",
"translation": "British- \u0026 American English",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Icelandic",
"message": "Icelandic",
"translation": "Icelandic",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Andorran Euro Coin Designs",
"message": "Andorran Euro Coin Designs",
"translation": "Andorran Euro Coin Designs",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "On March of 2013 Andorra held a public design competition for all denominations except for the €2 denomination which the government pre-decided would bear the coat of arms of Andorra. Each set of denominations had a theme that participants had to center their designs around. These themes were:",
"message": "On March of 2013 Andorra held a public design competition for all denominations except for the €2 denomination which the government pre-decided would bear the coat of arms of Andorra. Each set of denominations had a theme that participants had to center their designs around. These themes were:",
"translation": "On March of 2013 Andorra held a public design competition for all denominations except for the €2 denomination which the government pre-decided would bear the coat of arms of Andorra. Each set of denominations had a theme that participants had to center their designs around. These themes were:",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "%s, %s, and %s",
"message": "%s, %s, and %s",
"translation": "%s, %s, and %s",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Andorran landscapes, nature, fauna, and flora",
"message": "Andorran landscapes, nature, fauna, and flora",
"translation": "Andorran landscapes, nature, fauna, and flora",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Andorra’s Romanesque art",
"message": "Andorra’s Romanesque art",
"translation": "Andorra’s Romanesque art",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Casa de la Vall",
"message": "Casa de la Vall",
"translation": "Casa de la Vall",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The results of the design contest with a few modifications are what became the coins that entered circulation in 2014. While each set of denominations has its own design, all four designs prominently feature the country name ‘ANDORRA’ along the outer portion of the design with the year of issue written underneath.",
"message": "The results of the design contest with a few modifications are what became the coins that entered circulation in 2014. While each set of denominations has its own design, all four designs prominently feature the country name ‘ANDORRA’ along the outer portion of the design with the year of issue written underneath.",
"translation": "The results of the design contest with a few modifications are what became the coins that entered circulation in 2014. While each set of denominations has its own design, all four designs prominently feature the country name ‘ANDORRA’ along the outer portion of the design with the year of issue written underneath.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The Andorran 1-, 2-, and 5 euro cent coins all feature the same design of a Pyrenean chamois in the center of the coin with a golden eagle flying above. Both animals are native to Andorra as well as the surrounding regions of France and Spain.",
"message": "The Andorran 1-, 2-, and 5 euro cent coins all feature the same design of a Pyrenean chamois in the center of the coin with a golden eagle flying above. Both animals are native to Andorra as well as the surrounding regions of France and Spain.",
"translation": "The Andorran 1-, 2-, and 5 euro cent coins all feature the same design of a Pyrenean chamois in the center of the coin with a golden eagle flying above. Both animals are native to Andorra as well as the surrounding regions of France and Spain.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The Andorran golden cents feature the Romanesque church of Santa Coloma. The church is the oldest in Andorra, dating back to the 9th century and is a UNESCO World Heritage site. Originally these coins were planned to depict an image of Christ, but that plan failed to go through after objections from the European Commission on grounds of religious neutrality on August 2013.",
"message": "The Andorran golden cents feature the Romanesque church of Santa Coloma. The church is the oldest in Andorra, dating back to the 9th century and is a UNESCO World Heritage site. Originally these coins were planned to depict an image of Christ, but that plan failed to go through after objections from the European Commission on grounds of religious neutrality on August 2013.",
"translation": "The Andorran golden cents feature the Romanesque church of Santa Coloma. The church is the oldest in Andorra, dating back to the 9th century and is a UNESCO World Heritage site. Originally these coins were planned to depict an image of Christ, but that plan failed to go through after objections from the European Commission on grounds of religious neutrality on August 2013.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The 1 Euro coin features the Case de la Vall: the former headquarters of the General Council of Andorra. It was constructed in 1580 as a manor and tower defense by the Busquets family.",
"message": "The 1 Euro coin features the Case de la Vall: the former headquarters of the General Council of Andorra. It was constructed in 1580 as a manor and tower defense by the Busquets family.",
"translation": "The 1 Euro coin features the Case de la Vall: the former headquarters of the General Council of Andorra. It was constructed in 1580 as a manor and tower defense by the Busquets family.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Finally, the 2 Euro coin features the coat of arms of Andorra. The Andorran coat of arms is a grid of 4 other coats of arms which from top-to-bottom, left-to-right are:",
"message": "Finally, the 2 Euro coin features the coat of arms of Andorra. The Andorran coat of arms is a grid of 4 other coats of arms which from top-to-bottom, left-to-right are:",
"translation": "Finally, the 2 Euro coin features the coat of arms of Andorra. The Andorran coat of arms is a grid of 4 other coats of arms which from top-to-bottom, left-to-right are:",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The bottom of the coat of arms has the motto ‘%sVIRTVS VNITA FORTIOR%s’ (‘UNITED VIRTUE IS STRONGER’).",
"message": "The bottom of the coat of arms has the motto ‘%sVIRTVS VNITA FORTIOR%s’ (‘UNITED VIRTUE IS STRONGER’).",
"translation": "The bottom of the coat of arms has the motto ‘%sVIRTVS VNITA FORTIOR%s’ (‘UNITED VIRTUE IS STRONGER’).",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Austrian Euro Coin Designs",
"message": "Austrian Euro Coin Designs",
"translation": "Austrian Euro Coin Designs",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The Austrian euro coins can be grouped into three different themes. The bronze coins feature Austrian flowers, the gold coins feature Austrian architecture, and the bimetalic coins feature famous Austrian people. All coins also feature an Austrian flag as well as the coins denomination. These coins together with the %sGreek euro coins%s are the only coins that feature the denomination on both the common- and national-sides of the coin.",
"message": "The Austrian euro coins can be grouped into three different themes. The bronze coins feature Austrian flowers, the gold coins feature Austrian architecture, and the bimetalic coins feature famous Austrian people. All coins also feature an Austrian flag as well as the coins denomination. These coins together with the %sGreek euro coins%s are the only coins that feature the denomination on both the common- and national-sides of the coin.",
"translation": "The Austrian euro coins can be grouped into three different themes. The bronze coins feature Austrian flowers, the gold coins feature Austrian architecture, and the bimetalic coins feature famous Austrian people. All coins also feature an Austrian flag as well as the coins denomination. These coins together with the %sGreek euro coins%s are the only coins that feature the denomination on both the common- and national-sides of the coin.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The bronze coins feature the Alpine gentian, -edelweiss, and -primrose respectively, and were chosen to symbolize the role that Austria played in the development of EU environmental policy.",
"message": "The bronze coins feature the Alpine gentian, -edelweiss, and -primrose respectively, and were chosen to symbolize the role that Austria played in the development of EU environmental policy.",
"translation": "The bronze coins feature the Alpine gentian, -edelweiss, and -primrose respectively, and were chosen to symbolize the role that Austria played in the development of EU environmental policy.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The €0.10 coin features St. Stephen’s Cathedral. It symbolises the Viennese Gothic architectural style dating to around the year 1160. The €0.20 coin features Belvedere Palace. This is an example of Baroque architecture and symbolises the national freedom and sovereignty of Austria. The final gold coin — the €0.50 coin — features the Secession Building: an exhibition hall in the Art Nouveau style.",
"message": "The €0.10 coin features St. Stephen’s Cathedral. It symbolises the Viennese Gothic architectural style dating to around the year 1160. The €0.20 coin features Belvedere Palace. This is an example of Baroque architecture and symbolises the national freedom and sovereignty of Austria. The final gold coin — the €0.50 coin — features the Secession Building: an exhibition hall in the Art Nouveau style.",
"translation": "The €0.10 coin features St. Stephen’s Cathedral. It symbolises the Viennese Gothic architectural style dating to around the year 1160. The €0.20 coin features Belvedere Palace. This is an example of Baroque architecture and symbolises the national freedom and sovereignty of Austria. The final gold coin — the €0.50 coin — features the Secession Building: an exhibition hall in the Art Nouveau style.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The two bimetallic coins feature the busts of the musical composer Wolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist and Nobel Peace Prize winner Bertha von Suttner.",
"message": "The two bimetallic coins feature the busts of the musical composer Wolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist and Nobel Peace Prize winner Bertha von Suttner.",
"translation": "The two bimetallic coins feature the busts of the musical composer Wolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist and Nobel Peace Prize winner Bertha von Suttner.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Belgian Euro Coin Designs",
"message": "Belgian Euro Coin Designs",
"translation": "Belgian Euro Coin Designs",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Since 1999 Belgium has released three series of euro coins, which each series having a single design repeated on all denominations. Starting in 1999 the Belgian euro coins featured the portrait of King Albert II with the %sroyal monogram%s in the outer ring of the coins.",
"message": "Since 1999 Belgium has released three series of euro coins, which each series having a single design repeated on all denominations. Starting in 1999 the Belgian euro coins featured the portrait of King Albert II with the %sroyal monogram%s in the outer ring of the coins.",
"translation": "Since 1999 Belgium has released three series of euro coins, which each series having a single design repeated on all denominations. Starting in 1999 the Belgian euro coins featured the portrait of King Albert II with the %sroyal monogram%s in the outer ring of the coins.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "In 2008 a second series of coins was released featuring a slightly-modified design in which the royal monogram was moved to the inner portion of the coin along with the year of mintage in order to comply with the European Commission’s guidelines. The country code ‘BE’ was also added to the design underneath the royal monogram.",
"message": "In 2008 a second series of coins was released featuring a slightly-modified design in which the royal monogram was moved to the inner portion of the coin along with the year of mintage in order to comply with the European Commission’s guidelines. The country code ‘BE’ was also added to the design underneath the royal monogram.",
"translation": "In 2008 a second series of coins was released featuring a slightly-modified design in which the royal monogram was moved to the inner portion of the coin along with the year of mintage in order to comply with the European Commission’s guidelines. The country code ‘BE’ was also added to the design underneath the royal monogram.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "After his accession to the throne Belgium began a third series of coins in 2014 featuring the portrait of King Philippe. As is customary with coins bearing the portraits of monarchs, the direction in which the portrait faces was flipped to face right instead of left.",
"message": "After his accession to the throne Belgium began a third series of coins in 2014 featuring the portrait of King Philippe. As is customary with coins bearing the portraits of monarchs, the direction in which the portrait faces was flipped to face right instead of left.",
"translation": "After his accession to the throne Belgium began a third series of coins in 2014 featuring the portrait of King Philippe. As is customary with coins bearing the portraits of monarchs, the direction in which the portrait faces was flipped to face right instead of left.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Croatian Euro Coin Designs",
"message": "Croatian Euro Coin Designs",
"translation": "Croatian Euro Coin Designs",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The Croatian euro coins feature four different themes, with each design featuring the Croatian checkerboard and the countries name in Croatian (‘%sHRVATSKA%s’). All designs were selected after voting in a public design competition.",
"message": "The Croatian euro coins feature four different themes, with each design featuring the Croatian checkerboard and the countries name in Croatian (‘%sHRVATSKA%s’). All designs were selected after voting in a public design competition.",
"translation": "The Croatian euro coins feature four different themes, with each design featuring the Croatian checkerboard and the countries name in Croatian (‘%sHRVATSKA%s’). All designs were selected after voting in a public design competition.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The 1-, 2-, and 5 euro cent coins were designed by Maja Škripelj and feature a motif of the letters ‘HR’ in the %sGlagolitic script%s — an old Slavic script that saw use in Croatia up until the 19th century — with ‘HR’ representing Croatia’s country code.",
"message": "The 1-, 2-, and 5 euro cent coins were designed by Maja Škripelj and feature a motif of the letters ‘HR’ in the %sGlagolitic script%s — an old Slavic script that saw use in Croatia up until the 19th century — with ‘HR’ representing Croatia’s country code.",
"translation": "The 1-, 2-, and 5 euro cent coins were designed by Maja Škripelj and feature a motif of the letters ‘HR’ in the %sGlagolitic script%s — an old Slavic script that saw use in Croatia up until the 19th century — with ‘HR’ representing Croatia’s country code.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The 10-, 20-, and 50 euro cent coins were designed by Ivan Domagoj Račić and feature the portrait of the inventor and engineer %sNikola Tesla%s. The design of these coins caused controversy when they were first announced with the National Bank of Serbia claiming that it would be an appropriation of the cultural and scientific heritage of the Serbian people to feature the portrait of someone who ‘declared himself to be Serbian by origin’.",
"message": "The 10-, 20-, and 50 euro cent coins were designed by Ivan Domagoj Račić and feature the portrait of the inventor and engineer %sNikola Tesla%s. The design of these coins caused controversy when they were first announced with the National Bank of Serbia claiming that it would be an appropriation of the cultural and scientific heritage of the Serbian people to feature the portrait of someone who ‘declared himself to be Serbian by origin’.",
"translation": "The 10-, 20-, and 50 euro cent coins were designed by Ivan Domagoj Račić and feature the portrait of the inventor and engineer %sNikola Tesla%s. The design of these coins caused controversy when they were first announced with the National Bank of Serbia claiming that it would be an appropriation of the cultural and scientific heritage of the Serbian people to feature the portrait of someone who ‘declared himself to be Serbian by origin’.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The 1 euro coin was designed by Jagor Šunde, David Čemeljić and Fran Zekan and features a marten. The marten is the semi-official national animal of Croatia and the Kuna — their pre-Euro currency — was named after the marten (‘%skuna zlatica%s’ in Croatian).",
"message": "The 1 euro coin was designed by Jagor Šunde, David Čemeljić and Fran Zekan and features a marten. The marten is the semi-official national animal of Croatia and the Kuna — their pre-Euro currency — was named after the marten (‘%skuna zlatica%s’ in Croatian).",
"translation": "The 1 euro coin was designed by Jagor Šunde, David Čemeljić and Fran Zekan and features a marten. The marten is the semi-official national animal of Croatia and the Kuna — their pre-Euro currency — was named after the marten (‘%skuna zlatica%s’ in Croatian).",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The 2 euro coin was designed by Ivan Šivak and features the map of Croatia. The coin also has an edge-inscription that reads ‘%sO LIJEPA O DRAGA O SLATKA SLOBODO%s’ (‘OH BEAUTIFUL, OH DEAR, OH SWEET FREEDOM’) which is a line from the play %sDubravka%s by Ivan Gundulić.",
"message": "The 2 euro coin was designed by Ivan Šivak and features the map of Croatia. The coin also has an edge-inscription that reads ‘%sO LIJEPA O DRAGA O SLATKA SLOBODO%s’ (‘OH BEAUTIFUL, OH DEAR, OH SWEET FREEDOM’) which is a line from the play %sDubravka%s by Ivan Gundulić.",
"translation": "The 2 euro coin was designed by Ivan Šivak and features the map of Croatia. The coin also has an edge-inscription that reads ‘%sO LIJEPA O DRAGA O SLATKA SLOBODO%s’ (‘OH BEAUTIFUL, OH DEAR, OH SWEET FREEDOM’) which is a line from the play %sDubravka%s by Ivan Gundulić.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Dutch Euro Coin Designs",
"message": "Dutch Euro Coin Designs",
"translation": "Dutch Euro Coin Designs",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "From the years 1999–2013 all Dutch euro coins featured the portrait of Queen Beatrix of the Netherlands. After her abdication from the throne in 2013 the designs of all denominations were changed to feature the portrait of the new King Willem-Alexander. After her abdication the direction in which the monarchs portrait faced was flipped; a tradition dating back to the earliest coins of the Kingdom of the Netherlands.",
"message": "From the years 1999–2013 all Dutch euro coins featured the portrait of Queen Beatrix of the Netherlands. After her abdication from the throne in 2013 the designs of all denominations were changed to feature the portrait of the new King Willem-Alexander. After her abdication the direction in which the monarchs portrait faced was flipped; a tradition dating back to the earliest coins of the Kingdom of the Netherlands.",
"translation": "From the years 1999–2013 all Dutch euro coins featured the portrait of Queen Beatrix of the Netherlands. After her abdication from the throne in 2013 the designs of all denominations were changed to feature the portrait of the new King Willem-Alexander. After her abdication the direction in which the monarchs portrait faced was flipped; a tradition dating back to the earliest coins of the Kingdom of the Netherlands.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coins featuring both monarchs contain text reading ‘%sBEATRIX KONINGIN DER NEDERLANDEN%s’ (‘BEATRIX QUEEN OF THE NETHERLANDS’) and ‘%sWillem-Alexander Koning der Nederlanden%s’ (‘Willem-Alexander King of the Netherlands’) respectively. The €2 coins also feature an edge-inscription reading ‘%sGOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆%s’ (‘GOD ⋆ IS ⋆ WITH ⋆ US ⋆’).",
"message": "Coins featuring both monarchs contain text reading ‘%sBEATRIX KONINGIN DER NEDERLANDEN%s’ (‘BEATRIX QUEEN OF THE NETHERLANDS’) and ‘%sWillem-Alexander Koning der Nederlanden%s’ (‘Willem-Alexander King of the Netherlands’) respectively. The €2 coins also feature an edge-inscription reading ‘%sGOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆%s’ (‘GOD ⋆ IS ⋆ WITH ⋆ US ⋆’).",
"translation": "Coins featuring both monarchs contain text reading ‘%sBEATRIX KONINGIN DER NEDERLANDEN%s’ (‘BEATRIX QUEEN OF THE NETHERLANDS’) and ‘%sWillem-Alexander Koning der Nederlanden%s’ (‘Willem-Alexander King of the Netherlands’) respectively. The €2 coins also feature an edge-inscription reading ‘%sGOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆%s’ (‘GOD ⋆ IS ⋆ WITH ⋆ US ⋆’).",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The €1 and €2 coins featuring King Willem-Alexander were minted with a much lower %srelief%s than most euro coins of the same denomination. As a result it is not uncommon for these coins to appear worn after little use in circulation.",
"message": "The €1 and €2 coins featuring King Willem-Alexander were minted with a much lower %srelief%s than most euro coins of the same denomination. As a result it is not uncommon for these coins to appear worn after little use in circulation.",
"translation": "The €1 and €2 coins featuring King Willem-Alexander were minted with a much lower %srelief%s than most euro coins of the same denomination. As a result it is not uncommon for these coins to appear worn after little use in circulation.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Euro Coin Designs",
"message": "Euro Coin Designs",
"translation": "Euro Coin Designs",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Here you’ll be able to view all the coin designs for each country in the Eurozone. This section of the site doesn’t include minor varieties such as different mintmarks or errors; those are on the %svarieties%s page.",
"message": "Here you’ll be able to view all the coin designs for each country in the Eurozone. This section of the site doesn’t include minor varieties such as different mintmarks or errors; those are on the %svarieties%s page.",
"translation": "Here you’ll be able to view all the coin designs for each country in the Eurozone. This section of the site doesn’t include minor varieties such as different mintmarks or errors; those are on the %svarieties%s page.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Euro Coin Mintages",
"message": "Euro Coin Mintages",
"translation": "Euro Coin Mintages",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Here you’ll be able to view all the known mintages for all coins. You’ll also be able to filter on country, denomination, etc. If you have any mintage data that’s missing from our site, feel free to contact us.",
"message": "Here you’ll be able to view all the known mintages for all coins. You’ll also be able to filter on country, denomination, etc. If you have any mintage data that’s missing from our site, feel free to contact us.",
"translation": "Here you’ll be able to view all the known mintages for all coins. You’ll also be able to filter on country, denomination, etc. If you have any mintage data that’s missing from our site, feel free to contact us.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Additional Notes",
"message": "Additional Notes",
"translation": "Additional Notes",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Most coins from the years 2003–2016 are listed as NIFC coins while other popular sources such as Numista claim they were minted for circulation. For more information on why others are wrong, %sclick here%s.",
"message": "Most coins from the years 2003–2016 are listed as NIFC coins while other popular sources such as Numista claim they were minted for circulation. For more information on why others are wrong, %sclick here%s.",
"translation": "Most coins from the years 2003–2016 are listed as NIFC coins while other popular sources such as Numista claim they were minted for circulation. For more information on why others are wrong, %sclick here%s.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "In 2003 Numista calculated a total of %d coins issued for coin sets per denomination. Our own calculations found only %d. Numista also forgot to include the many hundred thousand coins from the coin roll sets that were produced.",
"message": "In 2003 Numista calculated a total of %d coins issued for coin sets per denomination. Our own calculations found only %d. Numista also forgot to include the many hundred thousand coins from the coin roll sets that were produced.",
"translation": "In 2003 Numista calculated a total of %d coins issued for coin sets per denomination. Our own calculations found only %d. Numista also forgot to include the many hundred thousand coins from the coin roll sets that were produced.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Country",
"message": "Country",
"translation": "Country",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Filter",
"message": "Filter",
"translation": "Filter",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Standard Issue Coins",
"message": "Standard Issue Coins",
"translation": "Standard Issue Coins",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Year",
"message": "Year",
"translation": "Year",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Unknown",
"message": "Unknown",
"translation": "Unknown",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Commemorative Coins",
"message": "Commemorative Coins",
"translation": "Commemorative Coins",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Commemorated Issue",
"message": "Commemorated Issue",
"translation": "Commemorated Issue",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Mintage",
"message": "Mintage",
"translation": "Mintage",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Euro Coins",
"message": "Euro Coins",
"translation": "Euro Coins",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "On this section of the site you can find everything there is to know about the coins of the Eurozone.",
"message": "On this section of the site you can find everything there is to know about the coins of the Eurozone.",
"translation": "On this section of the site you can find everything there is to know about the coins of the Eurozone.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Designs",
"message": "Designs",
"translation": "Designs",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View the 600+ different Euro-coin designs!",
"message": "View the 600+ different Euro-coin designs!",
"translation": "View the 600+ different Euro-coin designs!",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Mintages",
"message": "Mintages",
"translation": "Mintages",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View the mintage figures of all the Euro coins!",
"message": "View the mintage figures of all the Euro coins!",
"translation": "View the mintage figures of all the Euro coins!",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Varieties",
"message": "Varieties",
"translation": "Varieties",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View all the known Euro varieties!",
"message": "View all the known Euro varieties!",
"translation": "View all the known Euro varieties!",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin Roll Hunting",
"message": "Coin Roll Hunting",
"translation": "Coin Roll Hunting",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "What is Coin Roll Hunting?",
"message": "What is Coin Roll Hunting?",
"translation": "What is Coin Roll Hunting?",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin roll hunting is a popular method of coin collecting in which you withdrawal cash from your bank in the form of coins which you then search through to find new additions to your collection. Once you’ve searched through all your coins, you will typically deposit your left over coins at the bank and withdrawal new coins.",
"message": "Coin roll hunting is a popular method of coin collecting in which you withdrawal cash from your bank in the form of coins which you then search through to find new additions to your collection. Once you’ve searched through all your coins, you will typically deposit your left over coins at the bank and withdrawal new coins.",
"translation": "Coin roll hunting is a popular method of coin collecting in which you withdrawal cash from your bank in the form of coins which you then search through to find new additions to your collection. Once you’ve searched through all your coins, you will typically deposit your left over coins at the bank and withdrawal new coins.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "This type of coin collecting is often called ‘Coin Roll Hunting’ due to the fact that coins are often withdrawn in paper-wrapped rolls. You may however find that your coins come in plastic bags instead (common in countries like Ireland).",
"message": "This type of coin collecting is often called ‘Coin Roll Hunting’ due to the fact that coins are often withdrawn in paper-wrapped rolls. You may however find that your coins come in plastic bags instead (common in countries like Ireland).",
"translation": "This type of coin collecting is often called ‘Coin Roll Hunting’ due to the fact that coins are often withdrawn in paper-wrapped rolls. You may however find that your coins come in plastic bags instead (common in countries like Ireland).",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Depending on your bank and branch, the process of obtaining coins may differ. Some banks require you speak to a teller, others have coin machines. Some banks may also require that you are a customer or even to have a business account. If you aren’t sure about if you can get coins we suggest you contact your bank, although further down this page we also have information about the withdrawal of coins in various countries and major banks.",
"message": "Depending on your bank and branch, the process of obtaining coins may differ. Some banks require you speak to a teller, others have coin machines. Some banks may also require that you are a customer or even to have a business account. If you aren’t sure about if you can get coins we suggest you contact your bank, although further down this page we also have information about the withdrawal of coins in various countries and major banks.",
"translation": "Depending on your bank and branch, the process of obtaining coins may differ. Some banks require you speak to a teller, others have coin machines. Some banks may also require that you are a customer or even to have a business account. If you aren’t sure about if you can get coins we suggest you contact your bank, although further down this page we also have information about the withdrawal of coins in various countries and major banks.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Getting Started",
"message": "Getting Started",
"translation": "Getting Started",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To get started with coin roll hunting you should first contact your bank or check their website to find details regarding coin withdrawal. You will then typically need to go to the bank to pick up your coins. Depending on your bank you may be able to withdrawal coins from a machine, although often you can pick up your coins from the banks tellers. You will also often need to pay a small fee for each roll, although some banks don’t charge fees.",
"message": "To get started with coin roll hunting you should first contact your bank or check their website to find details regarding coin withdrawal. You will then typically need to go to the bank to pick up your coins. Depending on your bank you may be able to withdrawal coins from a machine, although often you can pick up your coins from the banks tellers. You will also often need to pay a small fee for each roll, although some banks don’t charge fees.",
"translation": "To get started with coin roll hunting you should first contact your bank or check their website to find details regarding coin withdrawal. You will then typically need to go to the bank to pick up your coins. Depending on your bank you may be able to withdrawal coins from a machine, although often you can pick up your coins from the banks tellers. You will also often need to pay a small fee for each roll, although some banks don’t charge fees.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "It is also important to find details regarding the deposit of coins. Depositing coins often also requires the payment of a fee — one which is typically more expensive than the withdrawal fees. If depositing your coins is too expensive you can always exchange your left over coins at shops for banknotes. It is often cheaper (or even free) to deposit banknotes.",
"message": "It is also important to find details regarding the deposit of coins. Depositing coins often also requires the payment of a fee — one which is typically more expensive than the withdrawal fees. If depositing your coins is too expensive you can always exchange your left over coins at shops for banknotes. It is often cheaper (or even free) to deposit banknotes.",
"translation": "It is also important to find details regarding the deposit of coins. Depositing coins often also requires the payment of a fee — one which is typically more expensive than the withdrawal fees. If depositing your coins is too expensive you can always exchange your left over coins at shops for banknotes. It is often cheaper (or even free) to deposit banknotes.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "In some countries such as Austria it is even common to be able to withdrawal new coins from your account by exchanging the left over coins you already have.",
"message": "In some countries such as Austria it is even common to be able to withdrawal new coins from your account by exchanging the left over coins you already have.",
"translation": "In some countries such as Austria it is even common to be able to withdrawal new coins from your account by exchanging the left over coins you already have.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Country-Specific Details",
"message": "Country-Specific Details",
"translation": "Country-Specific Details",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Below you can find all sorts of country-specific information we have regarding obtaining coin rolls. We lack a lot of information for many of the countries, so if you have any additional information such as your banks fees, the availability of coin roll machines, etc. feel free to contact us! You can find our contact information %shere%s.",
"message": "Below you can find all sorts of country-specific information we have regarding obtaining coin rolls. We lack a lot of information for many of the countries, so if you have any additional information such as your banks fees, the availability of coin roll machines, etc. feel free to contact us! You can find our contact information %shere%s.",
"translation": "Below you can find all sorts of country-specific information we have regarding obtaining coin rolls. We lack a lot of information for many of the countries, so if you have any additional information such as your banks fees, the availability of coin roll machines, etc. feel free to contact us! You can find our contact information %shere%s.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Be aware of the face that the information below is prone to being outdated, and as such may not reflect the current reality.",
"message": "Be aware of the face that the information below is prone to being outdated, and as such may not reflect the current reality.",
"translation": "Be aware of the face that the information below is prone to being outdated, and as such may not reflect the current reality.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin rolls can be obtained from Andbank, Crèdit Andorrà, and MoraBanc. All three of these banks require that you are a customer to get rolls. There have however been reports of individuals managing to get rolls without any fees and without being a customer by simply asking kindly at the bank.",
"message": "Coin rolls can be obtained from Andbank, Crèdit Andorrà, and MoraBanc. All three of these banks require that you are a customer to get rolls. There have however been reports of individuals managing to get rolls without any fees and without being a customer by simply asking kindly at the bank.",
"translation": "Coin rolls can be obtained from Andbank, Crèdit Andorrà, and MoraBanc. All three of these banks require that you are a customer to get rolls. There have however been reports of individuals managing to get rolls without any fees and without being a customer by simply asking kindly at the bank.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The Austrian National Bank does not distribute circulated rolls but sells rolls of commemorative coins at face value on release as well as uncirculated rolls for all denominations.",
"message": "The Austrian National Bank does not distribute circulated rolls but sells rolls of commemorative coins at face value on release as well as uncirculated rolls for all denominations.",
"translation": "The Austrian National Bank does not distribute circulated rolls but sells rolls of commemorative coins at face value on release as well as uncirculated rolls for all denominations.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "There is a fee of %s per roll. Rolls can be purchased with cash at machines. These machines are available to everyone, but not in all branches. Look for the ‘Münzrollengeber’ filter option %shere%s.",
"message": "There is a fee of %s per roll. Rolls can be purchased with cash at machines. These machines are available to everyone, but not in all branches. Look for the ‘Münzrollengeber’ filter option %shere%s.",
"translation": "There is a fee of %s per roll. Rolls can be purchased with cash at machines. These machines are available to everyone, but not in all branches. Look for the ‘Münzrollengeber’ filter option %shere%s.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "There is a fee of %s per roll. You must be a customer to use machines to get rolls. Rolls have no fees when purchased at counters, but counters redirect you to machines if they work; counters accept cash. You must present an Erste Bank card to buy rolls from machines, but you can pay with cash.",
"message": "There is a fee of %s per roll. You must be a customer to use machines to get rolls. Rolls have no fees when purchased at counters, but counters redirect you to machines if they work; counters accept cash. You must present an Erste Bank card to buy rolls from machines, but you can pay with cash.",
"translation": "There is a fee of %s per roll. You must be a customer to use machines to get rolls. Rolls have no fees when purchased at counters, but counters redirect you to machines if they work; counters accept cash. You must present an Erste Bank card to buy rolls from machines, but you can pay with cash.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Depositing coins is free for up to %s a day, at which point you pay 1%% for any additional deposited coins. You must also be a customer. Depositing coins is free for all Erste Bank customers at Dornbirner Sparkasse with no limit.",
"message": "Depositing coins is free for up to %s a day, at which point you pay 1%% for any additional deposited coins. You must also be a customer. Depositing coins is free for all Erste Bank customers at Dornbirner Sparkasse with no limit.",
"translation": "Depositing coins is free for up to %s a day, at which point you pay 1%% for any additional deposited coins. You must also be a customer. Depositing coins is free for all Erste Bank customers at Dornbirner Sparkasse with no limit.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "There is a fee of %s per roll if you aren’t a customer, and %s otherwise. Coin deposits are free if you’re a customer.",
"message": "There is a fee of %s per roll if you aren’t a customer, and %s otherwise. Coin deposits are free if you’re a customer.",
"translation": "There is a fee of %s per roll if you aren’t a customer, and %s otherwise. Coin deposits are free if you’re a customer.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Reportedly fee-less with no need of being a customer, but this is unconfirmed.",
"message": "Reportedly fee-less with no need of being a customer, but this is unconfirmed.",
"translation": "Reportedly fee-less with no need of being a customer, but this is unconfirmed.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "There is a %s fee with no limit on the number of rolls.",
"message": "There is a %s fee with no limit on the number of rolls.",
"translation": "There is a %s fee with no limit on the number of rolls.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Belgian Central Bank",
"message": "Belgian Central Bank",
"translation": "Belgian Central Bank",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "You can visit the Belgian Central Bank in Brussels as an EU citizen. You can order coin rolls for no fee up to %s in value. They seem to distribute uncirculated coins (no commemoratives).",
"message": "You can visit the Belgian Central Bank in Brussels as an EU citizen. You can order coin rolls for no fee up to %s in value. They seem to distribute uncirculated coins (no commemoratives).",
"translation": "You can visit the Belgian Central Bank in Brussels as an EU citizen. You can order coin rolls for no fee up to %s in value. They seem to distribute uncirculated coins (no commemoratives).",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Free for customers but getting coin rolls is still difficult sometimes. Non-customers cannot get rolls.",
"message": "Free for customers but getting coin rolls is still difficult sometimes. Non-customers cannot get rolls.",
"translation": "Free for customers but getting coin rolls is still difficult sometimes. Non-customers cannot get rolls.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Free for customers when you order through their online platform.",
"message": "Free for customers when you order through their online platform.",
"translation": "Free for customers when you order through their online platform.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Bank of Cyprus",
"message": "Bank of Cyprus",
"translation": "Bank of Cyprus",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "At the Bank of Cyprus it is possible to buy bags of coins without being a customer, and without paying any additional fees. Depending on the branch you visit you may have coin roll machine available. Do note that the bags provided by the Bank of Cyprus are around twice as large as usual with %s bags containing 50 coins and the other denomination bags containing 100 coins.",
"message": "At the Bank of Cyprus it is possible to buy bags of coins without being a customer, and without paying any additional fees. Depending on the branch you visit you may have coin roll machine available. Do note that the bags provided by the Bank of Cyprus are around twice as large as usual with %s bags containing 50 coins and the other denomination bags containing 100 coins.",
"translation": "At the Bank of Cyprus it is possible to buy bags of coins without being a customer, and without paying any additional fees. Depending on the branch you visit you may have coin roll machine available. Do note that the bags provided by the Bank of Cyprus are around twice as large as usual with %s bags containing 50 coins and the other denomination bags containing 100 coins.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin roll availability may vary across banks and branches, as well as the price. You must be a customer to purchase coin rolls unless specified otherwise.",
"message": "Coin roll availability may vary across banks and branches, as well as the price. You must be a customer to purchase coin rolls unless specified otherwise.",
"translation": "Coin roll availability may vary across banks and branches, as well as the price. You must be a customer to purchase coin rolls unless specified otherwise.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "German Federal Bank (Deutsche Bundesbank)",
"message": "German Federal Bank (Deutsche Bundesbank)",
"translation": "German Federal Bank (Deutsche Bundesbank)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "You can obtain regular- and commemorative coins for face value including 5-, 10-, and 20 euro coins. You do not need to be a customer although depending on your branch you may need to make an appointment. The purchase of coins can only be done with cash.",
"message": "You can obtain regular- and commemorative coins for face value including 5-, 10-, and 20 euro coins. You do not need to be a customer although depending on your branch you may need to make an appointment. The purchase of coins can only be done with cash.",
"translation": "You can obtain regular- and commemorative coins for face value including 5-, 10-, and 20 euro coins. You do not need to be a customer although depending on your branch you may need to make an appointment. The purchase of coins can only be done with cash.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Hand-rolled coin rolls can be obtained with no additional fees.",
"message": "Hand-rolled coin rolls can be obtained with no additional fees.",
"translation": "Hand-rolled coin rolls can be obtained with no additional fees.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin rolls can be obtained for a fee of %s–%s per roll. The amount varies per branch.",
"message": "Coin rolls can be obtained for a fee of %s–%s per roll. The amount varies per branch.",
"translation": "Coin rolls can be obtained for a fee of %s–%s per roll. The amount varies per branch.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin rolls can be obtained for a fee of %s per roll.",
"message": "Coin rolls can be obtained for a fee of %s per roll.",
"translation": "Coin rolls can be obtained for a fee of %s per roll.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Obtaining coin rolls in Estonia is typically quite difficult, and often expensive. You also often need to make an appointment in advance.",
"message": "Obtaining coin rolls in Estonia is typically quite difficult, and often expensive. You also often need to make an appointment in advance.",
"translation": "Obtaining coin rolls in Estonia is typically quite difficult, and often expensive. You also often need to make an appointment in advance.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Central Bank of Estonia Museum",
"message": "Central Bank of Estonia Museum",
"translation": "Central Bank of Estonia Museum",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "You can purchase commemorative coins (even those released years ago) at face value. It is also an interesting museum to visit in general.",
"message": "You can purchase commemorative coins (even those released years ago) at face value. It is also an interesting museum to visit in general.",
"translation": "You can purchase commemorative coins (even those released years ago) at face value. It is also an interesting museum to visit in general.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin rolls are free but you must be a customer.",
"message": "Coin rolls are free but you must be a customer.",
"translation": "Coin rolls are free but you must be a customer.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Bank of Spain",
"message": "Bank of Spain",
"translation": "Bank of Spain",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "You can purchase individual coins and commemorative coin rolls (even those of other countries). You can watch %shere%s to see how to do it.",
"message": "You can purchase individual coins and commemorative coin rolls (even those of other countries). You can watch %shere%s to see how to do it.",
"translation": "You can purchase individual coins and commemorative coin rolls (even those of other countries). You can watch %shere%s to see how to do it.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin rolls have a fee of %s for 5 rolls. This seems to vary by region.",
"message": "Coin rolls have a fee of %s for 5 rolls. This seems to vary by region.",
"translation": "Coin rolls have a fee of %s for 5 rolls. This seems to vary by region.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin rolls have no fees.",
"message": "Coin rolls have no fees.",
"translation": "Coin rolls have no fees.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "La Caixa",
"message": "La Caixa",
"translation": "La Caixa",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin rolls have no fees and can be purchased with cash. You do not need to be a customer, although this needs to be re-verified.",
"message": "Coin rolls have no fees and can be purchased with cash. You do not need to be a customer, although this needs to be re-verified.",
"translation": "Coin rolls have no fees and can be purchased with cash. You do not need to be a customer, although this needs to be re-verified.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Finland has no coin roll machines, but you can find vending machines or coin exchange machines (albeit they are rare).",
"message": "Finland has no coin roll machines, but you can find vending machines or coin exchange machines (albeit they are rare).",
"translation": "Finland has no coin roll machines, but you can find vending machines or coin exchange machines (albeit they are rare).",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin rolls can be obtained with no fees.",
"message": "Coin rolls can be obtained with no fees.",
"translation": "Coin rolls can be obtained with no fees.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Bank of Finland",
"message": "Bank of Finland",
"translation": "Bank of Finland",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "It is probably not possible to obtain coin rolls, but this is not confirmed.",
"message": "It is probably not possible to obtain coin rolls, but this is not confirmed.",
"translation": "It is probably not possible to obtain coin rolls, but this is not confirmed.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin roll machines are uncommon, only some banks have them and you need to be a customer. You may also need to order them in advance.",
"message": "Coin roll machines are uncommon, only some banks have them and you need to be a customer. You may also need to order them in advance.",
"translation": "Coin roll machines are uncommon, only some banks have them and you need to be a customer. You may also need to order them in advance.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin rolls can be obtained with no fee. You must be a customer.",
"message": "Coin rolls can be obtained with no fee. You must be a customer.",
"translation": "Coin rolls can be obtained with no fee. You must be a customer.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "and",
"message": "and",
"translation": "and",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Free coin rolls if you are a customer or %s per roll if you are not a customer. There are coin roll machines.",
"message": "Free coin rolls if you are a customer or %s per roll if you are not a customer. There are coin roll machines.",
"translation": "Free coin rolls if you are a customer or %s per roll if you are not a customer. There are coin roll machines.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "There are coin roll machines but it is not yet known if you need to be a customer or if there are fees.",
"message": "There are coin roll machines but it is not yet known if you need to be a customer or if there are fees.",
"translation": "There are coin roll machines but it is not yet known if you need to be a customer or if there are fees.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Bank of Greece (Τράπεζα της Ελλάδος)",
"message": "Bank of Greece (Τράπεζα της Ελλάδος)",
"translation": "Bank of Greece (Τράπεζα της Ελλάδος)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Fee-less coin rolls for everyone (you will need to show ID). The latest commemorative coins are also sold for face value.",
"message": "Fee-less coin rolls for everyone (you will need to show ID). The latest commemorative coins are also sold for face value.",
"translation": "Fee-less coin rolls for everyone (you will need to show ID). The latest commemorative coins are also sold for face value.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Fee-less coin bags for everyone (no ID necessary). Smaller denominations are often not given out, and the coin bags you recieve are very large (there are reports of %s bags containing 250 coins).",
"message": "Fee-less coin bags for everyone (no ID necessary). Smaller denominations are often not given out, and the coin bags you recieve are very large (there are reports of %s bags containing 250 coins).",
"translation": "Fee-less coin bags for everyone (no ID necessary). Smaller denominations are often not given out, and the coin bags you recieve are very large (there are reports of %s bags containing 250 coins).",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "In general, coin rolls are available at banks with a fee of %s per roll; rolls could potentially have no fee if you only need a few.",
"message": "In general, coin rolls are available at banks with a fee of %s per roll; rolls could potentially have no fee if you only need a few.",
"translation": "In general, coin rolls are available at banks with a fee of %s per roll; rolls could potentially have no fee if you only need a few.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "There are coin roll machines but it is unknown if you need to be a customer or if there are additional fees.",
"message": "There are coin roll machines but it is unknown if you need to be a customer or if there are additional fees.",
"translation": "There are coin roll machines but it is unknown if you need to be a customer or if there are additional fees.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Bank of Italy",
"message": "Bank of Italy",
"translation": "Bank of Italy",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin rolls are available to everyone.",
"message": "Coin rolls are available to everyone.",
"translation": "Coin rolls are available to everyone.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Works, but with very high fees (5%% of cost).",
"message": "Works, but with very high fees (5%% of cost).",
"translation": "Works, but with very high fees (5%% of cost).",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Fee of %s per roll of 2 euro coins.",
"message": "Fee of %s per roll of 2 euro coins.",
"translation": "Fee of %s per roll of 2 euro coins.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "As far as we are aware, Lietuvos Bankas only distributes coin rolls to businesses.",
"message": "As far as we are aware, Lietuvos Bankas only distributes coin rolls to businesses.",
"translation": "As far as we are aware, Lietuvos Bankas only distributes coin rolls to businesses.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "It may be worth checking out payout machines to exchange banknotes into coins.",
"message": "It may be worth checking out payout machines to exchange banknotes into coins.",
"translation": "It may be worth checking out payout machines to exchange banknotes into coins.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Luxembourgish Central Bank (Banque Centrale du Luxembourg)",
"message": "Luxembourgish Central Bank (Banque Centrale du Luxembourg)",
"translation": "Luxembourgish Central Bank (Banque Centrale du Luxembourg)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "We currently have no information regarding regular coins, however their webshop sells commemorative coins (for a high premium, but better than most resellers). Commemorative coins are also available for purchase in-person.",
"message": "We currently have no information regarding regular coins, however their webshop sells commemorative coins (for a high premium, but better than most resellers). Commemorative coins are also available for purchase in-person.",
"translation": "We currently have no information regarding regular coins, however their webshop sells commemorative coins (for a high premium, but better than most resellers). Commemorative coins are also available for purchase in-person.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "You should be able to get coin rolls with no additional fees.",
"message": "You should be able to get coin rolls with no additional fees.",
"translation": "You should be able to get coin rolls with no additional fees.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "In general coin rolls are sold with a fee of %s per roll, but we’re lacking a lot of information.",
"message": "In general coin rolls are sold with a fee of %s per roll, but we’re lacking a lot of information.",
"translation": "In general coin rolls are sold with a fee of %s per roll, but we’re lacking a lot of information.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Bank of Valletta and HSBC Bank Malta",
"message": "Bank of Valletta and HSBC Bank Malta",
"translation": "Bank of Valletta and HSBC Bank Malta",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "You can get rolls for a fee of %s per roll. You must order coin rolls through their online platform, and you must be a customer.",
"message": "You can get rolls for a fee of %s per roll. You must order coin rolls through their online platform, and you must be a customer.",
"translation": "You can get rolls for a fee of %s per roll. You must order coin rolls through their online platform, and you must be a customer.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Banks in the Netherlands do not carry cash, and as such it’s not possible to obtain rolls from bank tellers. Obtaining coins from the Dutch Central Bank (De Nederlandsche Bank) is also not possible. If you want to obtain coin rolls you need to use a Geldmaat coin roll machine which can be found in specific branches of GAMMA and Karwei. Geldmaat offers a map on their website where you can search for branches with these machines; you can find that map %shere%s.",
"message": "Banks in the Netherlands do not carry cash, and as such it’s not possible to obtain rolls from bank tellers. Obtaining coins from the Dutch Central Bank (De Nederlandsche Bank) is also not possible. If you want to obtain coin rolls you need to use a Geldmaat coin roll machine which can be found in specific branches of GAMMA and Karwei. Geldmaat offers a map on their website where you can search for branches with these machines; you can find that map %shere%s.",
"translation": "Banks in the Netherlands do not carry cash, and as such it’s not possible to obtain rolls from bank tellers. Obtaining coins from the Dutch Central Bank (De Nederlandsche Bank) is also not possible. If you want to obtain coin rolls you need to use a Geldmaat coin roll machine which can be found in specific branches of GAMMA and Karwei. Geldmaat offers a map on their website where you can search for branches with these machines; you can find that map %shere%s.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "In order to be able to use a Geldmaat coin machine, you must be a customer of either ABN AMRO, ING, or Rabobank. You also cannot pay by cash, only card payments are allowed. All three banks charge a withdrawal fee for getting coin rolls, which are detailed in the list below.",
"message": "In order to be able to use a Geldmaat coin machine, you must be a customer of either ABN AMRO, ING, or Rabobank. You also cannot pay by cash, only card payments are allowed. All three banks charge a withdrawal fee for getting coin rolls, which are detailed in the list below.",
"translation": "In order to be able to use a Geldmaat coin machine, you must be a customer of either ABN AMRO, ING, or Rabobank. You also cannot pay by cash, only card payments are allowed. All three banks charge a withdrawal fee for getting coin rolls, which are detailed in the list below.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "%s per roll.",
"message": "%s per roll.",
"translation": "%s per roll.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Base fee of %s + %s per roll.",
"message": "Base fee of %s + %s per roll.",
"translation": "Base fee of %s + %s per roll.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "One- and two-cent coins have been removed from circulation and cannot be obtained.",
"message": "One- and two-cent coins have been removed from circulation and cannot be obtained.",
"translation": "One- and two-cent coins have been removed from circulation and cannot be obtained.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin bags are sold with no additional fees to bank customers.",
"message": "Coin bags are sold with no additional fees to bank customers.",
"translation": "Coin bags are sold with no additional fees to bank customers.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Bank of Portugal (Banco de Portugal)",
"message": "Bank of Portugal (Banco de Portugal)",
"translation": "Bank of Portugal (Banco de Portugal)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin bags are sold with no additional fees to everyone.",
"message": "Coin bags are sold with no additional fees to everyone.",
"translation": "Coin bags are sold with no additional fees to everyone.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "In general there is a %s fee for coin rolls.",
"message": "In general there is a %s fee for coin rolls.",
"translation": "In general there is a %s fee for coin rolls.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Bank of Slovenia (Banka Slovenije)",
"message": "Bank of Slovenia (Banka Slovenije)",
"translation": "Bank of Slovenia (Banka Slovenije)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "You can purchase commemorative coins for face value, and coin rolls are sold with no fees to everyone.",
"message": "You can purchase commemorative coins for face value, and coin rolls are sold with no fees to everyone.",
"translation": "You can purchase commemorative coins for face value, and coin rolls are sold with no fees to everyone.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "National Bank of Slovakia (Národná banka Slovenska)",
"message": "National Bank of Slovakia (Národná banka Slovenska)",
"translation": "National Bank of Slovakia (Národná banka Slovenska)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "You may be able to get uncirculated rolls, but this is not yet confirmed.",
"message": "You may be able to get uncirculated rolls, but this is not yet confirmed.",
"translation": "You may be able to get uncirculated rolls, but this is not yet confirmed.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "You can get an unlimited number of rolls for a %s fee. You must be a customer of the bank.",
"message": "You can get an unlimited number of rolls for a %s fee. You must be a customer of the bank.",
"translation": "You can get an unlimited number of rolls for a %s fee. You must be a customer of the bank.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Ask the Pope nicely and he’ll probably give you some Vatican coins for free.",
"message": "Ask the Pope nicely and he’ll probably give you some Vatican coins for free.",
"translation": "Ask the Pope nicely and he’ll probably give you some Vatican coins for free.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "We currently have no information regarding coin roll hunting in %s.",
"message": "We currently have no information regarding coin roll hunting in %s.",
"translation": "We currently have no information regarding coin roll hunting in %s.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin Storage",
"message": "Coin Storage",
"translation": "Coin Storage",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "There are many different methods of storing your collecting, each with their own benefits and drawbacks. This page will describe the most common methods collectors use to store their coins, as well as the pros and cons of each method.",
"message": "There are many different methods of storing your collecting, each with their own benefits and drawbacks. This page will describe the most common methods collectors use to store their coins, as well as the pros and cons of each method.",
"translation": "There are many different methods of storing your collecting, each with their own benefits and drawbacks. This page will describe the most common methods collectors use to store their coins, as well as the pros and cons of each method.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin Albums",
"message": "Coin Albums",
"translation": "Coin Albums",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin albums are one of the most popular ways of storing coins. In a coin album you will have multiple coin sheets. These sheets are plastic pages with slots that you can put your coin in to keep them protected. When searching for sheets for your album it is very important to ensure that they do not contain any PVC, which will damage your coins. Some albums will come with sheets already included.",
"message": "Coin albums are one of the most popular ways of storing coins. In a coin album you will have multiple coin sheets. These sheets are plastic pages with slots that you can put your coin in to keep them protected. When searching for sheets for your album it is very important to ensure that they do not contain any PVC, which will damage your coins. Some albums will come with sheets already included.",
"translation": "Coin albums are one of the most popular ways of storing coins. In a coin album you will have multiple coin sheets. These sheets are plastic pages with slots that you can put your coin in to keep them protected. When searching for sheets for your album it is very important to ensure that they do not contain any PVC, which will damage your coins. Some albums will come with sheets already included.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Albums can be an affordable way to store your coins, but higher-end albums can be a bit expensive. Also remember to always ensure that your albums do not contain any PVC!",
"message": "Albums can be an affordable way to store your coins, but higher-end albums can be a bit expensive. Also remember to always ensure that your albums do not contain any PVC!",
"translation": "Albums can be an affordable way to store your coins, but higher-end albums can be a bit expensive. Also remember to always ensure that your albums do not contain any PVC!",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin Boxes",
"message": "Coin Boxes",
"translation": "Coin Boxes",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin boxes are to many people the most aesthetic way to store your coins. A coin box is comprised of various layers which can be stacked ontop of each other. Each layer has various holes where you can insert your coins. Typically you are meant to store your coins in a layer encased in a coin capsule.",
"message": "Coin boxes are to many people the most aesthetic way to store your coins. A coin box is comprised of various layers which can be stacked ontop of each other. Each layer has various holes where you can insert your coins. Typically you are meant to store your coins in a layer encased in a coin capsule.",
"translation": "Coin boxes are to many people the most aesthetic way to store your coins. A coin box is comprised of various layers which can be stacked ontop of each other. Each layer has various holes where you can insert your coins. Typically you are meant to store your coins in a layer encased in a coin capsule.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Boxes are quite space-inefficient and are one of the most expensive ways to store your coins, but at the same time they offer a great visual appeal.",
"message": "Boxes are quite space-inefficient and are one of the most expensive ways to store your coins, but at the same time they offer a great visual appeal.",
"translation": "Boxes are quite space-inefficient and are one of the most expensive ways to store your coins, but at the same time they offer a great visual appeal.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin Capsules",
"message": "Coin Capsules",
"translation": "Coin Capsules",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin capsules are plastic capsules you can put your coin in. They offer good protection to your coins, while still allowing you to view all parts of your coin easily, including the edge engravings and -inscriptions. Capsules are also far more durable than flips, and can be opened and closed repeatedly allowing for them to be reused. This isn’t really possible with flips.",
"message": "Coin capsules are plastic capsules you can put your coin in. They offer good protection to your coins, while still allowing you to view all parts of your coin easily, including the edge engravings and -inscriptions. Capsules are also far more durable than flips, and can be opened and closed repeatedly allowing for them to be reused. This isn’t really possible with flips.",
"translation": "Coin capsules are plastic capsules you can put your coin in. They offer good protection to your coins, while still allowing you to view all parts of your coin easily, including the edge engravings and -inscriptions. Capsules are also far more durable than flips, and can be opened and closed repeatedly allowing for them to be reused. This isn’t really possible with flips.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Capsules can be a bit pricey, but are reusable and are very durable. They also come in different sizes, so make sure you get the right size for your coins.",
"message": "Capsules can be a bit pricey, but are reusable and are very durable. They also come in different sizes, so make sure you get the right size for your coins.",
"translation": "Capsules can be a bit pricey, but are reusable and are very durable. They also come in different sizes, so make sure you get the right size for your coins.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin Flips",
"message": "Coin Flips",
"translation": "Coin Flips",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin flips, also known as ‘2x2’ flips by some Americans are small cardboard flips with a plastic covered hole in the middle for viewing. Most coin flips are stapled, meaning you put your coin in the flip and staple it shut. These kinds of flips are very cheap, and you can buy stacks of a few hundred for only a few euros. If you don’t like the staples though, you can also buy adhesive-flips that glue themselves shut. These flips are more expensive, but also look better than their stapled equivalents.",
"message": "Coin flips, also known as ‘2x2’ flips by some Americans are small cardboard flips with a plastic covered hole in the middle for viewing. Most coin flips are stapled, meaning you put your coin in the flip and staple it shut. These kinds of flips are very cheap, and you can buy stacks of a few hundred for only a few euros. If you don’t like the staples though, you can also buy adhesive-flips that glue themselves shut. These flips are more expensive, but also look better than their stapled equivalents.",
"translation": "Coin flips, also known as ‘2x2’ flips by some Americans are small cardboard flips with a plastic covered hole in the middle for viewing. Most coin flips are stapled, meaning you put your coin in the flip and staple it shut. These kinds of flips are very cheap, and you can buy stacks of a few hundred for only a few euros. If you don’t like the staples though, you can also buy adhesive-flips that glue themselves shut. These flips are more expensive, but also look better than their stapled equivalents.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin slips are also pretty space efficient, and can be easily stacked in boxes for compact storage. Many collectors also like to write notes about their coins on the flips. There also exist special sheets for coin albums that allow you to put in flipped coins, but this is more expensive and less space-efficient than simply using flips or an album without flips.",
"message": "Coin slips are also pretty space efficient, and can be easily stacked in boxes for compact storage. Many collectors also like to write notes about their coins on the flips. There also exist special sheets for coin albums that allow you to put in flipped coins, but this is more expensive and less space-efficient than simply using flips or an album without flips.",
"translation": "Coin slips are also pretty space efficient, and can be easily stacked in boxes for compact storage. Many collectors also like to write notes about their coins on the flips. There also exist special sheets for coin albums that allow you to put in flipped coins, but this is more expensive and less space-efficient than simply using flips or an album without flips.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin Rolls",
"message": "Coin Rolls",
"translation": "Coin Rolls",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "This is probably the most inexpensive way to store your coins. If you take good care of the paper when opening your coin rolls, you can simply reuse them for storage. Just roll your coins back up and put some rubber bands on the ends. You can also get reusable plastic rolls that can be opened and closed. You will need different rolls based on the denomination you want to store, but they are very space-efficient.",
"message": "This is probably the most inexpensive way to store your coins. If you take good care of the paper when opening your coin rolls, you can simply reuse them for storage. Just roll your coins back up and put some rubber bands on the ends. You can also get reusable plastic rolls that can be opened and closed. You will need different rolls based on the denomination you want to store, but they are very space-efficient.",
"translation": "This is probably the most inexpensive way to store your coins. If you take good care of the paper when opening your coin rolls, you can simply reuse them for storage. Just roll your coins back up and put some rubber bands on the ends. You can also get reusable plastic rolls that can be opened and closed. You will need different rolls based on the denomination you want to store, but they are very space-efficient.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Examples",
"message": "Examples",
"translation": "Examples",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "In case you’re looking for some inspiration on how to store your collections, here are some examples.",
"message": "In case you’re looking for some inspiration on how to store your collections, here are some examples.",
"translation": "In case you’re looking for some inspiration on how to store your collections, here are some examples.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Euro Coin Collecting",
"message": "Euro Coin Collecting",
"translation": "Euro Coin Collecting",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "What is Vending Machine Hunting?",
"message": "What is Vending Machine Hunting?",
"translation": "What is Vending Machine Hunting?",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "‘Vending machine hunting’ is a strategy of collecting coins whereby you continuously insert coins into a vending machine and cancel the transaction by pressing the return button. When the vending machine returns your coins to you, you will often get different coins from the ones you put in, and you can repeat this process until you’ve searched through every coin in the machine.",
"message": "‘Vending machine hunting’ is a strategy of collecting coins whereby you continuously insert coins into a vending machine and cancel the transaction by pressing the return button. When the vending machine returns your coins to you, you will often get different coins from the ones you put in, and you can repeat this process until you’ve searched through every coin in the machine.",
"translation": "‘Vending machine hunting’ is a strategy of collecting coins whereby you continuously insert coins into a vending machine and cancel the transaction by pressing the return button. When the vending machine returns your coins to you, you will often get different coins from the ones you put in, and you can repeat this process until you’ve searched through every coin in the machine.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The Test Coins",
"message": "The Test Coins",
"translation": "The Test Coins",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "First, you want to make sure the vending machine you come across actually gives back change — sometimes they don’t! Throw in a 10 cent coin and press the return button. If it doesn’t give the coin back, you can move on to the next machine; there’s a high chance it won’t return higher denominations either. Next throw in a random 2 euro coin and press the return button. You should do this because vending machines may not return 2 euro coins, but rather 1 euro- or 50 cent coins instead. It’s better to find out immediately as opposed to later once you’ve already put in all of your 2 euro coins.",
"message": "First, you want to make sure the vending machine you come across actually gives back change — sometimes they don’t! Throw in a 10 cent coin and press the return button. If it doesn’t give the coin back, you can move on to the next machine; there’s a high chance it won’t return higher denominations either. Next throw in a random 2 euro coin and press the return button. You should do this because vending machines may not return 2 euro coins, but rather 1 euro- or 50 cent coins instead. It’s better to find out immediately as opposed to later once you’ve already put in all of your 2 euro coins.",
"translation": "First, you want to make sure the vending machine you come across actually gives back change — sometimes they don’t! Throw in a 10 cent coin and press the return button. If it doesn’t give the coin back, you can move on to the next machine; there’s a high chance it won’t return higher denominations either. Next throw in a random 2 euro coin and press the return button. You should do this because vending machines may not return 2 euro coins, but rather 1 euro- or 50 cent coins instead. It’s better to find out immediately as opposed to later once you’ve already put in all of your 2 euro coins.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The Stopper",
"message": "The Stopper",
"translation": "The Stopper",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "We want to be able to know when we’ve gone through all the coins in the vending machine. To do this, take out a coin and mark it with something (drawing on it with a Sharpie works well), then put it into the machine. Next time you get the same coin back, you know you’ve gone through everything.",
"message": "We want to be able to know when we’ve gone through all the coins in the vending machine. To do this, take out a coin and mark it with something (drawing on it with a Sharpie works well), then put it into the machine. Next time you get the same coin back, you know you’ve gone through everything.",
"translation": "We want to be able to know when we’ve gone through all the coins in the vending machine. To do this, take out a coin and mark it with something (drawing on it with a Sharpie works well), then put it into the machine. Next time you get the same coin back, you know you’ve gone through everything.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Rejected Stoppers and Coins",
"message": "Rejected Stoppers and Coins",
"translation": "Rejected Stoppers and Coins",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Sometimes you may throw a stopper in, but you hear a ‘clunk’ sound, as if the coin was dropped into a box (normally adding a coin should be silent after you throw it in). This means the coin was not added to the stack properly, and so it will not be returned. Pay attention to this noise, because you won’t be getting the stopper back! Throw in another marked coin instead until the machine accepts the coin.",
"message": "Sometimes you may throw a stopper in, but you hear a ‘clunk’ sound, as if the coin was dropped into a box (normally adding a coin should be silent after you throw it in). This means the coin was not added to the stack properly, and so it will not be returned. Pay attention to this noise, because you won’t be getting the stopper back! Throw in another marked coin instead until the machine accepts the coin.",
"translation": "Sometimes you may throw a stopper in, but you hear a ‘clunk’ sound, as if the coin was dropped into a box (normally adding a coin should be silent after you throw it in). This means the coin was not added to the stack properly, and so it will not be returned. Pay attention to this noise, because you won’t be getting the stopper back! Throw in another marked coin instead until the machine accepts the coin.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "(Non-)Merging Machines",
"message": "(Non-)Merging Machines",
"translation": "(Non-)Merging Machines",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "We generally identify between two main types of vending machines.",
"message": "We generally identify between two main types of vending machines.",
"translation": "We generally identify between two main types of vending machines.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Merging",
"message": "Merging",
"translation": "Merging",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The vending machine merges change together. For example if you throw in five 50 cent coins, the machine returns either two 1 euro coins and one 50 cent coin or one 2 euro and one 50 cent coin. This usually means you can hunt 2 euro coins very quickly but other denominations only once at a time. A good tip is to throw in an odd number of euros and 80 cents if you want to search through all denominations.",
"message": "The vending machine merges change together. For example if you throw in five 50 cent coins, the machine returns either two 1 euro coins and one 50 cent coin or one 2 euro and one 50 cent coin. This usually means you can hunt 2 euro coins very quickly but other denominations only once at a time. A good tip is to throw in an odd number of euros and 80 cents if you want to search through all denominations.",
"translation": "The vending machine merges change together. For example if you throw in five 50 cent coins, the machine returns either two 1 euro coins and one 50 cent coin or one 2 euro and one 50 cent coin. This usually means you can hunt 2 euro coins very quickly but other denominations only once at a time. A good tip is to throw in an odd number of euros and 80 cents if you want to search through all denominations.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Non-Merging",
"message": "Non-Merging",
"translation": "Non-Merging",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The vending machine does not merge change together. This means if you throw in five 50 cent coins it will return five 50 cent coins. This makes it very easy to hunt a large amount of a specific denomination.",
"message": "The vending machine does not merge change together. This means if you throw in five 50 cent coins it will return five 50 cent coins. This makes it very easy to hunt a large amount of a specific denomination.",
"translation": "The vending machine does not merge change together. This means if you throw in five 50 cent coins it will return five 50 cent coins. This makes it very easy to hunt a large amount of a specific denomination.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Limits",
"message": "Limits",
"translation": "Limits",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "There are some limits to vending machine hunts which you need to be aware of.",
"message": "There are some limits to vending machine hunts which you need to be aware of.",
"translation": "There are some limits to vending machine hunts which you need to be aware of.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Maximum Input Limit",
"message": "Maximum Input Limit",
"translation": "Maximum Input Limit",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Some machines have a maximum amount you can throw in, and will reject anything higher. For example machines with a max limit of five euros will reject any additional coins if you throw in five euros. You can try to go above the limit if you throw in, say, %s and then another one- or two euro coin; the machine will probably accept it.",
"message": "Some machines have a maximum amount you can throw in, and will reject anything higher. For example machines with a max limit of five euros will reject any additional coins if you throw in five euros. You can try to go above the limit if you throw in, say, %s and then another one- or two euro coin; the machine will probably accept it.",
"translation": "Some machines have a maximum amount you can throw in, and will reject anything higher. For example machines with a max limit of five euros will reject any additional coins if you throw in five euros. You can try to go above the limit if you throw in, say, %s and then another one- or two euro coin; the machine will probably accept it.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Maximum Change Limit",
"message": "Maximum Change Limit",
"translation": "Maximum Change Limit",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Some machines will either give back large amounts of change in bills or will not give back large amounts of change at all (usually cigarette machines). Read the labels on all machines carefully since these limits are usually written there.",
"message": "Some machines will either give back large amounts of change in bills or will not give back large amounts of change at all (usually cigarette machines). Read the labels on all machines carefully since these limits are usually written there.",
"translation": "Some machines will either give back large amounts of change in bills or will not give back large amounts of change at all (usually cigarette machines). Read the labels on all machines carefully since these limits are usually written there.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Even if no limits are listed, it’s still advised that you exercise caution: it is not uncommon for a vending machine to steal your money. In the case that a vending machine does steal your money, look for a label on the machine that contains a support number.",
"message": "Even if no limits are listed, it’s still advised that you exercise caution: it is not uncommon for a vending machine to steal your money. In the case that a vending machine does steal your money, look for a label on the machine that contains a support number.",
"translation": "Even if no limits are listed, it’s still advised that you exercise caution: it is not uncommon for a vending machine to steal your money. In the case that a vending machine does steal your money, look for a label on the machine that contains a support number.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "For information on Austrian cigarette machines, see the ‘%sCigarette Machines%s’ section.",
"message": "For information on Austrian cigarette machines, see the ‘%sCigarette Machines%s’ section.",
"translation": "For information on Austrian cigarette machines, see the ‘%sCigarette Machines%s’ section.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Cigarette Machines",
"message": "Cigarette Machines",
"translation": "Cigarette Machines",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "In some countries where cigarette machines are legal, you can hunt through them as well. Unless you’re in Malta, you must verify your age on them by either sliding an ID card through a sensor or holding a debit card on an RFID scanner; you must do this for every cycle. Sometimes you must also select something to purchase, throw in less money than the cost, and then cancel the purchase. Note that most cigarette machines in Austria have a %s max change limit.",
"message": "In some countries where cigarette machines are legal, you can hunt through them as well. Unless you’re in Malta, you must verify your age on them by either sliding an ID card through a sensor or holding a debit card on an RFID scanner; you must do this for every cycle. Sometimes you must also select something to purchase, throw in less money than the cost, and then cancel the purchase. Note that most cigarette machines in Austria have a %s max change limit.",
"translation": "In some countries where cigarette machines are legal, you can hunt through them as well. Unless you’re in Malta, you must verify your age on them by either sliding an ID card through a sensor or holding a debit card on an RFID scanner; you must do this for every cycle. Sometimes you must also select something to purchase, throw in less money than the cost, and then cancel the purchase. Note that most cigarette machines in Austria have a %s max change limit.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "For RFID scanner machines it helps to wear a glove and slide a debit card into the back of it so you can easily use both hands and don’t have to fumble with a card and coins.",
"message": "For RFID scanner machines it helps to wear a glove and slide a debit card into the back of it so you can easily use both hands and don’t have to fumble with a card and coins.",
"translation": "For RFID scanner machines it helps to wear a glove and slide a debit card into the back of it so you can easily use both hands and don’t have to fumble with a card and coins.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "On this section of the site you can find everything there is to know about collecting Euro coins. If this is a hobby that interests you, join the Discord server linked at the top of the page!",
"message": "On this section of the site you can find everything there is to know about collecting Euro coins. If this is a hobby that interests you, join the Discord server linked at the top of the page!",
"translation": "On this section of the site you can find everything there is to know about collecting Euro coins. If this is a hobby that interests you, join the Discord server linked at the top of the page!",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Learn about collecting coins from coin rolls!",
"message": "Learn about collecting coins from coin rolls!",
"translation": "Learn about collecting coins from coin rolls!",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Learn about the different methods to storing your collection!",
"message": "Learn about the different methods to storing your collection!",
"translation": "Learn about the different methods to storing your collection!",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Shop Hunting",
"message": "Shop Hunting",
"translation": "Shop Hunting",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Learn about how to collect coins from shop-keepers and other people who deal in cash!",
"message": "Learn about how to collect coins from shop-keepers and other people who deal in cash!",
"translation": "Learn about how to collect coins from shop-keepers and other people who deal in cash!",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Vending Machine Hunting",
"message": "Vending Machine Hunting",
"translation": "Vending Machine Hunting",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Learn about collecting coins from vending machines!",
"message": "Learn about collecting coins from vending machines!",
"translation": "Learn about collecting coins from vending machines!",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The Euro Cash Compendium",
"message": "The Euro Cash Compendium",
"translation": "The Euro Cash Compendium",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "United in",
"message": "United in",
"translation": "United in",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "diversity",
"message": "diversity",
"translation": "diversity",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "cash",
"message": "cash",
"translation": "cash",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Welcome to the Euro Cash Compendium. This sites aims to be a resource for you to discover everything there is to know about the coins and banknotes of the Euro, a currency that spans 26 countries and 350 million people. We also have dedicated sections of the site for collectors.",
"message": "Welcome to the Euro Cash Compendium. This sites aims to be a resource for you to discover everything there is to know about the coins and banknotes of the Euro, a currency that spans 26 countries and 350 million people. We also have dedicated sections of the site for collectors.",
"translation": "Welcome to the Euro Cash Compendium. This sites aims to be a resource for you to discover everything there is to know about the coins and banknotes of the Euro, a currency that spans 26 countries and 350 million people. We also have dedicated sections of the site for collectors.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Euro Cash Jargon",
"message": "Euro Cash Jargon",
"translation": "Euro Cash Jargon",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Both on this website and in other euro-cash-related forums there are many terms you will come across that you may not immediately understand. This page will hopefully get you up to speed with the most important and frequently-used terminology.",
"message": "Both on this website and in other euro-cash-related forums there are many terms you will come across that you may not immediately understand. This page will hopefully get you up to speed with the most important and frequently-used terminology.",
"translation": "Both on this website and in other euro-cash-related forums there are many terms you will come across that you may not immediately understand. This page will hopefully get you up to speed with the most important and frequently-used terminology.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "All terms defined below can be used as clickable links which highlight the selected term. It is recommended to use these links when sharing this page with others, so that the relevant terms are highlighted.",
"message": "All terms defined below can be used as clickable links which highlight the selected term. It is recommended to use these links when sharing this page with others, so that the relevant terms are highlighted.",
"translation": "All terms defined below can be used as clickable links which highlight the selected term. It is recommended to use these links when sharing this page with others, so that the relevant terms are highlighted.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "General Terms",
"message": "General Terms",
"translation": "General Terms",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "AU coins are coins that are in extremely good condition as a result of limited use in circulation. Unlike the term ‘UNC’, this term is a description of the coins quality, not its usage. AU coins often appear to retain most of their original luster as well as possessing little-to-no scratches or other forms of post-mint damage (PMD).",
"message": "AU coins are coins that are in extremely good condition as a result of limited use in circulation. Unlike the term ‘UNC’, this term is a description of the coins quality, not its usage. AU coins often appear to retain most of their original luster as well as possessing little-to-no scratches or other forms of post-mint damage (PMD).",
"translation": "AU coins are coins that are in extremely good condition as a result of limited use in circulation. Unlike the term ‘UNC’, this term is a description of the coins quality, not its usage. AU coins often appear to retain most of their original luster as well as possessing little-to-no scratches or other forms of post-mint damage (PMD).",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "BU is a general term to refer to coins from coincards and -sets. These are different from UNC coins in that they are typically handled with more care during the minting process and are struck with higher-quality dies than the coins minted for coin rolls resulting in a higher-quality end product. You may also see these coins referred to by the French term ‘fleur de coin’.",
"message": "BU is a general term to refer to coins from coincards and -sets. These are different from UNC coins in that they are typically handled with more care during the minting process and are struck with higher-quality dies than the coins minted for coin rolls resulting in a higher-quality end product. You may also see these coins referred to by the French term ‘fleur de coin’.",
"translation": "BU is a general term to refer to coins from coincards and -sets. These are different from UNC coins in that they are typically handled with more care during the minting process and are struck with higher-quality dies than the coins minted for coin rolls resulting in a higher-quality end product. You may also see these coins referred to by the French term ‘fleur de coin’.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "NIFC coins are coins minted without the intention of being put into general circulation. These coins are typically minted with the purpose of being put into coincards or coin-sets to be sold to collectors. Occasionally they are also handed out to collectors for face value at banks.",
"message": "NIFC coins are coins minted without the intention of being put into general circulation. These coins are typically minted with the purpose of being put into coincards or coin-sets to be sold to collectors. Occasionally they are also handed out to collectors for face value at banks.",
"translation": "NIFC coins are coins minted without the intention of being put into general circulation. These coins are typically minted with the purpose of being put into coincards or coin-sets to be sold to collectors. Occasionally they are also handed out to collectors for face value at banks.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "While uncommon, NIFC coins are occasionally found in circulation. This can happen for a variety of reasons such as someone depositing their coin collection (known as a ‘collection dump’), or a collector’s child spending their rare coins on an ice cream. Some coin mints have also been known to put NIFC coins that have gone unsold for multiple years into circulation.",
"message": "While uncommon, NIFC coins are occasionally found in circulation. This can happen for a variety of reasons such as someone depositing their coin collection (known as a ‘collection dump’), or a collector’s child spending their rare coins on an ice cream. Some coin mints have also been known to put NIFC coins that have gone unsold for multiple years into circulation.",
"translation": "While uncommon, NIFC coins are occasionally found in circulation. This can happen for a variety of reasons such as someone depositing their coin collection (known as a ‘collection dump’), or a collector’s child spending their rare coins on an ice cream. Some coin mints have also been known to put NIFC coins that have gone unsold for multiple years into circulation.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Post-mint damage is any damage that a coin has sustained outside of the minting process, such as through being dropped on the ground, hit against a table, etc.",
"message": "Post-mint damage is any damage that a coin has sustained outside of the minting process, such as through being dropped on the ground, hit against a table, etc.",
"translation": "Post-mint damage is any damage that a coin has sustained outside of the minting process, such as through being dropped on the ground, hit against a table, etc.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Uncirculated coins are coins that have never been used in a monetary exchange. The term ‘UNC’ is often mistakenly used to refer to coins in very good condition, but this is incorrect. A coin in poor condition that has never been circulated is still considered an ‘UNC’ coin.",
"message": "Uncirculated coins are coins that have never been used in a monetary exchange. The term ‘UNC’ is often mistakenly used to refer to coins in very good condition, but this is incorrect. A coin in poor condition that has never been circulated is still considered an ‘UNC’ coin.",
"translation": "Uncirculated coins are coins that have never been used in a monetary exchange. The term ‘UNC’ is often mistakenly used to refer to coins in very good condition, but this is incorrect. A coin in poor condition that has never been circulated is still considered an ‘UNC’ coin.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Collector-Specific Terms",
"message": "Collector-Specific Terms",
"translation": "Collector-Specific Terms",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Coin roll hunting is a general term for the activity of searching through coin rolls and -bags to find coins for a collection. Coin rolls and bags are often obtained at banks or coin roll machines.",
"message": "Coin roll hunting is a general term for the activity of searching through coin rolls and -bags to find coins for a collection. Coin rolls and bags are often obtained at banks or coin roll machines.",
"translation": "Coin roll hunting is a general term for the activity of searching through coin rolls and -bags to find coins for a collection. Coin rolls and bags are often obtained at banks or coin roll machines.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Select Your Language",
"message": "Select Your Language",
"translation": "Select Your Language",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Select your preferred language to use on the site.",
"message": "Select your preferred language to use on the site.",
"translation": "Select your preferred language to use on the site.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Eurozone Languages",
"message": "Eurozone Languages",
"translation": "Eurozone Languages",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Other Languages",
"message": "Other Languages",
"translation": "Other Languages",
"translatorComment": "Copied from source.",
"fuzzy": true
}
]
}
|