summaryrefslogtreecommitdiffhomepage
path: root/src/rosetta/bg/messages.gotext.json
blob: b813f4618dc8d195bd9bf2d0af057647369cfdd5 (plain) (blame)
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
{
    "language": "bg",
    "messages": [
        {
            "id": "Andorra",
            "message": "Andorra",
            "translation": ""
        },
        {
            "id": "Austria",
            "message": "Austria",
            "translation": ""
        },
        {
            "id": "Belgium",
            "message": "Belgium",
            "translation": ""
        },
        {
            "id": "Cyprus",
            "message": "Cyprus",
            "translation": ""
        },
        {
            "id": "Germany",
            "message": "Germany",
            "translation": ""
        },
        {
            "id": "Estonia",
            "message": "Estonia",
            "translation": ""
        },
        {
            "id": "Spain",
            "message": "Spain",
            "translation": ""
        },
        {
            "id": "Finland",
            "message": "Finland",
            "translation": ""
        },
        {
            "id": "France",
            "message": "France",
            "translation": ""
        },
        {
            "id": "Greece",
            "message": "Greece",
            "translation": ""
        },
        {
            "id": "Croatia",
            "message": "Croatia",
            "translation": ""
        },
        {
            "id": "Ireland",
            "message": "Ireland",
            "translation": ""
        },
        {
            "id": "Italy",
            "message": "Italy",
            "translation": ""
        },
        {
            "id": "Lithuania",
            "message": "Lithuania",
            "translation": ""
        },
        {
            "id": "Luxembourg",
            "message": "Luxembourg",
            "translation": ""
        },
        {
            "id": "Latvia",
            "message": "Latvia",
            "translation": ""
        },
        {
            "id": "Monaco",
            "message": "Monaco",
            "translation": ""
        },
        {
            "id": "Malta",
            "message": "Malta",
            "translation": ""
        },
        {
            "id": "Netherlands",
            "message": "Netherlands",
            "translation": ""
        },
        {
            "id": "Portugal",
            "message": "Portugal",
            "translation": ""
        },
        {
            "id": "Slovenia",
            "message": "Slovenia",
            "translation": ""
        },
        {
            "id": "Slovakia",
            "message": "Slovakia",
            "translation": ""
        },
        {
            "id": "San Marino",
            "message": "San Marino",
            "translation": ""
        },
        {
            "id": "Vatican City",
            "message": "Vatican City",
            "translation": ""
        },
        {
            "id": "Page Not Found",
            "message": "Page Not Found",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Euro Cash",
            "message": "Euro Cash",
            "translation": ""
        },
        {
            "id": "Found a mistake or want to contribute missing information?",
            "message": "Found a mistake or want to contribute missing information?",
            "translation": ""
        },
        {
            "id": "Feel free to contact us!",
            "message": "Feel free to contact us!",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Home",
            "message": "Home",
            "translation": ""
        },
        {
            "id": "News",
            "message": "News",
            "translation": ""
        },
        {
            "id": "Coin Collecting",
            "message": "Coin Collecting",
            "translation": ""
        },
        {
            "id": "Coins",
            "message": "Coins",
            "translation": ""
        },
        {
            "id": "Banknotes",
            "message": "Banknotes",
            "translation": ""
        },
        {
            "id": "Jargon",
            "message": "Jargon",
            "translation": ""
        },
        {
            "id": "Discord",
            "message": "Discord",
            "translation": ""
        },
        {
            "id": "About",
            "message": "About",
            "translation": ""
        },
        {
            "id": "Language",
            "message": "Language",
            "translation": ""
        },
        {
            "id": "About Us",
            "message": "About Us",
            "translation": ""
        },
        {
            "id": "Open Source",
            "message": "Open Source",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Contact Us",
            "message": "Contact Us",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Special Thanks",
            "message": "Special Thanks",
            "translation": ""
        },
        {
            "id": "Development",
            "message": "Development",
            "translation": ""
        },
        {
            "id": "Research",
            "message": "Research",
            "translation": ""
        },
        {
            "id": "Translations",
            "message": "Translations",
            "translation": ""
        },
        {
            "id": "British- \u0026 American English",
            "message": "British- \u0026 American English",
            "translation": ""
        },
        {
            "id": "Icelandic",
            "message": "Icelandic",
            "translation": ""
        },
        {
            "id": "Andorran Euro Coin Designs",
            "message": "Andorran Euro Coin Designs",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "%s, %s, and %s",
            "message": "%s, %s, and %s",
            "translation": ""
        },
        {
            "id": "Andorran landscapes, nature, fauna, and flora",
            "message": "Andorran landscapes, nature, fauna, and flora",
            "translation": ""
        },
        {
            "id": "Andorra’s Romanesque art",
            "message": "Andorra’s Romanesque art",
            "translation": ""
        },
        {
            "id": "Casa de la Vall",
            "message": "Casa de la Vall",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Austrian Euro Coin Designs",
            "message": "Austrian Euro Coin Designs",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Belgian Euro Coin Designs",
            "message": "Belgian Euro Coin Designs",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Croatian Euro Coin Designs",
            "message": "Croatian Euro Coin Designs",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Dutch Euro Coin Designs",
            "message": "Dutch Euro Coin Designs",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Euro Coin Designs",
            "message": "Euro Coin Designs",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Euro Coin Mintages",
            "message": "Euro Coin Mintages",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Additional Notes",
            "message": "Additional Notes",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Country",
            "message": "Country",
            "translation": ""
        },
        {
            "id": "Filter",
            "message": "Filter",
            "translation": ""
        },
        {
            "id": "Standard Issue Coins",
            "message": "Standard Issue Coins",
            "translation": ""
        },
        {
            "id": "Year",
            "message": "Year",
            "translation": ""
        },
        {
            "id": "Unknown",
            "message": "Unknown",
            "translation": ""
        },
        {
            "id": "Commemorative Coins",
            "message": "Commemorative Coins",
            "translation": ""
        },
        {
            "id": "Commemorated Issue",
            "message": "Commemorated Issue",
            "translation": ""
        },
        {
            "id": "Mintage",
            "message": "Mintage",
            "translation": ""
        },
        {
            "id": "Euro Coins",
            "message": "Euro Coins",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Designs",
            "message": "Designs",
            "translation": ""
        },
        {
            "id": "View the 600+ different Euro-coin designs!",
            "message": "View the 600+ different Euro-coin designs!",
            "translation": ""
        },
        {
            "id": "Mintages",
            "message": "Mintages",
            "translation": ""
        },
        {
            "id": "View the mintage figures of all the Euro coins!",
            "message": "View the mintage figures of all the Euro coins!",
            "translation": ""
        },
        {
            "id": "Varieties",
            "message": "Varieties",
            "translation": ""
        },
        {
            "id": "View all the known Euro varieties!",
            "message": "View all the known Euro varieties!",
            "translation": ""
        },
        {
            "id": "Coin Roll Hunting",
            "message": "Coin Roll Hunting",
            "translation": ""
        },
        {
            "id": "What is Coin Roll Hunting?",
            "message": "What is Coin Roll Hunting?",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Getting Started",
            "message": "Getting Started",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Country-Specific Details",
            "message": "Country-Specific Details",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Belgian Central Bank",
            "message": "Belgian Central Bank",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Free for customers when you order through their online platform.",
            "message": "Free for customers when you order through their online platform.",
            "translation": ""
        },
        {
            "id": "Bank of Cyprus",
            "message": "Bank of Cyprus",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "German Federal Bank (Deutsche Bundesbank)",
            "message": "German Federal Bank (Deutsche Bundesbank)",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Central Bank of Estonia Museum",
            "message": "Central Bank of Estonia Museum",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Coin rolls are free but you must be a customer.",
            "message": "Coin rolls are free but you must be a customer.",
            "translation": ""
        },
        {
            "id": "Bank of Spain",
            "message": "Bank of Spain",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Coin rolls have no fees.",
            "message": "Coin rolls have no fees.",
            "translation": ""
        },
        {
            "id": "La Caixa",
            "message": "La Caixa",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Coin rolls can be obtained with no fees.",
            "message": "Coin rolls can be obtained with no fees.",
            "translation": ""
        },
        {
            "id": "Bank of Finland",
            "message": "Bank of Finland",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "and",
            "message": "and",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Bank of Greece (Τράπεζα της Ελλάδος)",
            "message": "Bank of Greece (Τράπεζα της Ελλάδος)",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Bank of Italy",
            "message": "Bank of Italy",
            "translation": ""
        },
        {
            "id": "Coin rolls are available to everyone.",
            "message": "Coin rolls are available to everyone.",
            "translation": ""
        },
        {
            "id": "Works, but with very high fees (5%% of cost).",
            "message": "Works, but with very high fees (5%% of cost).",
            "translation": ""
        },
        {
            "id": "Fee of %s per roll of 2 euro coins.",
            "message": "Fee of %s per roll of 2 euro coins.",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Luxembourgish Central Bank (Banque Centrale du Luxembourg)",
            "message": "Luxembourgish Central Bank (Banque Centrale du Luxembourg)",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Bank of Valletta and HSBC Bank Malta",
            "message": "Bank of Valletta and HSBC Bank Malta",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "%s per roll.",
            "message": "%s per roll.",
            "translation": ""
        },
        {
            "id": "Base fee of %s + %s per roll.",
            "message": "Base fee of %s + %s per roll.",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Bank of Portugal (Banco de Portugal)",
            "message": "Bank of Portugal (Banco de Portugal)",
            "translation": ""
        },
        {
            "id": "Coin bags are sold with no additional fees to everyone.",
            "message": "Coin bags are sold with no additional fees to everyone.",
            "translation": ""
        },
        {
            "id": "In general there is a %s fee for coin rolls.",
            "message": "In general there is a %s fee for coin rolls.",
            "translation": ""
        },
        {
            "id": "Bank of Slovenia (Banka Slovenije)",
            "message": "Bank of Slovenia (Banka Slovenije)",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "National Bank of Slovakia (Národná banka Slovenska)",
            "message": "National Bank of Slovakia (Národná banka Slovenska)",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Coin Storage",
            "message": "Coin Storage",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Coin Albums",
            "message": "Coin Albums",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Coin Boxes",
            "message": "Coin Boxes",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Coin Capsules",
            "message": "Coin Capsules",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Coin Flips",
            "message": "Coin Flips",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Coin Rolls",
            "message": "Coin Rolls",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Examples",
            "message": "Examples",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Euro Coin Collecting",
            "message": "Euro Coin Collecting",
            "translation": ""
        },
        {
            "id": "What is Vending Machine Hunting?",
            "message": "What is Vending Machine Hunting?",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "The Test Coins",
            "message": "The Test Coins",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "The Stopper",
            "message": "The Stopper",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Rejected Stoppers and Coins",
            "message": "Rejected Stoppers and Coins",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "(Non-)Merging Machines",
            "message": "(Non-)Merging Machines",
            "translation": ""
        },
        {
            "id": "We generally identify between two main types of vending machines.",
            "message": "We generally identify between two main types of vending machines.",
            "translation": ""
        },
        {
            "id": "Merging",
            "message": "Merging",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Non-Merging",
            "message": "Non-Merging",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Limits",
            "message": "Limits",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Maximum Input Limit",
            "message": "Maximum Input Limit",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Maximum Change Limit",
            "message": "Maximum Change Limit",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Cigarette Machines",
            "message": "Cigarette Machines",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Learn about collecting coins from coin rolls!",
            "message": "Learn about collecting coins from coin rolls!",
            "translation": ""
        },
        {
            "id": "Learn about the different methods to storing your collection!",
            "message": "Learn about the different methods to storing your collection!",
            "translation": ""
        },
        {
            "id": "Shop Hunting",
            "message": "Shop Hunting",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Vending Machine Hunting",
            "message": "Vending Machine Hunting",
            "translation": ""
        },
        {
            "id": "Learn about collecting coins from vending machines!",
            "message": "Learn about collecting coins from vending machines!",
            "translation": ""
        },
        {
            "id": "The Euro Cash Compendium",
            "message": "The Euro Cash Compendium",
            "translation": ""
        },
        {
            "id": "United in",
            "message": "United in",
            "translation": ""
        },
        {
            "id": "diversity",
            "message": "diversity",
            "translation": ""
        },
        {
            "id": "cash",
            "message": "cash",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Euro Cash Jargon",
            "message": "Euro Cash Jargon",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "General Terms",
            "message": "General Terms",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "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": ""
        },
        {
            "id": "Collector-Specific Terms",
            "message": "Collector-Specific Terms",
            "translation": ""
        },
        {
            "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": ""
        },
        {
            "id": "Select Your Language",
            "message": "Select Your Language",
            "translation": ""
        },
        {
            "id": "Select your preferred language to use on the site.",
            "message": "Select your preferred language to use on the site.",
            "translation": ""
        },
        {
            "id": "Eurozone Languages",
            "message": "Eurozone Languages",
            "translation": ""
        },
        {
            "id": "Other Languages",
            "message": "Other Languages",
            "translation": ""
        }
    ]
}