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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"#-#-#-#-# backend.pot (PACKAGE VERSION) #-#-#-#-#\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-07-30 02:03+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"#-#-#-#-# - (PACKAGE VERSION) #-#-#-#-#\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-07-27 20:08+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: src/templates/collecting-crh.html.tmpl:372
msgid ""
"\n"
"\t\t\t\tIt may be worth checking out payout machines to exchange\n"
"\t\t\t\tbanknotes into coins.\n"
"\t\t\t"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:42
msgid "The arms of the Bishop of Urgell"
msgstr ""
#: src/templates/coins-designs-at.html.tmpl:4
msgid "Austrian Euro Coin Designs"
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:141
msgid "Margus Kadarik"
msgstr ""
#: src/templates/coins-designs-hr.html.tmpl:29
msgid ""
"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 "
"(‘{CroatianStart:r}kuna zlatica{CroatianEnd:E}’ in Croatian)."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:35
msgid ""
"Below you can find country-specific details 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 {Link:l}here{-:E}."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:274
msgid ""
"\n"
"\t\t\t\tCoin roll machines are uncommon, only some banks have them and\n"
"\t\t\t\tyou need to be a customer. You may also need to order them in\n"
"\t\t\t\tadvance.\n"
"\t\t\t"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:291
msgid ""
"\n"
"\t\t\t\tFree coin rolls if you are a customer or %s per roll if you are\n"
"\t\t\t\tnot a customer. There are coin roll machines."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:379
msgid "Luxembourgish Central Bank (Banque Centrale du Luxembourg)"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:4
msgid "Andorran Euro Coin Designs"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:44
msgid "The arms of Catalonia"
msgstr ""
#: src/templates/-base.html.tmpl:44
msgid "Feel free to contact us!"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:81
#: src/templates/banknotes-codes.html.tmpl:141
msgid "Finland"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:89
#: src/templates/banknotes-codes.html.tmpl:151
#: src/templates/banknotes-codes.html.tmpl:245
msgid "Austria"
msgstr ""
#: src/templates/coins-mintages.html.tmpl:78
#: src/templates/coins-mintages.html.tmpl:116
msgid "Error"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:220
msgid ""
"\n"
"\t\t\t\tYou can purchase individual coins and commemorative coin rolls\n"
"\t\t\t\t(even those of other countries). You can watch %shere%s to see\n"
"\t\t\t\thow to do it."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:489
msgid ""
"\n"
"\t\t\t\tYou can purchase commemorative coins for face value, and coin\n"
"\t\t\t\trolls are sold with no fees to everyone.\n"
"\t\t\t"
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:22
msgid ""
"In June 2024 a public design competition was announced with a deadline for "
"the 19th of October. In total 134 designs were submitted by the deadline and "
"10 designs were selected by a jury. These 10 designs were then voted on in a "
"public vote over the course of one week. In total 45,453 people voted and "
"the current design won with a total of 12,482 votes (27.46%)."
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:35
msgid "Name"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:105
#: src/templates/banknotes-codes.html.tmpl:146
#: src/templates/banknotes-codes.html.tmpl:180
#: src/templates/banknotes-codes.html.tmpl:230
#: src/templates/banknotes-codes.html.tmpl:274
msgid "France"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:216
msgid "Europa Series"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:463
msgid ""
"\n"
"\t\t\t\tOne- and two-cent coins have been removed from circulation and\n"
"\t\t\t\tcannot be obtained.\n"
"\t\t\t"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:24
msgid "Casa de la Vall"
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:27
msgid "Berlin"
msgstr ""
#: src/templates/coins.html.tmpl:39
msgid "View all the known Euro varieties"
msgstr ""
#: src/templates/coins-designs.html.tmpl:4
msgid "Euro Coin Designs"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:165
msgid ""
"\n"
"\t\t\t\tYou can obtain regular- and commemorative coins for face value\n"
"\t\t\t\tincluding 5-, 10-, and 20 euro coins. You do not need to be a\n"
"\t\t\t\tcustomer although depending on your branch you may need to make\n"
"\t\t\t\tan appointment. The purchase of coins can only be done with\n"
"\t\t\t\tcash.\n"
"\t\t\t"
msgstr ""
#: src/templates/banknotes.html.tmpl:36
msgid "Test Notes"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:520
msgid ""
"\n"
"\t\t\t\tWe currently have no information regarding coin roll hunting in\n"
"\t\t\t\t%s."
msgstr ""
#: src/templates/coins-designs-hr.html.tmpl:21
msgid ""
"The 1-, 2- and 5 euro cent coins were designed by Maja Škripelj and feature "
"a motif of the letters ‘ⰘⰓ’ from the {Link:L}Glagolitic script{-:E} — an old "
"Slavic script that saw use in Croatia up until the 19th century — "
"representing Croatia’s country code (‘HR’ in the Latin alphabet)."
msgstr ""
#: src/templates/index.html.tmpl:9
msgid "diversity"
msgstr ""
#: src/templates/index.html.tmpl:10
msgid "cash"
msgstr ""
#: src/templates/-error.html.tmpl:11
msgid ""
"If this issue persists, don’t hesitate to contact ‘@onetruemangoman’ on "
"Discord or to email us at {Email:e}"
msgstr ""
#: src/templates/coins-mintages.html.tmpl:12
msgid "Additional Notes"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:7
msgid "What is Coin Roll Hunting?"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:22
msgid ""
"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. Most banks will "
"charge you a small fee per roll and/or transaction."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:86
msgid "Raiffeisen Bank"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:218
msgid "Bank of Spain"
msgstr ""
#: src/templates/collecting.html.tmpl:29
msgid "Learn about the different methods to storing your collection"
msgstr ""
#: src/templates/index.html.tmpl:5
msgid "The Euro Cash Wiki"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:48
msgid ""
"Coin rolls can be obtained from Andbank, Creand and MoraBanc. All three of "
"these banks require that you are a customer to get rolls, however there have "
"been reports of individuals managing to get rolls without any fees and "
"without being a customer by simply asking kindly at the bank."
msgstr ""
#. TRANSLATORS: The OeNB prefers ‘Oe’ over ‘Ö’
#: src/templates/collecting-crh.html.tmpl:53
msgid "Austrian National Bank"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:89
msgid ""
"There is a fee of {€1:m} per roll if you aren’t a customer and {€0,30:m} "
"otherwise. Coin deposits are free for customers."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:267
msgid ""
"\n"
"\t\t\t\tIt is probably not possible to obtain coin rolls, but this is\n"
"\t\t\t\tnot confirmed.\n"
"\t\t\t"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:505
msgid ""
"\n"
"\t\t\t\tYou can get an unlimited number of rolls for a %s fee. You\n"
"\t\t\t\tmust be a customer of the bank."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:487
msgid "Bank of Slovenia (Banka Slovenije)"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:218
msgid ""
"In the Europa series the first letter of the serial number can be used to "
"identify the printer that printed the banknote, just like the printer code. "
"The following table shows which countries map to which codes."
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:15
msgid ""
"The German euro coins feature three different designs. A unique feature of "
"German euro coins are the mint marks on each coin that denote in which city "
"a given coin was minted. Germany has five active mints that produce Euro "
"coins, which are denoted in the table below."
msgstr ""
#: src/templates/about.html.tmpl:23
msgid "Research"
msgstr ""
#: src/templates/-navbar.html.tmpl:8
msgid "Banknotes"
msgstr ""
#: src/templates/coins-designs-at.html.tmpl:14
msgid "Austrian €0.02 coin"
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:10
msgid "German €0.01 coin"
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:60
msgid ""
"The €2 coin also features an edge-inscription of Germany’s national motto "
"and incipit of Germany’s national anthem. It reads ‘{GermanStart:r}EINIGKEIT "
"UND RECHT UND FREIHEIT{GermanEnd:E}’ (English: ‘UNITY AND JUSTICE AND "
"FREEDOM’)."
msgstr ""
#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
#: src/templates/coins-designs-ee.html.tmpl:56
msgid "{Break:r}Consistency"
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:90
msgid "Jaak Peep, Villem Valme"
msgstr ""
#: src/templates/coins-designs-nl.html.tmpl:4
msgid "Dutch Euro Coin Designs"
msgstr ""
#. TRANSLATORS: Beginning of sentence, as in ‘United in …’
#: src/templates/index.html.tmpl:8
msgid "United in"
msgstr ""
#: src/templates/-navbar.html.tmpl:14
msgid "Discord"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:69
msgid "Malta"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:243
msgid "Coin rolls have no fees."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:263
msgid "Coin rolls can be obtained with no fees."
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:97
msgid "Mai Järmut, Villu Järmut"
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:148
msgid "Total"
msgstr ""
#: src/templates/coins-designs-nl.html.tmpl:29
msgid ""
"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 shared by the coins of many "
"monarchies around the world."
msgstr ""
#: src/templates/-navbar.html.tmpl:7
msgid "Coins"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:191
#: src/templates/banknotes-codes.html.tmpl:295
msgid "Bank of Greece"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:73
msgid "Erste Bank"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:141
msgid "Bank of Cyprus"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:34
msgid ""
"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."
msgstr ""
#. TRANSLATORS: This name. If you’re translating for a latin-script language, translate this to ‘{Null}’, otherwise transliterate this into your respective alphabet.
#: src/templates/coins-designs-ee.html.tmpl:128
msgid "{Break:r}Nova"
msgstr ""
#: src/templates/coins.html.tmpl:29
msgid "View the mintage figures of all the Euro coins"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:19
msgid "2002 Series Printer Codes"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:398
msgid ""
"\n"
"\t\t\t\tIn general coin rolls are sold with a fee of %s per roll, but\n"
"\t\t\t\twe’re lacking a lot of information."
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:58
#: src/templates/coins-designs-ee.html.tmpl:108
msgid "Tiit Jürna"
msgstr ""
#. TRANSLATORS: This name. If you’re translating for a latin-script language, translate this to ‘{Null}’, otherwise transliterate this into your respective alphabet.
#: src/templates/coins-designs-ee.html.tmpl:77
msgid "{Break:r}Tomson 5791"
msgstr ""
#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
#: src/templates/coins-designs-ee.html.tmpl:106
msgid "{Break:r}Bird Road"
msgstr ""
#: src/templates/coins-designs-nl.html.tmpl:33
msgid ""
"Coins featuring both monarchs contain text reading ‘{DutchStart:r}BEATRIX "
"KONINGIN DER NEDERLANDEN{DutchEnd:E}’ (English: ‘BEATRIX QUEEN OF THE "
"NETHERLANDS’) and ‘{DutchStart:r}Willem-Alexander Koning der "
"Nederlanden{DutchEnd:E}’ (English: ‘Willem-Alexander King of the "
"Netherlands’) respectively. The €2 coins also feature an edge-inscription "
"reading ‘{DutchStart:r}GOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆{DutchEnd:E}’ (English: "
"‘GOD ⋆ IS ⋆ WITH ⋆ US ⋆’)."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:176
msgid ""
"\n"
"\t\t\t\tHand-rolled coin rolls can be obtained with no additional fees.\n"
"\t\t\t"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:283
#: src/templates/collecting-crh.html.tmpl:300
msgid ""
"\n"
"\t\t\t\tCoin rolls can be obtained with no fee. You must be a\n"
"\t\t\t\tcustomer.\n"
"\t\t\t"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:445
msgid "%s per roll."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:484
msgid "In general there is a %s fee for coin rolls."
msgstr ""
#: src/templates/collecting.html.tmpl:19
msgid "Learn about collecting coins from coin rolls"
msgstr ""
#: src/templates/coins-designs-at.html.tmpl:21
msgid "Austrian €0.10 coin"
msgstr ""
#: src/templates/coins-designs-be.html.tmpl:26
msgid ""
"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."
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:14
msgid ""
"The Estonian euro coins feature the same design across all eight "
"denominations. The country’s outline is prominently displayed above the "
"country’s name in Estonian (‘{EstonianStart:r}EESTI{EstonianEnd:E}’)."
msgstr ""
#: src/templates/-base.html.tmpl:11
msgid "Euro Cash Wiki"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:8
msgid ""
"Euro banknotes have two codes on them: a printer code and a serial number. "
"The printer code tells you where a given note was printed, while the serial "
"number tells you which country issued the banknote (for the 2002 series) or "
"where the banknote was printed (for the Europa series)."
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:33
msgid "Europa Series Printer Codes"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:111
msgid "Belgian Central Bank"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:27
msgid ""
"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."
msgstr ""
#: src/templates/coins-designs-hr.html.tmpl:4
msgid "Croatian Euro Coin Designs"
msgstr ""
#: src/templates/-navbar.html.tmpl:4
msgid "Home"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:46
msgid "2002 Series"
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:43
msgid "Hamburg"
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:34
msgid "Position"
msgstr ""
#: src/templates/language.html.tmpl:26 src/templates/language.html.tmpl:69
msgid "Select Your Language"
msgstr ""
#: src/templates/banknotes.html.tmpl:19
msgid "View the different Euro-note designs"
msgstr ""
#: src/templates/coins-mintages.html.tmpl:93
msgid "Commemorative Coins"
msgstr ""
#: src/templates/coins-mintages.html.tmpl:98
msgid "Mintage"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:60
msgid "Bank Austria"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:40
msgid ""
"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:"
msgstr ""
#: src/templates/coins-designs-at.html.tmpl:33
msgid ""
"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."
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:22
msgid "Mintmark"
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:39
msgid "Karlsruhe"
msgstr ""
#. TRANSLATORS: As in ‘Development of the site’
#: src/templates/about.html.tmpl:22
msgid "Development"
msgstr ""
#: src/templates/about.html.tmpl:38
msgid "British- & American English"
msgstr ""
#: src/templates/coins-mintages.html.tmpl:76
#: src/templates/coins-mintages.html.tmpl:114
msgid "Unknown"
msgstr ""
#: src/templates/coins.html.tmpl:19
msgid "View the 600+ different Euro-coin designs"
msgstr ""
#: src/templates/coins-mintages.html.tmpl:15
msgid ""
"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, {Link:l}click here{-:E}."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:392
msgid ""
"\n"
"\t\t\t\tYou should be able to get coin rolls with no additional fees.\n"
"\t\t\t"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:416
msgid ""
"\n"
"\t\t\t\tBanks in the Netherlands do not carry cash, and as such it’s\n"
"\t\t\t\tnot possible to obtain rolls from bank tellers. Obtaining\n"
"\t\t\t\tcoins from the Dutch Central Bank (De Nederlandsche Bank) is\n"
"\t\t\t\talso not possible. If you want to obtain coin rolls you need\n"
"\t\t\t\tto use a Geldmaat coin roll machine which can be found in\n"
"\t\t\t\tspecific branches of GAMMA and Karwei. Geldmaat offers a map\n"
"\t\t\t\ton their website where you can search for branches with these\n"
"\t\t\t\tmachines; you can find that map %shere%s."
msgstr ""
#: src/templates/collecting.html.tmpl:26
msgid "Coin Storage"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:16
msgid ""
"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:"
msgstr ""
#: src/templates/coins-designs-be.html.tmpl:29
msgid ""
"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."
msgstr ""
#: src/templates/banknotes.html.tmpl:29
msgid "Find out where your notes were printed"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:208
msgid ""
"\n"
"\t\t\t\tYou can purchase commemorative coins (even those released years\n"
"\t\t\t\tago) at face value. It is also an interesting museum to visit\n"
"\t\t\t\tin general.\n"
"\t\t\t"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:93
#: src/templates/banknotes-codes.html.tmpl:160
#: src/templates/banknotes-codes.html.tmpl:254
msgid "Netherlands"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:135
msgid ""
"\n"
"\t\t\t\tFree for customers when you order through their online\n"
"\t\t\t\tplatform.\n"
"\t\t\t"
msgstr ""
#: src/templates/-navbar.html.tmpl:58
msgid "Language"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:4
#: src/templates/collecting.html.tmpl:16
msgid "Coin Roll Hunting"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:47
msgid ""
"The bottom of the coat of arms has the motto ‘{LatinStart:r}VIRTVS VNITA "
"FORTIOR{LatinEnd:E}’ (English: ‘UNITED VIRTUE IS STRONGER’)."
msgstr ""
#: src/templates/coins-designs-at.html.tmpl:23
msgid "Austrian €0.50 coin"
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:79
msgid "Taavi Torim"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:109
#: src/templates/banknotes-codes.html.tmpl:185
#: src/templates/banknotes-codes.html.tmpl:279
msgid "Spain"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:127
msgid ""
"The first letter of the printer code can be used to identify the specific "
"printer at which the banknote was printed. The printer- and country codes do "
"not need to line up; a banknote issued by a country will often be printed in "
"another."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:256
msgid ""
"\n"
"\t\t\t\tFinland has no coin roll machines, but you can find vending\n"
"\t\t\t\tmachines or coin exchange machines (albeit they are rare).\n"
"\t\t\t"
msgstr ""
#: src/templates/coins-designs-at.html.tmpl:13
msgid "Austrian €0.01 coin"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:478
msgid ""
"\n"
"\t\t\t\tCoin bags are sold with no additional fees to everyone.\n"
"\t\t\t"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:37
msgid ""
"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."
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:50
msgid ""
"The bronze coins display an oak twig which is similar to the one found on "
"the former Pfennig coins from the German Mark. The mint mark and year are "
"located on the left- and right-hand sides of the stem."
msgstr ""
#: src/templates/banknotes.html.tmpl:39
msgid "Learn about the special test notes"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:48
msgid ""
"In the 2002 series, the first letter of the serial number can be used to "
"identify the country that issued the banknote. The following table shows "
"which countries map to which codes."
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:101
#: src/templates/banknotes-codes.html.tmpl:175
#: src/templates/banknotes-codes.html.tmpl:269
msgid "Ireland"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:265
msgid "Bank of Finland"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:8
msgid "Andorran €0.01 coin"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:13
msgid "Andorran €2 coin"
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:35
msgid "Translation"
msgstr ""
#: src/templates/-404.html.tmpl:8
msgid ""
"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 {Email:e}."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:382
msgid ""
"\n"
"\t\t\t\tWe currently have no information regarding regular coins,\n"
"\t\t\t\thowever their webshop sells commemorative coins (for a high\n"
"\t\t\t\tpremium, but better than most resellers). Commemorative coins\n"
"\t\t\t\tare also available for purchase in-person.\n"
"\t\t\t"
msgstr ""
#: src/templates/coins-designs-hr.html.tmpl:10
msgid "Croatian €0.50 coin"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:314
msgid "Bank of Greece (Τράπεζα της Ελλάδος)"
msgstr ""
#: src/templates/-navbar.html.tmpl:6
msgid "Coin Collecting"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:316
msgid "Printer code on a {N} euro bill"
msgid_plural "Printer code on a {N} euro bill"
msgstr[0] ""
msgstr[1] ""
#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
#: src/templates/coins-designs-ee.html.tmpl:88
msgid "{Break:r}Estonian"
msgstr ""
#: src/templates/coins.html.tmpl:36
msgid "Varieties"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:97
#: src/templates/banknotes-codes.html.tmpl:170
#: src/templates/banknotes-codes.html.tmpl:264
msgid "Italy"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:76
msgid ""
"There is a fee of {€0,10:m} per roll. You must be a customer to use machines "
"to get rolls. Rolls have no fees when purchased at counters, but you will "
"probably be redirected to the machines if they work. You must present an "
"Erste Bank card to buy rolls from machines, however payment in cash is still "
"accepted."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:192
msgid ""
"\n"
"\t\t\t\tCoin rolls can be obtained for a fee of %s per roll."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:405
msgid "Bank of Valletta and HSBC Bank Malta"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:9
msgid "Andorran €0.50 coin"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:434
msgid ""
"\n"
"\t\t\t\tIn order to be able to use a Geldmaat coin machine, you must be\n"
"\t\t\t\ta customer of either ABN AMRO, ING, or Rabobank. You also\n"
"\t\t\t\tcannot pay by cash, only card payments are allowed. All three\n"
"\t\t\t\tbanks charge a withdrawal fee for getting coin rolls, which are\n"
"\t\t\t\tdetailed in the list below.\n"
"\t\t\t"
msgstr ""
#: src/templates/coins-designs-be.html.tmpl:17
msgid "Belgian €1 coin (King Philippe)"
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:68
msgid "Jaan Meristo"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:16
msgid ""
"The printer code can be a bit tricky to find. The following dropdown menus "
"will show you where to find the printer code on each note."
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:171
#: src/templates/banknotes-codes.html.tmpl:265
#: src/templates/collecting-crh.html.tmpl:350
msgid "Bank of Italy"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:235
msgid "Bulgaria"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:13
msgid ""
"This type of coin collecting is often called ‘coin roll hunting’ "
"(abbreviated to ‘CRH’) due to the fact that banks will often provide you "
"with coins in the form of paper-wrapped rolls. You may however find that "
"your coins come in plastic bags instead (common in countries like Ireland)."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:360
msgid "Fee of %s per roll of 2 euro coins."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:513
msgid ""
"\n"
"\t\t\t\tAsk the Pope nicely and he’ll probably give you some Vatican\n"
"\t\t\t\tcoins for free.\n"
"\t\t\t"
msgstr ""
#: src/templates/banknotes.html.tmpl:16 src/templates/coins.html.tmpl:16
msgid "Designs"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:81
msgid ""
"Depositing coins is free up to {€100:m} a day, at which point you pay 1% for "
"any additionally deposited coins. You must also be a customer. Depositing "
"coins is free for all Erste Bank customers at Dornbirner Sparkasse with no "
"limit."
msgstr ""
#: src/templates/coins-designs-be.html.tmpl:13
msgid "Belgian €1 coin (King Albert; Series 2)"
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:35
msgid "Stuttgart"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:135
#: src/templates/banknotes-codes.html.tmpl:225
msgid "Printer"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:285
msgid "Leipzig"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:290
#: src/templates/coins-designs-de.html.tmpl:31
msgid "Munich"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:246
msgid "La Caixa"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:449
#: src/templates/collecting-crh.html.tmpl:456
msgid "Base fee of %s + %s per roll."
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:12
msgid "Andorran €1 coin"
msgstr ""
#: src/templates/coins-designs-at.html.tmpl:18
msgid ""
"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."
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:18
msgid ""
"The design of the Estonian euro coins was chosen as part of a {EVLink:L}"
"Eurovision{-:E}-style public televote where it competed and won against 9 "
"other designs."
msgstr ""
#: src/templates/coins-designs.html.tmpl:8
msgid ""
"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 {Link:l}varieties{-:E} page."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:39
msgid ""
"Be aware of the fact that the information below may be outdated or "
"inaccurate. Many of the details are self-reported."
msgstr ""
#. TRANSLATORS: On the German page the filter is called ‘Münzrollengeber’. For other languages we link to the English site, so mention the English filter name surrounded by ‘{EnglishStart:r}’ and ‘{EnglishEnd:E}’, and also translate it in parenthesis to your language. For example the Swedish page might say: ‘”{EnglishStart:r}coin roll dispenser{EnglishEnd:E}” (svenska: ”myntrullsautomat”)’
#: src/templates/collecting-crh.html.tmpl:67
msgid ""
"There is a fee of {€0,20:m} per roll which can be purchased with cash at "
"machines. These machines are available to everyone but not in all branches. "
"Look for the ‘coin roll dispenser’ filter option {Link:L}here{-:E}."
msgstr ""
#: src/templates/coins-designs-at.html.tmpl:15
msgid "Austrian €0.05 coin"
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:66
msgid "{Break:r}In the Body"
msgstr ""
#: src/templates/about.html.tmpl:18
msgid "Special Thanks"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:61
msgid "Estonia"
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:12
msgid "German €1 coin"
msgstr ""
#: src/templates/coins-designs-hr.html.tmpl:34
msgid ""
"The 2 euro coin was designed by Ivan Šivak and features the map of Croatia. "
"The coin also has an edge-inscription that reads ‘{CroatianStart:r}O LIJEPA "
"O DRAGA O SLATKA SLOBODO{CroatianEnd:E}’ (English: ‘OH BEAUTIFUL, OH DEAR, "
"OH SWEET FREEDOM’) which is a line from the play {Link:L}Dubravka{-:E} by "
"Ivan Gundulić."
msgstr ""
#: src/templates/about.html.tmpl:4
msgid "About Us"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:9
msgid ""
"Coin roll hunting is a popular method of coin collecting in which you "
"withdraw cash from your bank in the form of coins and then search through "
"those coins 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 withdraw new coins."
msgstr ""
#: src/templates/collecting.html.tmpl:37
msgid "Shop Hunting"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:21
msgid "€0.10, €0.20 and €0.50"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:495
msgid "National Bank of Slovakia (Národná banka Slovenska)"
msgstr ""
#: src/templates/-navbar.html.tmpl:9
msgid "Jargon"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:176
#: src/templates/banknotes-codes.html.tmpl:270
msgid "Central Bank of Ireland"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:181
#: src/templates/banknotes-codes.html.tmpl:275
msgid "Bank of France"
msgstr ""
#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
#: src/templates/coins-designs-ee.html.tmpl:117
msgid "{Break:r}Leopards-2"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:20
msgid "Andorran landscapes, nature, fauna and flora"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:21
msgid "All these images are taken from {Link:L}eurobilltracker.com{-:E}."
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:165
msgid "United Kingdom"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:316
msgid ""
"\n"
"\t\t\t\tFee-less coin rolls for everyone (you will need to show ID).\n"
"\t\t\t\tThe latest commemorative coins are also sold for face value.\n"
"\t\t\t"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:77
msgid "Slovenia"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:289
msgid "and"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:308
msgid ""
"\n"
"\t\t\t\tThere are coin roll machines but it is not yet known if you\n"
"\t\t\t\tneed to be a customer or if there are fees.\n"
"\t\t\t"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:407
msgid ""
"\n"
"\t\t\t\tYou can get rolls for a fee of %s per roll. You must order\n"
"\t\t\t\tcoin rolls through their online platform, and you must be a\n"
"\t\t\t\tcustomer."
msgstr ""
#: src/templates/coins-designs-at.html.tmpl:8
msgid ""
"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 {Link:l}Greek euro coins{-:E} are the only coins "
"that feature the denomination on both the common- and national-sides of the "
"coin."
msgstr ""
#: src/templates/coins-designs-hr.html.tmpl:9
msgid "Croatian €0.01 coin"
msgstr ""
#: src/templates/banknotes.html.tmpl:4
msgid "Euro Banknotes"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:55
#: src/templates/banknotes-codes.html.tmpl:134
#: src/templates/banknotes-codes.html.tmpl:224
#: src/templates/coins-mintages.html.tmpl:24
msgid "Country"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:121
#: src/templates/banknotes-codes.html.tmpl:205
#: src/templates/banknotes-codes.html.tmpl:299
msgid "Belgium"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:116
msgid ""
"\n"
"\t\t\t\tYou can visit the Belgian Central Bank in Brussels as an EU\n"
"\t\t\t\tcitizen. You can order coin rolls for no fee up to %s in\n"
"\t\t\t\tvalue. They seem to distribute uncirculated coins (no\n"
"\t\t\t\tcommemoratives)."
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:119
msgid "Jaarno Ester"
msgstr ""
#: src/templates/about.html.tmpl:15
msgid ""
"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. Should that be "
"the 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 inclined, but if not you can always send an "
"email to {Email:e} or contact ‘@onetruemangoman’ on Discord."
msgstr ""
#: src/templates/-error.html.tmpl:8
msgid ""
"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."
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:11
msgid "Printer Code"
msgstr ""
#: src/templates/language.html.tmpl:28 src/templates/language.html.tmpl:80
msgid "Other Languages"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:4
#: src/templates/banknotes.html.tmpl:26
msgid "Location Codes"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:13
msgid ""
"The printer code (not to be confused with the serial number) is a small code "
"printed on banknotes with information about where the banknote was printed. "
"All printer codes have the form ‘X000X0’ — or in other words — a letter "
"followed by 3 numbers, a letter and a final number."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:30
msgid ""
"In some countries such as Austria it is even common to be able to withdraw "
"new coins from your account using other coins."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:324
msgid ""
"\n"
"\t\t\t\tFee-less coin bags for everyone (no ID necessary). Smaller\n"
"\t\t\t\tdenominations are often not given out, and the coin bags you\n"
"\t\t\t\trecieve are very large (there are reports of %s bags containing\n"
"\t\t\t\t250 coins)."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:352
msgid "Coin rolls are available to everyone."
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:22
msgid "Andorra’s Romanesque art"
msgstr ""
#: src/templates/-navbar.html.tmpl:5
msgid "News"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:73
msgid "Cyprus"
msgstr ""
#. TRANSLATORS: Name of a Belgian bank
#: src/templates/collecting-crh.html.tmpl:103
msgid "Argenta"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:236
msgid ""
"\n"
"\t\t\t\t\tCoin rolls have a fee of %s for 5 rolls. This seems to\n"
"\t\t\t\t\tvary by region."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:356
msgid "Works, but with very high fees (5%% of cost)."
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:19
msgid "€0.01, €0.02 and €0.05"
msgstr ""
#: src/templates/coins-designs-at.html.tmpl:26
msgid ""
"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."
msgstr ""
#: src/templates/coins-designs-be.html.tmpl:4
msgid "Belgian Euro Coin Designs"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:113
#: src/templates/banknotes-codes.html.tmpl:195
#: src/templates/banknotes-codes.html.tmpl:200
#: src/templates/banknotes-codes.html.tmpl:259
#: src/templates/banknotes-codes.html.tmpl:284
#: src/templates/banknotes-codes.html.tmpl:289
msgid "Germany"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:33
msgid "Country-Specific Details"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:127
msgid ""
"\n"
"\t\t\t\tFree for customers but getting coin rolls is still difficult\n"
"\t\t\t\tsometimes. Non-customers cannot get rolls.\n"
"\t\t\t"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:156
msgid ""
"\n"
"\t\t\t\tCoin roll availability may vary across banks and branches, as\n"
"\t\t\t\twell as the price. You must be a customer to purchase coin\n"
"\t\t\t\trolls unless specified otherwise.\n"
"\t\t\t"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:183
msgid ""
"\n"
"\t\t\t\tCoin rolls can be obtained for a fee of %s–%s per roll. The\n"
"\t\t\t\tamount varies per branch."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:365
msgid ""
"\n"
"\t\t\t\tAs far as we are aware, Lietuvos Bankas only distributes coin\n"
"\t\t\t\trolls to businesses.\n"
"\t\t\t"
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:4
msgid "German Euro Coin Designs"
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:38
msgid "Votes (%)"
msgstr ""
#: src/templates/coins.html.tmpl:8
msgid ""
"On this section of the site you can find everything there is to know about "
"the coins of the Eurozone."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:26
msgid ""
"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."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:216
msgid "Coin rolls are free but you must be a customer."
msgstr ""
#: src/templates/coins-designs-be.html.tmpl:22
msgid ""
"Since 1999 Belgium has released three series of euro coins, with 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 {Link:L}"
"royal monogram{-:E} in the outer ring of the coins."
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:36
msgid "Author(s)"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:85
#: src/templates/banknotes-codes.html.tmpl:210
#: src/templates/banknotes-codes.html.tmpl:240
msgid "Portugal"
msgstr ""
#: src/templates/coins-designs-at.html.tmpl:30
msgid "Austrian €2 coin"
msgstr ""
#: src/templates/-404.html.tmpl:4
msgid "Page Not Found"
msgstr ""
#: src/templates/collecting.html.tmpl:40
msgid "Learn about how to collect coins from shops"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:43
msgid "The arms of the Count of Foix"
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:37
msgid "Votes"
msgstr ""
#: src/templates/language.html.tmpl:27 src/templates/language.html.tmpl:75
msgid "Eurozone Languages"
msgstr ""
#: src/templates/-navbar.html.tmpl:17
msgid "About"
msgstr ""
#: src/templates/collecting.html.tmpl:4
msgid "Euro Coin Collecting"
msgstr ""
#: src/templates/index.html.tmpl:17
msgid ""
"Welcome to the Euro Cash Wiki! 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."
msgstr ""
#: src/templates/-base.html.tmpl:43
msgid "Found a mistake or want to contribute missing information?"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:248
msgid ""
"\n"
"\t\t\t\tCoin rolls have no fees and can be purchased with cash. You do\n"
"\t\t\t\tnot need to be a customer, although this needs to be\n"
"\t\t\t\tre-verified.\n"
"\t\t\t"
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:4
msgid "Estonian Euro Coin Designs"
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:9
msgid "Estonian €1 coin"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:163
msgid "German Federal Bank (Deutsche Bundesbank)"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:30
msgid ""
"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."
msgstr ""
#: src/templates/coins-designs-hr.html.tmpl:17
msgid ""
"The Croatian euro coins feature four different themes, with each design "
"featuring the Croatian checkerboard and the country’s name in Croatian "
"(‘{CroatianStart:r}HRVATSKA{CroatianEnd:E}’). All designs were selected "
"after voting in a public design competition."
msgstr ""
#: src/templates/about.html.tmpl:39
msgid "Icelandic"
msgstr ""
#: src/templates/coins-mintages.html.tmpl:51
msgid "Standard Issue Coins"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:20
msgid "Getting Started"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:199
msgid ""
"\n"
"\t\t\t\tObtaining coin rolls in Estonia is typically quite difficult,\n"
"\t\t\t\tand often expensive. You also often need to make an\n"
"\t\t\t\tappointment in advance.\n"
"\t\t\t"
msgstr ""
#: src/templates/coins-designs-at.html.tmpl:29
msgid "Austrian €1 coin"
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:11
msgid "German €0.10 coin"
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:56
msgid ""
"The bimetallic coins feature an interpretation of the German Federal Eagle "
"(German: ‘{GermanStart:r}Bundesadler{GermanEnd:E}’). The eagle is a common "
"motif in German heraldry — including in the German coat of arms — and "
"represents strength and freedom. The mint mark is located to the right of "
"the year."
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:130
msgid "Rene Haljasmäe"
msgstr ""
#: src/templates/about.html.tmpl:13
msgid "Contact Us"
msgstr ""
#: src/templates/about.html.tmpl:24
msgid "Translations"
msgstr ""
#: src/templates/banknotes.html.tmpl:8
msgid ""
"On this section of the site you can find everything there is to know about "
"the banknotes of the Eurozone."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:206
msgid "Central Bank of Estonia Museum"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:334
msgid ""
"\n"
"\t\t\t\tIn general, coin rolls are available at banks with a fee of %s\n"
"\t\t\t\tper roll; rolls could potentially have no fee if you only need\n"
"\t\t\t\ta few."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:471
msgid ""
"\n"
"\t\t\t\tCoin bags are sold with no additional fees to bank customers.\n"
"\t\t\t"
msgstr ""
#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
#: src/templates/coins-designs-ee.html.tmpl:139
msgid "{Break:r}A Flower in the Rye"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:54
#: src/templates/banknotes-codes.html.tmpl:133
#: src/templates/banknotes-codes.html.tmpl:223
msgid "Code"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:117
#: src/templates/banknotes-codes.html.tmpl:190
#: src/templates/banknotes-codes.html.tmpl:294
msgid "Greece"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:106
msgid ""
"There is a {€1,50} fee per transaction with no limit on the number of rolls "
"you may take."
msgstr ""
#: src/templates/collecting-crh.html.tmpl:344
msgid ""
"\n"
"\t\t\t\tThere are coin roll machines but it is unknown if you need to\n"
"\t\t\t\tbe a customer or if there are additional fees.\n"
"\t\t\t"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:476
msgid "Bank of Portugal (Banco de Portugal)"
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:25
msgid ""
"The winner of the contest was awarded 50,000 KR (€3,196) while the other "
"finalists were each awarded 20,000 KR (€1,278)."
msgstr ""
#: src/templates/coins.html.tmpl:26
msgid "Mintages"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:206
#: src/templates/banknotes-codes.html.tmpl:300
msgid "National Bank of Belgium"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:17
msgid ""
"Depending on your bank and branch, the process of obtaining coins may "
"differ. Some banks require you speak to a teller while others have coin "
"machines. Some banks may also require that you are a customer or even that "
"you 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 additional information about the withdrawal of coins in various "
"countries and major banks."
msgstr ""
#: src/templates/collecting.html.tmpl:52
msgid "Learn about collecting coins from vending machines"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:65
msgid "Slovakia"
msgstr ""
#: src/templates/coins-mintages.html.tmpl:4
msgid "Euro Coin Mintages"
msgstr ""
#: src/templates/coins-mintages.html.tmpl:48
msgid "Filter"
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:43
msgid ""
"The first letter in the printer code identifies the specific printer at "
"which the banknote was printed. The tables below will tell you which letters "
"correspond to which printers. The final letter and number form a pair (such "
"as ‘A2’ or ‘D6’) — this pair acts as a set of coordinates telling you where "
"on the sheet of paper the banknote was located. During printing, banknotes "
"are printed in a grid on a large sheet of paper which is then cut into "
"individual banknotes. A note with the pair ‘A1’ will have been at the upper-"
"left corner of the printing sheet, with ‘A2’ to its right and ‘B1’ below it."
msgstr ""
#: src/templates/coins-mintages.html.tmpl:54
#: src/templates/coins-mintages.html.tmpl:96
msgid "Year"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:497
msgid ""
"\n"
"\t\t\t\tYou may be able to get uncirculated rolls, but this is not yet\n"
"\t\t\t\tconfirmed.\n"
"\t\t\t"
msgstr ""
#. TRANSLATORS: This is a place name. If you’re translating for a latin-script language, translate this to ‘{Null}’, otherwise transliterate this into your respective alphabet.
#: src/templates/coins-designs-ee.html.tmpl:46
msgid "{Break:r}Hara 2"
msgstr ""
#: src/templates/coins-designs-hr.html.tmpl:13
msgid "Croatian €1 coin"
msgstr ""
#: src/templates/coins-designs-nl.html.tmpl:37
msgid ""
"The €1 and €2 coins featuring King Willem-Alexander were minted with a much "
"lower {Link:l}relief{-:E} 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."
msgstr ""
#: src/templates/about.html.tmpl:7
msgid "Open Source"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:56
msgid ""
"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."
msgstr ""
#: src/templates/collecting.html.tmpl:8
msgid ""
"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!"
msgstr ""
#: src/templates/coins-designs-hr.html.tmpl:25
msgid ""
"The 10-, 20- and 50 euro cent coins were designed by Ivan Domagoj Račić and "
"feature the portrait of the inventor and engineer {Link:L}Nikola Tesla{-:E}. "
"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’."
msgstr ""
#: src/templates/about.html.tmpl:9
msgid ""
"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 {LinkGit:L}here{-:E}. This site "
"is licensed under the {LinkBSD:L}BSD Zero Clause License{-:E} giving you the "
"full freedom to do whatever you would like with any of the content on this "
"site."
msgstr ""
#: src/templates/banknotes-codes.html.tmpl:186
#: src/templates/banknotes-codes.html.tmpl:280
msgid "Royal Mint of Spain"
msgstr ""
#: src/templates/collecting-crh.html.tmpl:143
msgid ""
"\n"
"\t\t\t\tAt the Bank of Cyprus it is possible to buy bags of coins\n"
"\t\t\t\twithout being a customer, and without paying any additional\n"
"\t\t\t\tfees. Depending on the branch you visit you may have coin roll\n"
"\t\t\t\tmachine available. Do note that the bags provided by the Bank\n"
"\t\t\t\tof Cyprus are around twice as large as usual with %s bags\n"
"\t\t\t\tcontaining 50 coins and the other denomination bags containing\n"
"\t\t\t\t100 coins."
msgstr ""
#: src/templates/coins-designs-ee.html.tmpl:47
msgid "Lembit Lõhmus"
msgstr ""
#: src/templates/coins.html.tmpl:4
msgid "Euro Coins"
msgstr ""
#. TRANSLATORS: As in ‘5 Euro Banknote’
#: src/templates/banknotes-codes.html.tmpl:312
msgid "{N} Euro"
msgid_plural "{N} Euro"
msgstr[0] ""
msgstr[1] ""
#: src/templates/coins-mintages.html.tmpl:8
msgid ""
"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."
msgstr ""
#: src/templates/collecting.html.tmpl:49
msgid "Vending Machine Hunting"
msgstr ""
#: src/templates/coins-designs-be.html.tmpl:9
msgid "Belgian €1 coin (King Albert; Series 1)"
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:53
msgid ""
"The gold coins feature the Brandenburg Gate, a symbol of Berlin and Germany "
"as a whole, but also a symbol of German division and unity. The mint mark is "
"located below the year."
msgstr ""
#: src/templates/coins-mintages.html.tmpl:97
msgid "Commemorated Issue"
msgstr ""
#: src/templates/coins-designs-ad.html.tmpl:45
msgid "The arms of the Viscounts of Béarn"
msgstr ""
#: src/templates/coins-designs-at.html.tmpl:22
msgid "Austrian €0.20 coin"
msgstr ""
#: src/templates/coins-designs-de.html.tmpl:21
msgid "City"
msgstr ""
#: src/templates/coins-designs-hr.html.tmpl:14
msgid "Croatian €2 coin"
msgstr ""
|