aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.gitignore4
-rw-r--r--GNUmakefile20
-rw-r--r--cmd/exttmpl/main.go21
-rwxr-xr-xenabled-languages9
-rwxr-xr-xgetfmt6
-rw-r--r--po/en/messages.po1569
-rw-r--r--po/messages.pot1104
-rw-r--r--po/sv/messages.po1094
-rw-r--r--po/templates.pot540
-rw-r--r--src/i18n/i18n.go49
-rw-r--r--src/templates/coins-designs-ee.html.tmpl155
-rw-r--r--static/style.css4
12 files changed, 3494 insertions, 1081 deletions
diff --git a/.gitignore b/.gitignore
index eb99649..aa17c9c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,11 +2,15 @@
euro-cash.eu
exttmpl
!cmd/*
+*.mo
# Autogenerated files
out.gotext.json
*.db
*.gen.*
+*~
+po/backend.pot
+po/templates.pot
# Build artifacts
*.min.css
diff --git a/GNUmakefile b/GNUmakefile
index e4fb99d..23f261b 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -8,18 +8,30 @@ templates := $(shell find src/templates -name '*.tmpl')
exttmpl := $(wildcard cmd/exttmpl/*.go)
+ENABLED_LANGUAGES := $(shell ./enabled-languages)
+
all: euro-cash.eu exttmpl
euro-cash.eu: $(cssfiles) $(templates) $(gofiles) $(sqlfiles)
$(GO) build
po: exttmpl
- find . -name '*.html.tmpl' -exec ./exttmpl -out po/templates.pot {} +
- for bcp in en; \
+ find . -name '*.go' -exec xgettext -Lgo --force-po --from-code=UTF-8 \
+ -o po/backend.pot {} +
+ find . -name '*.html.tmpl' -exec ./exttmpl {} + \
+ | msgcat po/backend.pot - -o po/messages.pot
+ for bcp in $(ENABLED_LANGUAGES); \
do \
- mkdir -p "po/$$bcp"; \
- msgmerge --update "po/$$bcp/messages.po" po/templates.pot; \
+ dir="po/$$bcp"; \
+ if [ ! -d "$$dir" ]; \
+ then \
+ mkdir -p "$$dir"; \
+ msginit -i po/messages.pot -o "$$dir/messages.po" -l$$bcp.UTF-8 \
+--no-translator; \
+ fi; \
+ msgmerge --update "po/$$bcp/messages.po" po/messages.pot; \
done
+ find po -name '*~' -delete
exttmpl: $(exttmpl)
$(GO) build ./cmd/exttmpl
diff --git a/cmd/exttmpl/main.go b/cmd/exttmpl/main.go
index c120ad2..4d11488 100644
--- a/cmd/exttmpl/main.go
+++ b/cmd/exttmpl/main.go
@@ -86,6 +86,27 @@ func main() {
process(f)
}
+ /* TODO: Use the correct date */
+ fmt.Fprint(outfile, `# 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 ""
+"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"
+`)
+
for tl, ti := range translations {
if ti.comment != "" {
fmt.Fprintln(outfile, "#.", ti.comment)
diff --git a/enabled-languages b/enabled-languages
new file mode 100755
index 0000000..646912b
--- /dev/null
+++ b/enabled-languages
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+grab '
+ x/^\s*locales\s*=.*?LocaleInfo(?<c>\{(\g<c>|[^}{]+)*\})/
+ x/(^|\n)\s*{.*?\n\s*\}/
+ g/Enabled:\s*true,/
+ x/(?<=Bcp:)[^\n]+/
+ x/\w+/
+' <src/i18n/i18n.go \ No newline at end of file
diff --git a/getfmt b/getfmt
index dafd3c0..fba9ac5 100755
--- a/getfmt
+++ b/getfmt
@@ -4,7 +4,7 @@
usage()
{
- echo "Usage: getfmt currency|date|number locale..." >&2
+ echo "Usage: getfmt currency|date|number|percent locale..." >&2
exit 1
}
@@ -26,6 +26,10 @@ number)
url='https://raw.githubusercontent.com/unicode-org/cldr-json/refs/heads/main/cldr-json/cldr-numbers-full/main/$l/numbers.json'
qry='"1\(.main.[$l].numbers.["symbols-numberSystem-latn"].group)234\(.main.[$l].numbers.["symbols-numberSystem-latn"].decimal)00"'
;;
+percent)
+ url='https://raw.githubusercontent.com/unicode-org/cldr-json/refs/heads/main/cldr-json/cldr-numbers-full/main/$l/numbers.json'
+ qry='.main.[$l].numbers.["percentFormats-numberSystem-latn"].standard'
+ ;;
*)
usage
esac
diff --git a/po/en/messages.po b/po/en/messages.po
index d836cfc..38c9565 100644
--- a/po/en/messages.po
+++ b/po/en/messages.po
@@ -1,32 +1,93 @@
+# English translations for Mango package.
+# Copyright (C) 2025 THE Mango'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the Mango package.
+# Thomas Voss <mail@thomasvoss.com>, 2025.
+#
msgid ""
msgstr ""
-"Project-Id-Version: 1.0.0\n"
-"PO-Revision-Date: 2025-07-23 21:18+0200\n"
-"Last-Translator: Thomas Voss <mail@thomasvoss.com>\n"
-"Language-Team: English (British) <(nothing)>\n"
-"Language: en\n"
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2025-07-27 21:59+0200\n"
+"PO-Revision-Date: 2025-07-27 20:36+0200\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"
+"#-#-#-#-# backend.pot (PACKAGE VERSION) #-#-#-#-#\n"
+"#-#-#-#-# - (PACKAGE VERSION) #-#-#-#-#\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: src/templates/coins-designs-ad.html.tmpl:28
-msgid "Andorra’s Romanesque art"
-msgstr "Andorra’s Romanesque art"
+#: src/templates/coins.html.tmpl:19
+msgid "View the 600+ different Euro-coin designs!"
+msgstr "View the 600+ different Euro-coin designs!"
-#: src/templates/banknotes-codes.html.tmpl:54
-#: src/templates/banknotes-codes.html.tmpl:133
-#: src/templates/banknotes-codes.html.tmpl:223
-msgid "Code"
-msgstr "Code"
+#: src/templates/-navbar.html.tmpl:6
+msgid "Coin Collecting"
+msgstr "Coin Collecting"
-#: src/templates/coins.html.tmpl:26
-msgid "Mintages"
-msgstr "Mintages"
+#: src/templates/coins-designs-ee.html.tmpl:9
+msgid "Estonian €1 coin"
+msgstr "Estonian €1 coin"
-#: src/templates/-404.html.tmpl:4
-msgid "Page Not Found"
-msgstr "Page Not Found"
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:114
+msgid "{Break:r}Leopards-2"
+msgstr "{Break:r}Leopards-2"
+
+#: src/templates/about.html.tmpl:23
+msgid "Research"
+msgstr "Research"
+
+#: src/templates/-navbar.html.tmpl:4
+msgid "Home"
+msgstr "Home"
+
+#: src/templates/coins-designs-ad.html.tmpl:20
+msgid "Andorran landscapes, nature, fauna and flora"
+msgstr "Andorran landscapes, nature, fauna and flora"
+
+#: 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 ""
+"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."
+
+#: 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 ""
+"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."
+
+#: src/templates/coins.html.tmpl:4
+msgid "Euro Coins"
+msgstr "Euro Coins"
+
+#: src/templates/-navbar.html.tmpl:7
+msgid "Coins"
+msgstr "Coins"
+
+#: 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 "Country"
#: src/templates/banknotes-codes.html.tmpl:85
#: src/templates/banknotes-codes.html.tmpl:210
@@ -34,82 +95,121 @@ msgstr "Page Not Found"
msgid "Portugal"
msgstr "Portugal"
-#: 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 "Germany"
+#: src/templates/banknotes-codes.html.tmpl:117
+#: src/templates/banknotes-codes.html.tmpl:190
+#: src/templates/banknotes-codes.html.tmpl:294
+msgid "Greece"
+msgstr "Greece"
-#: src/templates/index.html.tmpl:10
-msgid "cash"
-msgstr "cash"
+#: src/templates/banknotes-codes.html.tmpl:165
+msgid "United Kingdom"
+msgstr "United Kingdom"
-#: src/templates/about.html.tmpl:9
+#: src/templates/coins-designs-ad.html.tmpl:30
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."
+"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 ""
-"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."
-
-#: src/templates/language.html.tmpl:18
-msgid "Other Languages"
-msgstr "Other Languages"
-
-#: src/templates/-navbar.html.tmpl:5
-msgid "News"
-msgstr "News"
+"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."
-#: src/templates/coins.html.tmpl:4
-msgid "Euro Coins"
-msgstr "Euro Coins"
+#: 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 ""
+"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%)."
-#: src/templates/banknotes.html.tmpl:39
-msgid "Learn about the special test notes!"
-msgstr "Learn about the special test notes!"
+#. TRANSLATORS: As in ‘Development of the site’
+#: src/templates/about.html.tmpl:22
+msgid "Development"
+msgstr "Development"
-#: src/templates/banknotes-codes.html.tmpl:186
-#: src/templates/banknotes-codes.html.tmpl:280
-msgid "Royal Mint of Spain"
-msgstr "Royal Mint of Spain"
+#: 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 ""
+"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}."
-#: src/templates/banknotes-codes.html.tmpl:285
-msgid "Leipzig"
-msgstr "Leipzig"
+#: 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 ""
+"If this issue persists, don’t hesitate to contact ‘@onetruemangoman’ on "
+"Discord or to email us at {Email:e}"
-#: src/templates/coins-designs-ad.html.tmpl:51
-msgid "The arms of the Viscounts of Béarn"
-msgstr "The arms of the Viscounts of Béarn"
+#: src/templates/coins-mintages.html.tmpl:54
+#: src/templates/coins-mintages.html.tmpl:96
+msgid "Year"
+msgstr "Year"
-#: src/templates/banknotes.html.tmpl:36
-msgid "Test Notes"
-msgstr "Test Notes"
+#: 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 ""
+"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:"
-#: src/templates/banknotes-codes.html.tmpl:101
-#: src/templates/banknotes-codes.html.tmpl:175
-#: src/templates/banknotes-codes.html.tmpl:269
-msgid "Ireland"
-msgstr "Ireland"
+#: 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 ""
+"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."
+
+#: src/templates/coins-designs-be.html.tmpl:9
+msgid "Belgian €1 coin (King Albert; Series 1)"
+msgstr "Belgian €1 coin (King Albert; Series 1)"
+
+#: 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 ""
+"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}’)."
-#: src/templates/banknotes-codes.html.tmpl:191
-#: src/templates/banknotes-codes.html.tmpl:295
-msgid "Bank of Greece"
-msgstr "Bank of Greece"
+#: src/templates/coins-designs-ad.html.tmpl:19
+msgid "€0.01, €0.02 and €0.05"
+msgstr "€0.01, €0.02 and €0.05"
-#: src/templates/banknotes-codes.html.tmpl:235
-msgid "Bulgaria"
-msgstr "Bulgaria"
+#: src/templates/about.html.tmpl:4
+msgid "About Us"
+msgstr "About Us"
#: src/templates/about.html.tmpl:15
msgid ""
@@ -129,247 +229,378 @@ msgstr ""
"if you are more technically inclined, but if not you can always send an "
"email to {Email:e} or contact ‘@onetruemangoman’ on Discord."
+#: src/templates/coins-designs.html.tmpl:4
+msgid "Euro Coin Designs"
+msgstr "Euro Coin Designs"
+
+#: src/templates/coins-designs-at.html.tmpl:15
+msgid "Austrian €0.05 coin"
+msgstr "Austrian €0.05 coin"
+
+#: src/templates/about.html.tmpl:13
+msgid "Contact Us"
+msgstr "Contact Us"
+
+#: src/templates/-navbar.html.tmpl:8
+msgid "Banknotes"
+msgstr "Banknotes"
+
+#: src/templates/-navbar.html.tmpl:58
+msgid "Language"
+msgstr "Language"
+
+#: src/templates/banknotes-codes.html.tmpl:97
+#: src/templates/banknotes-codes.html.tmpl:170
+#: src/templates/banknotes-codes.html.tmpl:264
+msgid "Italy"
+msgstr "Italy"
+
+#: src/templates/banknotes-codes.html.tmpl:191
+#: src/templates/banknotes-codes.html.tmpl:295
+msgid "Bank of Greece"
+msgstr "Bank of Greece"
+
+#: src/templates/coins-designs-ee.html.tmpl:76
+msgid "Taavi Torim"
+msgstr "Taavi Torim"
+
#: src/templates/language.html.tmpl:4
msgid "Select Your Language"
msgstr "Select Your Language"
-#: src/templates/-404.html.tmpl:8
+#: src/templates/banknotes.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)."
+"On this section of the site you can find everything there is to know about "
+"the banknotes of the Eurozone."
msgstr ""
-"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)."
+"On this section of the site you can find everything there is to know about "
+"the banknotes of the Eurozone."
-#: src/templates/coins.html.tmpl:36
-msgid "Varieties"
-msgstr "Varieties"
+#: 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 ""
+"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."
-#: src/templates/coins-designs-ad.html.tmpl:48
-msgid "The arms of the Bishop of Urgell"
-msgstr "The arms of the Bishop of Urgell"
+#. 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:43
+msgid "{Break:r}Hara 2"
+msgstr "{Null}"
-#: src/templates/banknotes-codes.html.tmpl:206
-#: src/templates/banknotes-codes.html.tmpl:300
-msgid "National Bank of Belgium"
-msgstr "National Bank of Belgium"
+#: src/templates/coins-mintages.html.tmpl:93
+msgid "Commemorative Coins"
+msgstr "Commemorative Coins"
-#: src/templates/banknotes-codes.html.tmpl:290
-msgid "Munich"
-msgstr "Munich"
+#: src/templates/banknotes.html.tmpl:29
+msgid "Find out where your notes were printed!"
+msgstr "Find out where your notes were printed!"
-#: src/templates/language.html.tmpl:8
-msgid "Select your preferred language to use on the site."
-msgstr "Select your preferred language to use on the site."
+#: src/templates/banknotes-codes.html.tmpl:11
+msgid "Printer Code"
+msgstr "Printer Code"
-#: src/templates/coins.html.tmpl:29
-msgid "View the mintage figures of all the Euro coins!"
-msgstr "View the mintage figures of all the Euro coins!"
+#: src/templates/-base.html.tmpl:37
+msgid "Feel free to contact us!"
+msgstr "Feel free to contact us!"
-#: src/templates/coins-designs.html.tmpl:8
+#: src/templates/banknotes-codes.html.tmpl:127
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."
+"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 ""
-"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."
+"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."
-#: src/templates/coins-designs-at.html.tmpl:8
+#: src/templates/banknotes-codes.html.tmpl:218
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."
+"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 ""
-"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."
+"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."
-#: src/templates/banknotes-codes.html.tmpl:69
-msgid "Malta"
-msgstr "Malta"
+#: src/templates/banknotes-codes.html.tmpl:235
+msgid "Bulgaria"
+msgstr "Bulgaria"
-#: 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 "France"
+#: src/templates/coins-designs-at.html.tmpl:4
+msgid "Austrian Euro Coin Designs"
+msgstr "Austrian Euro Coin Designs"
-#: src/templates/index.html.tmpl:17
+#. TRANSLATORS: Beginning of sentence, as in ‘United in …’
+#: src/templates/index.html.tmpl:8
+msgid "United in"
+msgstr "United in"
+
+#: src/templates/-navbar.html.tmpl:9
+msgid "Jargon"
+msgstr "Jargon"
+
+#: src/templates/-base.html.tmpl:7
+msgid "Euro Cash"
+msgstr "Euro Cash"
+
+#. TRANSLATORS: As in ‘5 Euro Banknote’
+#: src/templates/coins-mintages.html.tmpl:4
+msgid "Euro Coin Mintages"
+msgstr "Euro Coin Mintages"
+
+#: src/templates/coins-designs-ad.html.tmpl:24
+msgid "Casa de la Vall"
+msgstr "Casa de la Vall"
+
+#: src/templates/coins-designs-ad.html.tmpl:43
+msgid "The arms of the Count of Foix"
+msgstr "The arms of the Count of Foix"
+
+#: src/templates/coins-designs-ee.html.tmpl:94
+msgid "Mai Järmut, Villu Järmut"
+msgstr "Mai Järmut, Villu Järmut"
+
+#: src/templates/banknotes.html.tmpl:19
+msgid "View the different Euro-note designs!"
+msgstr "View the different Euro-note designs!"
+
+#: src/templates/coins-designs-de.html.tmpl:11
+msgid "German €0.10 coin"
+msgstr "German €0.10 coin"
+
+#: src/templates/coins-designs-de.html.tmpl:22
+msgid "Mintmark"
+msgstr "Mintmark"
+
+#: src/templates/coins.html.tmpl:8
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."
+"On this section of the site you can find everything there is to know about "
+"the coins of the Eurozone."
msgstr ""
-"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."
+"On this section of the site you can find everything there is to know about "
+"the coins of the Eurozone."
-#: src/templates/about.html.tmpl:7
-msgid "Open Source"
-msgstr "Open Source"
+#: src/templates/-navbar.html.tmpl:17
+msgid "About"
+msgstr "About"
-#: src/templates/about.html.tmpl:24
-msgid "Translations"
-msgstr "Translations"
+#: src/templates/banknotes.html.tmpl:36
+msgid "Test Notes"
+msgstr "Test Notes"
+
+#: src/templates/coins-designs-ee.html.tmpl:44
+msgid "Lembit Lõhmus"
+msgstr "Lembit Lõhmus"
-#: src/templates/coins-designs-at.html.tmpl:17
+#: src/templates/coins-designs-hr.html.tmpl:34
msgid ""
-"\n"
-"\t\t\tThe bronze coins feature the Alpine gentian, -edelweiss, and\n"
-"\t\t\t-primrose respectively, and were chosen to symbolize the role that\n"
-"\t\t\tAustria played in the development of EU environmental policy.\n"
-"\t\t"
+"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 ""
-"\n"
-"\t\t\tThe bronze coins feature the Alpine gentian, -edelweiss, and\n"
-"\t\t\t-primrose respectively, and were chosen to symbolize the role that\n"
-"\t\t\tAustria played in the development of EU environmental policy.\n"
-"\t\t"
+"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ć."
-#: src/templates/banknotes-codes.html.tmpl:16
+#: src/templates/about.html.tmpl:9
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."
+"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 ""
-"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."
+"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."
+
+#: src/templates/-base.html.tmpl:36
+msgid "Found a mistake or want to contribute missing information?"
+msgstr "Found a mistake or want to contribute missing information?"
+
+#: 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 ""
+"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)."
#: src/templates/banknotes-codes.html.tmpl:61
msgid "Estonia"
msgstr "Estonia"
-#: src/templates/banknotes-codes.html.tmpl:89
-#: src/templates/banknotes-codes.html.tmpl:151
-#: src/templates/banknotes-codes.html.tmpl:245
-msgid "Austria"
-msgstr "Austria"
-
-#. TRANSLATORS: Beginning of sentence, as in ‘United in …’
-#: src/templates/index.html.tmpl:8
-msgid "United in"
-msgstr "United in"
+#: src/templates/banknotes-codes.html.tmpl:121
+#: src/templates/banknotes-codes.html.tmpl:205
+#: src/templates/banknotes-codes.html.tmpl:299
+msgid "Belgium"
+msgstr "Belgium"
-#: src/templates/about.html.tmpl:23
-msgid "Research"
-msgstr "Research"
+#: src/templates/coins-designs-ee.html.tmpl:32
+msgid "Translation"
+msgstr "Translation"
-#: src/templates/coins-designs.html.tmpl:4
-msgid "Euro Coin Designs"
-msgstr "Euro Coin Designs"
+#: src/templates/coins-designs-ee.html.tmpl:35
+msgid "Votes (%)"
+msgstr "Votes (%)"
-#: src/templates/coins-designs-at.html.tmpl:29
+#: src/templates/coins-designs-nl.html.tmpl:29
msgid ""
-"\n"
-"\t\t\tThe €0.10 coin features St. Stephen’s Cathedral. It symbolises the\n"
-"\t\t\tViennese Gothic architectural style dating to around the year 1160.\n"
-"\t\t\tThe €0.20 coin features Belvedere Palace. This is an example of\n"
-"\t\t\tBaroque architecture and symbolises the national freedom and\n"
-"\t\t\tsovereignty of Austria. The final gold coin — the €0.50 coin —\n"
-"\t\t\tfeatures the Secession Building: an exhibition hall in the Art\n"
-"\t\t\tNouveau style.\n"
-"\t\t"
-msgstr ""
-"\n"
-"\t\t\tThe €0.10 coin features St. Stephen’s Cathedral. It symbolises the\n"
-"\t\t\tViennese Gothic architectural style dating to around the year 1160.\n"
-"\t\t\tThe €0.20 coin features Belvedere Palace. This is an example of\n"
-"\t\t\tBaroque architecture and symbolises the national freedom and\n"
-"\t\t\tsovereignty of Austria. The final gold coin — the €0.50 coin —\n"
-"\t\t\tfeatures the Secession Building: an exhibition hall in the Art\n"
-"\t\t\tNouveau style.\n"
-"\t\t"
+"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 ""
+"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."
-#: src/templates/banknotes-codes.html.tmpl:21
-msgid "All these images are taken from {Link:L}eurobilltracker.com{-:E}."
-msgstr "All these images are taken from {Link:L}eurobilltracker.com{-:E}."
+#: src/templates/about.html.tmpl:38
+msgid "British- & American English"
+msgstr "British- & American English"
-#: src/templates/coins-designs-at.html.tmpl:12
-msgid "Austrian 1 euro cent coin"
-msgstr "Austrian 1 euro cent coin"
+#: src/templates/-navbar.html.tmpl:14
+msgid "Discord"
+msgstr "Discord"
-#: src/templates/-navbar.html.tmpl:6
-msgid "Coin Collecting"
-msgstr "Coin Collecting"
+#: src/templates/banknotes-codes.html.tmpl:69
+msgid "Malta"
+msgstr "Malta"
-#: src/templates/banknotes-codes.html.tmpl:55
-#: src/templates/banknotes-codes.html.tmpl:134
-#: src/templates/banknotes-codes.html.tmpl:224
-msgid "Country"
-msgstr "Country"
+#: 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 ""
+"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."
-#: src/templates/language.html.tmpl:16
-msgid "Eurozone Languages"
-msgstr "Eurozone Languages"
+#: src/templates/coins-designs-at.html.tmpl:23
+msgid "Austrian €0.50 coin"
+msgstr "Austrian €0.50 coin"
+
+#: src/templates/coins-designs-de.html.tmpl:27
+msgid "Berlin"
+msgstr "Berlin"
+
+#: src/templates/coins-designs-ee.html.tmpl:116
+msgid "Jaarno Ester"
+msgstr "Jaarno Ester"
-#: src/templates/coins-designs-ad.html.tmpl:53
+#: src/templates/coins-designs-hr.html.tmpl:17
msgid ""
-"The bottom of the coat of arms has the motto ‘{LatinStart:r}VIRTVS VNITA "
-"FORTIOR{LatinEnd:r}’ (‘UNITED VIRTUE IS STRONGER’)."
+"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 ""
-"The bottom of the coat of arms has the motto ‘{LatinStart:r}VIRTVS VNITA "
-"FORTIOR{LatinEnd:r}’ (‘UNITED VIRTUE IS STRONGER’)."
+"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."
-#: src/templates/banknotes-codes.html.tmpl:11
-msgid "Printer Code"
-msgstr "Printer Code"
+#: src/templates/banknotes-codes.html.tmpl:176
+#: src/templates/banknotes-codes.html.tmpl:270
+msgid "Central Bank of Ireland"
+msgstr "Central Bank of Ireland"
-#: src/templates/coins-designs-ad.html.tmpl:16
+#: src/templates/coins-mintages.html.tmpl:98
+msgid "Mintage"
+msgstr "Mintage"
+
+#: src/templates/coins-designs-at.html.tmpl:30
+msgid "Austrian €2 coin"
+msgstr "Austrian €2 coin"
+
+#: src/templates/coins-designs-de.html.tmpl:15
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:"
+"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 ""
-"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:"
+"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."
-#: src/templates/coins-designs-ad.html.tmpl:33
+#: src/templates/coins-designs-de.html.tmpl:56
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."
+"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 ""
-"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."
+"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."
-#: src/templates/banknotes-codes.html.tmpl:33
-msgid "Europa Series Printer Codes"
-msgstr "Europa Series Printer Codes"
+#: 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 ""
+"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."
-#: src/templates/banknotes-codes.html.tmpl:97
-#: src/templates/banknotes-codes.html.tmpl:170
-#: src/templates/banknotes-codes.html.tmpl:264
-msgid "Italy"
-msgstr "Italy"
+#: 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 ""
+"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."
-#: src/templates/coins-designs-at.html.tmpl:13
-msgid "Austrian 2 euro cent coin"
-msgstr "Austrian 2 euro cent coin"
+#: 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 ""
+"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."
#: src/templates/banknotes-codes.html.tmpl:43
msgid ""
@@ -391,336 +622,623 @@ msgstr ""
"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."
-#: src/templates/banknotes-codes.html.tmpl:48
+#: src/templates/coins-mintages.html.tmpl:15
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."
+"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 ""
-"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."
+"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}."
-#: src/templates/about.html.tmpl:18
-msgid "Special Thanks"
-msgstr "Special Thanks"
+#: 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 ""
+"The bottom of the coat of arms has the motto ‘{LatinStart:r}VIRTVS VNITA "
+"FORTIOR{LatinEnd:E}’ (English: ‘UNITED VIRTUE IS STRONGER’)."
-#: src/templates/-base.html.tmpl:37
-msgid "Feel free to contact us!"
-msgstr "Feel free to contact us!"
+#: src/templates/coins-designs-de.html.tmpl:10
+msgid "German €0.01 coin"
+msgstr "German €0.01 coin"
-#: src/templates/coins-designs-ad.html.tmpl:20
-#: src/templates/coins-designs-ad.html.tmpl:25
-msgid "{1:m}, {2:m} and {3:m}"
-msgstr "{1:m}, {2:m} and {3:m}"
+#: src/templates/coins-designs-de.html.tmpl:21
+msgid "City"
+msgstr "City"
-#: src/templates/banknotes-codes.html.tmpl:77
-msgid "Slovenia"
-msgstr "Slovenia"
+#. 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:125
+msgid "{Break:r}Nova"
+msgstr "{Null}"
-#: src/templates/banknotes-codes.html.tmpl:216
-msgid "Europa Series"
-msgstr "Europa Series"
+#: src/templates/banknotes.html.tmpl:39
+msgid "Learn about the special test notes!"
+msgstr "Learn about the special test notes!"
-#: src/templates/-navbar.html.tmpl:14
-msgid "Discord"
-msgstr "Discord"
+#: src/templates/banknotes-codes.html.tmpl:109
+#: src/templates/banknotes-codes.html.tmpl:185
+#: src/templates/banknotes-codes.html.tmpl:279
+msgid "Spain"
+msgstr "Spain"
-#: src/templates/banknotes-codes.html.tmpl:218
+#: src/templates/coins-designs-ad.html.tmpl:42
+msgid "The arms of the Bishop of Urgell"
+msgstr "The arms of the Bishop of Urgell"
+
+#: src/templates/coins-designs-hr.html.tmpl:4
+msgid "Croatian Euro Coin Designs"
+msgstr "Croatian Euro Coin Designs"
+
+#: src/templates/coins-designs-hr.html.tmpl:9
+msgid "Croatian €0.01 coin"
+msgstr "Croatian €0.01 coin"
+
+#: src/templates/language.html.tmpl:8
+msgid "Select your preferred language to use on the site."
+msgstr "Select your preferred language to use on the site."
+
+#: src/templates/index.html.tmpl:10
+msgid "cash"
+msgstr "cash"
+
+#: src/templates/about.html.tmpl:24
+msgid "Translations"
+msgstr "Translations"
+
+#: src/templates/coins-mintages.html.tmpl:97
+msgid "Commemorated Issue"
+msgstr "Commemorated Issue"
+
+#: src/templates/coins-designs-de.html.tmpl:43
+msgid "Hamburg"
+msgstr "Hamburg"
+
+#: src/templates/coins-designs-de.html.tmpl:60
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."
+"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 ""
-"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."
-
-#: src/templates/-base.html.tmpl:36
-msgid "Found a mistake or want to contribute missing information?"
-msgstr "Found a mistake or want to contribute missing information?"
+"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’)."
-#: src/templates/coins-designs-ad.html.tmpl:4
-msgid "Andorran Euro Coin Designs"
-msgstr "Andorran Euro Coin Designs"
+#: src/templates/coins-designs-ee.html.tmpl:33
+msgid "Author(s)"
+msgstr "Author(s)"
#: src/templates/index.html.tmpl:9
msgid "diversity"
msgstr "diversity"
-#: src/templates/about.html.tmpl:38
-msgid "British- & American English"
-msgstr "British- & American English"
+#: src/templates/coins.html.tmpl:29
+msgid "View the mintage figures of all the Euro coins!"
+msgstr "View the mintage figures of all the Euro coins!"
-#: src/templates/coins.html.tmpl:19
-msgid "View the 600+ different Euro-coin designs!"
-msgstr "View the 600+ different Euro-coin designs!"
+#: src/templates/banknotes-codes.html.tmpl:21
+msgid "All these images are taken from {Link:L}eurobilltracker.com{-:E}."
+msgstr "All these images are taken from {Link:L}eurobilltracker.com{-:E}."
-#: src/templates/-navbar.html.tmpl:8
-msgid "Banknotes"
-msgstr "Banknotes"
+#: src/templates/coins-designs-be.html.tmpl:4
+msgid "Belgian Euro Coin Designs"
+msgstr "Belgian Euro Coin Designs"
-#: src/templates/coins-designs-ad.html.tmpl:43
+#: src/templates/coins-designs-be.html.tmpl:26
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."
+"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 ""
-"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."
+"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."
-#: src/templates/banknotes-codes.html.tmpl:121
-#: src/templates/banknotes-codes.html.tmpl:205
-#: src/templates/banknotes-codes.html.tmpl:299
-msgid "Belgium"
-msgstr "Belgium"
+#: src/templates/coins-designs-de.html.tmpl:12
+msgid "German €1 coin"
+msgstr "German €1 coin"
-#: src/templates/banknotes-codes.html.tmpl:165
-msgid "United Kingdom"
-msgstr "United Kingdom"
+#: src/templates/coins-designs-de.html.tmpl:35
+msgid "Stuttgart"
+msgstr "Stuttgart"
-#: src/templates/-base.html.tmpl:7
-msgid "Euro Cash"
-msgstr "Euro Cash"
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:85
+msgid "{Break:r}Estonian"
+msgstr "{Break:r}Estonian"
-#: src/templates/index.html.tmpl:5
-msgid "The Euro Cash Wiki"
-msgstr "The Euro Cash Wiki"
+#: src/templates/coins.html.tmpl:36
+msgid "Varieties"
+msgstr "Varieties"
+
+#: src/templates/banknotes.html.tmpl:4
+msgid "Euro Banknotes"
+msgstr "Euro Banknotes"
+
+#: src/templates/coins-designs-ad.html.tmpl:45
+msgid "The arms of the Viscounts of Béarn"
+msgstr "The arms of the Viscounts of Béarn"
+
+#: src/templates/coins-designs-be.html.tmpl:17
+msgid "Belgian €1 coin (King Philippe)"
+msgstr "Belgian €1 coin (King Philippe)"
+
+#: 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 ""
+"The winner of the contest was awarded 50,000 KR (€3,196) while the other "
+"finalists were each awarded 20,000 KR (€1,278)."
+
+#: src/templates/coins-designs-ee.html.tmpl:87
+msgid "Jaak Peep, Villem Valme"
+msgstr "Jaak Peep, Villem Valme"
+
+#: src/templates/coins-designs-ee.html.tmpl:138
+msgid "Margus Kadarik"
+msgstr "Margus Kadarik"
+
+#: src/templates/coins-designs-hr.html.tmpl:10
+msgid "Croatian €0.50 coin"
+msgstr "Croatian €0.50 coin"
+
+#: src/templates/language.html.tmpl:13
+msgid "Other Languages"
+msgstr "Other Languages"
+
+#: src/templates/-404.html.tmpl:4
+msgid "Page Not Found"
+msgstr "Page Not Found"
+
+#: src/templates/banknotes-codes.html.tmpl:4
+#: src/templates/banknotes.html.tmpl:26
+msgid "Location Codes"
+msgstr "Location Codes"
#: src/templates/banknotes-codes.html.tmpl:19
msgid "2002 Series Printer Codes"
msgstr "2002 Series Printer Codes"
-#: src/templates/banknotes-codes.html.tmpl:65
-msgid "Slovakia"
-msgstr "Slovakia"
+#: 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 ""
+"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."
-#: src/templates/banknotes-codes.html.tmpl:73
-msgid "Cyprus"
-msgstr "Cyprus"
+#: src/templates/banknotes-codes.html.tmpl:54
+#: src/templates/banknotes-codes.html.tmpl:133
+#: src/templates/banknotes-codes.html.tmpl:223
+msgid "Code"
+msgstr "Code"
-#: src/templates/banknotes-codes.html.tmpl:176
-#: src/templates/banknotes-codes.html.tmpl:270
-msgid "Central Bank of Ireland"
-msgstr "Central Bank of Ireland"
+#: src/templates/banknotes-codes.html.tmpl:171
+#: src/templates/banknotes-codes.html.tmpl:265
+msgid "Bank of Italy"
+msgstr "Bank of Italy"
-#: src/templates/-error.html.tmpl:8
+#: src/templates/coins-designs-ad.html.tmpl:34
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."
+"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 ""
-"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."
-
-#: src/templates/banknotes-codes.html.tmpl:46
-msgid "2002 Series"
-msgstr "2002 Series"
-
-#: src/templates/about.html.tmpl:4
-msgid "About Us"
-msgstr "About Us"
+"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."
#: src/templates/about.html.tmpl:39
msgid "Icelandic"
msgstr "Icelandic"
-#: src/templates/-navbar.html.tmpl:4
-msgid "Home"
-msgstr "Home"
+#: src/templates/language.html.tmpl:11
+msgid "Eurozone Languages"
+msgstr "Eurozone Languages"
-#: src/templates/-navbar.html.tmpl:58
-msgid "Language"
-msgstr "Language"
+#: src/templates/about.html.tmpl:7
+msgid "Open Source"
+msgstr "Open Source"
-#: src/templates/banknotes.html.tmpl:4
-msgid "Euro Banknotes"
-msgstr "Euro Banknotes"
+#: src/templates/about.html.tmpl:18
+msgid "Special Thanks"
+msgstr "Special Thanks"
-#: src/templates/coins.html.tmpl:39
-msgid "View all the known Euro varieties!"
-msgstr "View all the known Euro varieties!"
+#: src/templates/banknotes-codes.html.tmpl:186
+#: src/templates/banknotes-codes.html.tmpl:280
+msgid "Royal Mint of Spain"
+msgstr "Royal Mint of Spain"
-#: src/templates/-navbar.html.tmpl:9
-msgid "Jargon"
-msgstr "Jargon"
+#: src/templates/coins-designs-at.html.tmpl:21
+msgid "Austrian €0.10 coin"
+msgstr "Austrian €0.10 coin"
-#: src/templates/banknotes.html.tmpl:29
-msgid "Find out where your notes were printed!"
-msgstr "Find out where your notes were printed!"
+#: src/templates/coins-designs-be.html.tmpl:13
+msgid "Belgian €1 coin (King Albert; Series 2)"
+msgstr "Belgian €1 coin (King Albert; Series 2)"
+
+#: 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 ""
+"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."
+
+#: src/templates/banknotes-codes.html.tmpl:46
+msgid "2002 Series"
+msgstr "2002 Series"
+
+#: src/templates/banknotes-codes.html.tmpl:101
+#: src/templates/banknotes-codes.html.tmpl:175
+#: src/templates/banknotes-codes.html.tmpl:269
+msgid "Ireland"
+msgstr "Ireland"
#: src/templates/banknotes-codes.html.tmpl:135
#: src/templates/banknotes-codes.html.tmpl:225
msgid "Printer"
msgstr "Printer"
+#: src/templates/banknotes-codes.html.tmpl:285
+msgid "Leipzig"
+msgstr "Leipzig"
+
+#: src/templates/coins-mintages.html.tmpl:51
+msgid "Standard Issue Coins"
+msgstr "Standard Issue Coins"
+
+#: 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 ""
+"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."
+
+#: src/templates/coins-designs-de.html.tmpl:4
+msgid "German Euro Coin Designs"
+msgstr "German Euro Coin Designs"
+
+#: 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 ""
+"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."
+
+#: src/templates/banknotes.html.tmpl:16 src/templates/coins.html.tmpl:16
+msgid "Designs"
+msgstr "Designs"
+
+#: 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 "France"
+
#: src/templates/banknotes-codes.html.tmpl:181
#: src/templates/banknotes-codes.html.tmpl:275
msgid "Bank of France"
msgstr "Bank of France"
-#: src/templates/-navbar.html.tmpl:17
-msgid "About"
-msgstr "About"
+#: src/templates/coins-mintages.html.tmpl:48
+msgid "Filter"
+msgstr "Filter"
-#: src/templates/coins-designs-ad.html.tmpl:40
-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 ""
-"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."
+#: src/templates/coins-designs-ee.html.tmpl:4
+msgid "Estonian Euro Coin Designs"
+msgstr "Estonian Euro Coin Designs"
+
+#: src/templates/coins-designs-ee.html.tmpl:32
+msgid "Name"
+msgstr "Name"
-#: src/templates/coins-designs-ad.html.tmpl:46
+#: src/templates/coins-designs-ee.html.tmpl:34
+msgid "Votes"
+msgstr "Votes"
+
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:53
+msgid "{Break:r}Consistency"
+msgstr "{Break:r}Consistency"
+
+#: src/templates/-error.html.tmpl:8
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:"
+"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 ""
-"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:"
+"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."
#: src/templates/banknotes-codes.html.tmpl:81
#: src/templates/banknotes-codes.html.tmpl:141
msgid "Finland"
msgstr "Finland"
-#: src/templates/coins-designs-at.html.tmpl:44
+#: src/templates/banknotes-codes.html.tmpl:89
+#: src/templates/banknotes-codes.html.tmpl:151
+#: src/templates/banknotes-codes.html.tmpl:245
+msgid "Austria"
+msgstr "Austria"
+
+#: 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 "Germany"
+
+#: src/templates/coins-designs-ad.html.tmpl:21
+msgid "€0.10, €0.20 and €0.50"
+msgstr "€0.10, €0.20 and €0.50"
+
+#: src/templates/coins-designs-at.html.tmpl:29
+msgid "Austrian €1 coin"
+msgstr "Austrian €1 coin"
+
+#: src/templates/coins-designs-ee.html.tmpl:145
+msgid "Total"
+msgstr "Total"
+
+#: src/templates/coins-designs-hr.html.tmpl:13
+msgid "Croatian €1 coin"
+msgstr "Croatian €1 coin"
+
+#: src/templates/banknotes-codes.html.tmpl:65
+msgid "Slovakia"
+msgstr "Slovakia"
+
+#: src/templates/banknotes-codes.html.tmpl:77
+msgid "Slovenia"
+msgstr "Slovenia"
+
+#: src/templates/banknotes-codes.html.tmpl:206
+#: src/templates/banknotes-codes.html.tmpl:300
+msgid "National Bank of Belgium"
+msgstr "National Bank of Belgium"
+
+#: src/templates/coins-designs-ad.html.tmpl:44
+msgid "The arms of Catalonia"
+msgstr "The arms of Catalonia"
+
+#. 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:74
+msgid "{Break:r}Tomson 5791"
+msgstr "{Null}"
+
+#: src/templates/coins-designs-ee.html.tmpl:127
+msgid "Rene Haljasmäe"
+msgstr "Rene Haljasmäe"
+
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:136
+msgid "{Break:r}A Flower in the Rye"
+msgstr "{Break:r}A Flower in the Rye"
+
+#: src/templates/coins-designs-hr.html.tmpl:29
msgid ""
-"\n"
-"\t\t\tThe two bimetallic coins feature the busts of the musical composer\n"
-"\t\t\tWolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist\n"
-"\t\t\tand Nobel Peace Prize winner Bertha von Suttner.\n"
-"\t\t"
+"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 ""
-"\n"
-"\t\t\tThe two bimetallic coins feature the busts of the musical composer\n"
-"\t\t\tWolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist\n"
-"\t\t\tand Nobel Peace Prize winner Bertha von Suttner.\n"
-"\t\t"
+"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)."
-#: src/templates/banknotes-codes.html.tmpl:4
-#: src/templates/banknotes.html.tmpl:26
-msgid "Location Codes"
-msgstr "Location Codes"
+#: src/templates/coins.html.tmpl:26
+msgid "Mintages"
+msgstr "Mintages"
-#: src/templates/banknotes-codes.html.tmpl:117
-#: src/templates/banknotes-codes.html.tmpl:190
-#: src/templates/banknotes-codes.html.tmpl:294
-msgid "Greece"
-msgstr "Greece"
+#: src/templates/banknotes-codes.html.tmpl:33
+msgid "Europa Series Printer Codes"
+msgstr "Europa Series Printer Codes"
-#: src/templates/banknotes-codes.html.tmpl:127
+#: src/templates/banknotes-codes.html.tmpl:216
+msgid "Europa Series"
+msgstr "Europa Series"
+
+#: src/templates/coins-designs-de.html.tmpl:39
+msgid "Karlsruhe"
+msgstr "Karlsruhe"
+
+#: src/templates/coins-designs-ee.html.tmpl:65
+msgid "Jaan Meristo"
+msgstr "Jaan Meristo"
+
+#: src/templates/coins-designs-hr.html.tmpl:14
+msgid "Croatian €2 coin"
+msgstr "Croatian €2 coin"
+
+#: src/templates/banknotes-codes.html.tmpl:290
+#: src/templates/coins-designs-de.html.tmpl:31
+msgid "Munich"
+msgstr "Munich"
+
+#: src/templates/coins-designs-ad.html.tmpl:8
+msgid "Andorran €0.01 coin"
+msgstr "Andorran €0.01 coin"
+
+#: src/templates/coins-designs-ad.html.tmpl:12
+msgid "Andorran €1 coin"
+msgstr "Andorran €1 coin"
+
+#: src/templates/coins-designs-at.html.tmpl:13
+msgid "Austrian €0.01 coin"
+msgstr "Austrian €0.01 coin"
+
+#: src/templates/coins-designs-at.html.tmpl:14
+msgid "Austrian €0.02 coin"
+msgstr "Austrian €0.02 coin"
+
+#: src/templates/coins-designs-hr.html.tmpl:25
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."
+"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 ""
-"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."
+"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’."
-#. TRANSLATORS: As in ‘Development of the site’
-#: src/templates/about.html.tmpl:22
-msgid "Development"
-msgstr "Development"
+#: src/templates/banknotes-codes.html.tmpl:73
+msgid "Cyprus"
+msgstr "Cyprus"
-#: src/templates/banknotes-codes.html.tmpl:13
+#: src/templates/coins-designs-ad.html.tmpl:9
+msgid "Andorran €0.50 coin"
+msgstr "Andorran €0.50 coin"
+
+#: src/templates/coins-designs-ee.html.tmpl:55
+#: src/templates/coins-designs-ee.html.tmpl:105
+msgid "Tiit Jürna"
+msgstr "Tiit Jürna"
+
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:103
+msgid "{Break:r}Bird Road"
+msgstr "{Break:r}Bird Road"
+
+#: src/templates/coins-designs-hr.html.tmpl:21
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."
+"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 ""
-"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."
+"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)."
-#: src/templates/coins-designs-at.html.tmpl:4
-msgid "Austrian Euro Coin Designs"
-msgstr "Austrian Euro Coin Designs"
+#: src/templates/coins.html.tmpl:39
+msgid "View all the known Euro varieties!"
+msgstr "View all the known Euro varieties!"
-#: src/templates/coins-designs-ad.html.tmpl:49
-msgid "The arms of the Count of Foix"
-msgstr "The arms of the Count of Foix"
+#: src/templates/-navbar.html.tmpl:5
+msgid "News"
+msgstr "News"
-#: src/templates/coins-designs-ad.html.tmpl:50
-msgid "The arms of Catalonia"
-msgstr "The arms of Catalonia"
+#: src/templates/coins-mintages.html.tmpl:12
+msgid "Additional Notes"
+msgstr "Additional Notes"
-#: src/templates/banknotes-codes.html.tmpl:109
-#: src/templates/banknotes-codes.html.tmpl:185
-#: src/templates/banknotes-codes.html.tmpl:279
-msgid "Spain"
-msgstr "Spain"
+#: src/templates/coins-designs-at.html.tmpl:22
+msgid "Austrian €0.20 coin"
+msgstr "Austrian €0.20 coin"
-#: src/templates/coins.html.tmpl:8
+#: src/templates/coins-designs-be.html.tmpl:29
msgid ""
-"On this section of the site you can find everything there is to know about "
-"the coins of the Eurozone."
+"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 ""
-"On this section of the site you can find everything there is to know about "
-"the coins of the Eurozone."
-
-#: src/templates/coins-designs-ad.html.tmpl:23
-msgid "Andorran landscapes, nature, fauna and flora"
-msgstr "Andorran landscapes, nature, fauna and flora"
+"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."
-#: src/templates/coins-designs-ad.html.tmpl:30
-msgid "Casa de la Vall"
-msgstr "Casa de la Vall"
+#: src/templates/coins-designs-ee.html.tmpl:63
+msgid "{Break:r}In the Body"
+msgstr "{Break:r}In the Body"
-#: src/templates/coins-designs-at.html.tmpl:14
-msgid "Austrian 5 euro cent coin"
-msgstr "Austrian 5 euro cent coin"
+#: src/templates/coins-designs-nl.html.tmpl:4
+msgid "Dutch Euro Coin Designs"
+msgstr "Dutch Euro Coin Designs"
-#: src/templates/coins-designs-ad.html.tmpl:36
+#: src/templates/coins-designs-nl.html.tmpl:33
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."
+"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 ""
-"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."
+"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 ⋆’)."
-#: src/templates/banknotes-codes.html.tmpl:8
+#: src/templates/index.html.tmpl:5
+msgid "The Euro Cash Wiki"
+msgstr "The Euro Cash Wiki"
+
+#: src/templates/index.html.tmpl:17
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)."
+"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 ""
-"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)."
+"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."
-#: src/templates/about.html.tmpl:13
-msgid "Contact Us"
-msgstr "Contact Us"
+#: 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 ""
+"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."
-#: src/templates/-navbar.html.tmpl:7
-msgid "Coins"
-msgstr "Coins"
+#: src/templates/coins-designs-ad.html.tmpl:13
+msgid "Andorran €2 coin"
+msgstr "Andorran €2 coin"
-#: src/templates/banknotes.html.tmpl:19
-msgid "View the different Euro-note designs!"
-msgstr "View the different Euro-note designs!"
+#: 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 ""
+"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:"
#: src/templates/banknotes-codes.html.tmpl:93
#: src/templates/banknotes-codes.html.tmpl:160
@@ -728,27 +1246,46 @@ msgstr "View the different Euro-note designs!"
msgid "Netherlands"
msgstr "Netherlands"
-#: src/templates/-error.html.tmpl:11
+#: src/templates/coins-mintages.html.tmpl:8
msgid ""
-"If this issue persists, don’t hesitate to contact ‘@onetruemangoman’ on "
-"Discord or to email us at %(Email:e)"
+"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 ""
-"If this issue persists, don’t hesitate to contact ‘@onetruemangoman’ on "
-"Discord or to email us at %(Email:e)"
+"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."
-#: src/templates/banknotes.html.tmpl:8
+#: src/templates/coins-designs-ad.html.tmpl:4
+msgid "Andorran Euro Coin Designs"
+msgstr "Andorran Euro Coin Designs"
+
+#: src/templates/coins-designs-ad.html.tmpl:22
+msgid "Andorra’s Romanesque art"
+msgstr "Andorra’s Romanesque art"
+
+#: src/templates/coins-designs-at.html.tmpl:33
msgid ""
-"On this section of the site you can find everything there is to know about "
-"the banknotes of the Eurozone."
+"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 ""
-"On this section of the site you can find everything there is to know about "
-"the banknotes of the Eurozone."
+"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."
-#: src/templates/banknotes-codes.html.tmpl:171
-#: src/templates/banknotes-codes.html.tmpl:265
-msgid "Bank of Italy"
-msgstr "Bank of Italy"
+#: src/templates/coins-designs-ee.html.tmpl:31
+msgid "Position"
+msgstr "Position"
-#: src/templates/banknotes.html.tmpl:16 src/templates/coins.html.tmpl:16
-msgid "Designs"
-msgstr "Designs"
+#: 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 ""
+"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."
diff --git a/po/messages.pot b/po/messages.pot
new file mode 100644
index 0000000..8848b02
--- /dev/null
+++ b/po/messages.pot
@@ -0,0 +1,1104 @@
+# 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-27 21:59+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/coins.html.tmpl:19
+msgid "View the 600+ different Euro-coin designs!"
+msgstr ""
+
+#: src/templates/-navbar.html.tmpl:6
+msgid "Coin Collecting"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:9
+msgid "Estonian €1 coin"
+msgstr ""
+
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:114
+msgid "{Break:r}Leopards-2"
+msgstr ""
+
+#: src/templates/about.html.tmpl:23
+msgid "Research"
+msgstr ""
+
+#: src/templates/-navbar.html.tmpl:4
+msgid "Home"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:20
+msgid "Andorran landscapes, nature, fauna and flora"
+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-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.html.tmpl:4
+msgid "Euro Coins"
+msgstr ""
+
+#: src/templates/-navbar.html.tmpl:7
+msgid "Coins"
+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:85
+#: src/templates/banknotes-codes.html.tmpl:210
+#: src/templates/banknotes-codes.html.tmpl:240
+msgid "Portugal"
+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/banknotes-codes.html.tmpl:165
+msgid "United Kingdom"
+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-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 ""
+
+#. TRANSLATORS: As in ‘Development of the site’
+#: src/templates/about.html.tmpl:22
+msgid "Development"
+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/-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:54
+#: src/templates/coins-mintages.html.tmpl:96
+msgid "Year"
+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-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:9
+msgid "Belgian €1 coin (King Albert; Series 1)"
+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/coins-designs-ad.html.tmpl:19
+msgid "€0.01, €0.02 and €0.05"
+msgstr ""
+
+#: src/templates/about.html.tmpl:4
+msgid "About Us"
+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/coins-designs.html.tmpl:4
+msgid "Euro Coin Designs"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:15
+msgid "Austrian €0.05 coin"
+msgstr ""
+
+#: src/templates/about.html.tmpl:13
+msgid "Contact Us"
+msgstr ""
+
+#: src/templates/-navbar.html.tmpl:8
+msgid "Banknotes"
+msgstr ""
+
+#: src/templates/-navbar.html.tmpl:58
+msgid "Language"
+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/banknotes-codes.html.tmpl:191
+#: src/templates/banknotes-codes.html.tmpl:295
+msgid "Bank of Greece"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:76
+msgid "Taavi Torim"
+msgstr ""
+
+#: src/templates/language.html.tmpl:4
+msgid "Select Your Language"
+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/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 ""
+
+#. 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:43
+msgid "{Break:r}Hara 2"
+msgstr ""
+
+#: src/templates/coins-mintages.html.tmpl:93
+msgid "Commemorative Coins"
+msgstr ""
+
+#: src/templates/banknotes.html.tmpl:29
+msgid "Find out where your notes were printed!"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:11
+msgid "Printer Code"
+msgstr ""
+
+#: src/templates/-base.html.tmpl:37
+msgid "Feel free to contact us!"
+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/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/banknotes-codes.html.tmpl:235
+msgid "Bulgaria"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:4
+msgid "Austrian 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:9
+msgid "Jargon"
+msgstr ""
+
+#: src/templates/-base.html.tmpl:7
+msgid "Euro Cash"
+msgstr ""
+
+#. TRANSLATORS: As in ‘5 Euro Banknote’
+#: src/templates/coins-mintages.html.tmpl:4
+msgid "Euro Coin Mintages"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:24
+msgid "Casa de la Vall"
+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:94
+msgid "Mai Järmut, Villu Järmut"
+msgstr ""
+
+#: src/templates/banknotes.html.tmpl:19
+msgid "View the different Euro-note designs!"
+msgstr ""
+
+#: src/templates/coins-designs-de.html.tmpl:11
+msgid "German €0.10 coin"
+msgstr ""
+
+#: src/templates/coins-designs-de.html.tmpl:22
+msgid "Mintmark"
+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/-navbar.html.tmpl:17
+msgid "About"
+msgstr ""
+
+#: src/templates/banknotes.html.tmpl:36
+msgid "Test Notes"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:44
+msgid "Lembit Lõhmus"
+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: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/-base.html.tmpl:36
+msgid "Found a mistake or want to contribute missing information?"
+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:61
+msgid "Estonia"
+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/coins-designs-ee.html.tmpl:32
+msgid "Translation"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:35
+msgid "Votes (%)"
+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/about.html.tmpl:38
+msgid "British- & American English"
+msgstr ""
+
+#: src/templates/-navbar.html.tmpl:14
+msgid "Discord"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:69
+msgid "Malta"
+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-at.html.tmpl:23
+msgid "Austrian €0.50 coin"
+msgstr ""
+
+#: src/templates/coins-designs-de.html.tmpl:27
+msgid "Berlin"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:116
+msgid "Jaarno Ester"
+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/banknotes-codes.html.tmpl:176
+#: src/templates/banknotes-codes.html.tmpl:270
+msgid "Central Bank of Ireland"
+msgstr ""
+
+#: src/templates/coins-mintages.html.tmpl:98
+msgid "Mintage"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:30
+msgid "Austrian €2 coin"
+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/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: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/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/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: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: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/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-de.html.tmpl:10
+msgid "German €0.01 coin"
+msgstr ""
+
+#: src/templates/coins-designs-de.html.tmpl:21
+msgid "City"
+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:125
+msgid "{Break:r}Nova"
+msgstr ""
+
+#: src/templates/banknotes.html.tmpl:39
+msgid "Learn about the special test notes!"
+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/coins-designs-ad.html.tmpl:42
+msgid "The arms of the Bishop of Urgell"
+msgstr ""
+
+#: src/templates/coins-designs-hr.html.tmpl:4
+msgid "Croatian Euro Coin Designs"
+msgstr ""
+
+#: src/templates/coins-designs-hr.html.tmpl:9
+msgid "Croatian €0.01 coin"
+msgstr ""
+
+#: src/templates/language.html.tmpl:8
+msgid "Select your preferred language to use on the site."
+msgstr ""
+
+#: src/templates/index.html.tmpl:10
+msgid "cash"
+msgstr ""
+
+#: src/templates/about.html.tmpl:24
+msgid "Translations"
+msgstr ""
+
+#: src/templates/coins-mintages.html.tmpl:97
+msgid "Commemorated Issue"
+msgstr ""
+
+#: src/templates/coins-designs-de.html.tmpl:43
+msgid "Hamburg"
+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 ""
+
+#: src/templates/coins-designs-ee.html.tmpl:33
+msgid "Author(s)"
+msgstr ""
+
+#: src/templates/index.html.tmpl:9
+msgid "diversity"
+msgstr ""
+
+#: src/templates/coins.html.tmpl:29
+msgid "View the mintage figures of all the Euro coins!"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:21
+msgid "All these images are taken from {Link:L}eurobilltracker.com{-:E}."
+msgstr ""
+
+#: src/templates/coins-designs-be.html.tmpl:4
+msgid "Belgian Euro Coin Designs"
+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-de.html.tmpl:12
+msgid "German €1 coin"
+msgstr ""
+
+#: src/templates/coins-designs-de.html.tmpl:35
+msgid "Stuttgart"
+msgstr ""
+
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:85
+msgid "{Break:r}Estonian"
+msgstr ""
+
+#: src/templates/coins.html.tmpl:36
+msgid "Varieties"
+msgstr ""
+
+#: src/templates/banknotes.html.tmpl:4
+msgid "Euro Banknotes"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:45
+msgid "The arms of the Viscounts of Béarn"
+msgstr ""
+
+#: src/templates/coins-designs-be.html.tmpl:17
+msgid "Belgian €1 coin (King Philippe)"
+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-designs-ee.html.tmpl:87
+msgid "Jaak Peep, Villem Valme"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:138
+msgid "Margus Kadarik"
+msgstr ""
+
+#: src/templates/coins-designs-hr.html.tmpl:10
+msgid "Croatian €0.50 coin"
+msgstr ""
+
+#: src/templates/language.html.tmpl:13
+msgid "Other Languages"
+msgstr ""
+
+#: src/templates/-404.html.tmpl:4
+msgid "Page Not Found"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:4
+#: src/templates/banknotes.html.tmpl:26
+msgid "Location Codes"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:19
+msgid "2002 Series Printer Codes"
+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:54
+#: src/templates/banknotes-codes.html.tmpl:133
+#: src/templates/banknotes-codes.html.tmpl:223
+msgid "Code"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:171
+#: src/templates/banknotes-codes.html.tmpl:265
+msgid "Bank of Italy"
+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 ""
+
+#: src/templates/about.html.tmpl:39
+msgid "Icelandic"
+msgstr ""
+
+#: src/templates/language.html.tmpl:11
+msgid "Eurozone Languages"
+msgstr ""
+
+#: src/templates/about.html.tmpl:7
+msgid "Open Source"
+msgstr ""
+
+#: src/templates/about.html.tmpl:18
+msgid "Special Thanks"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:186
+#: src/templates/banknotes-codes.html.tmpl:280
+msgid "Royal Mint of Spain"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:21
+msgid "Austrian €0.10 coin"
+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: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-codes.html.tmpl:46
+msgid "2002 Series"
+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/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/coins-mintages.html.tmpl:51
+msgid "Standard Issue Coins"
+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:4
+msgid "German Euro Coin Designs"
+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/banknotes.html.tmpl:16 src/templates/coins.html.tmpl:16
+msgid "Designs"
+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:181
+#: src/templates/banknotes-codes.html.tmpl:275
+msgid "Bank of France"
+msgstr ""
+
+#: src/templates/coins-mintages.html.tmpl:48
+msgid "Filter"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:4
+msgid "Estonian Euro Coin Designs"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:32
+msgid "Name"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:34
+msgid "Votes"
+msgstr ""
+
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:53
+msgid "{Break:r}Consistency"
+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: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/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/coins-designs-ad.html.tmpl:21
+msgid "€0.10, €0.20 and €0.50"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:29
+msgid "Austrian €1 coin"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:145
+msgid "Total"
+msgstr ""
+
+#: src/templates/coins-designs-hr.html.tmpl:13
+msgid "Croatian €1 coin"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:65
+msgid "Slovakia"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:77
+msgid "Slovenia"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:206
+#: src/templates/banknotes-codes.html.tmpl:300
+msgid "National Bank of Belgium"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:44
+msgid "The arms of Catalonia"
+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:74
+msgid "{Break:r}Tomson 5791"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:127
+msgid "Rene Haljasmäe"
+msgstr ""
+
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:136
+msgid "{Break:r}A Flower in the Rye"
+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/coins.html.tmpl:26
+msgid "Mintages"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:33
+msgid "Europa Series Printer Codes"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:216
+msgid "Europa Series"
+msgstr ""
+
+#: src/templates/coins-designs-de.html.tmpl:39
+msgid "Karlsruhe"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:65
+msgid "Jaan Meristo"
+msgstr ""
+
+#: src/templates/coins-designs-hr.html.tmpl:14
+msgid "Croatian €2 coin"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:290
+#: src/templates/coins-designs-de.html.tmpl:31
+msgid "Munich"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:8
+msgid "Andorran €0.01 coin"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:12
+msgid "Andorran €1 coin"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:13
+msgid "Austrian €0.01 coin"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:14
+msgid "Austrian €0.02 coin"
+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/banknotes-codes.html.tmpl:73
+msgid "Cyprus"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:9
+msgid "Andorran €0.50 coin"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:55
+#: src/templates/coins-designs-ee.html.tmpl:105
+msgid "Tiit Jürna"
+msgstr ""
+
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:103
+msgid "{Break:r}Bird Road"
+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/coins.html.tmpl:39
+msgid "View all the known Euro varieties!"
+msgstr ""
+
+#: src/templates/-navbar.html.tmpl:5
+msgid "News"
+msgstr ""
+
+#: src/templates/coins-mintages.html.tmpl:12
+msgid "Additional Notes"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:22
+msgid "Austrian €0.20 coin"
+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/coins-designs-ee.html.tmpl:63
+msgid "{Break:r}In the Body"
+msgstr ""
+
+#: src/templates/coins-designs-nl.html.tmpl:4
+msgid "Dutch Euro Coin Designs"
+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/index.html.tmpl:5
+msgid "The Euro Cash Wiki"
+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/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/coins-designs-ad.html.tmpl:13
+msgid "Andorran €2 coin"
+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/banknotes-codes.html.tmpl:93
+#: src/templates/banknotes-codes.html.tmpl:160
+#: src/templates/banknotes-codes.html.tmpl:254
+msgid "Netherlands"
+msgstr ""
+
+#: 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/coins-designs-ad.html.tmpl:4
+msgid "Andorran Euro Coin Designs"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:22
+msgid "Andorra’s Romanesque art"
+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-ee.html.tmpl:31
+msgid "Position"
+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 ""
diff --git a/po/sv/messages.po b/po/sv/messages.po
new file mode 100644
index 0000000..e873902
--- /dev/null
+++ b/po/sv/messages.po
@@ -0,0 +1,1094 @@
+# Swedish translations for Mango package.
+# Copyright (C) 2025 THE Mango'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the Mango package.
+# Thomas Voss <mail@thomasvoss.com>, 2025.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2025-07-27 21:59+0200\n"
+"PO-Revision-Date: 2025-07-27 20:33+0200\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"
+"#-#-#-#-# backend.pot (PACKAGE VERSION) #-#-#-#-#\n"
+"#-#-#-#-# - (PACKAGE VERSION) #-#-#-#-#\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: src/templates/coins.html.tmpl:19
+msgid "View the 600+ different Euro-coin designs!"
+msgstr ""
+
+#: src/templates/-navbar.html.tmpl:6
+msgid "Coin Collecting"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:9
+msgid "Estonian €1 coin"
+msgstr ""
+
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:114
+msgid "{Break:r}Leopards-2"
+msgstr ""
+
+#: src/templates/about.html.tmpl:23
+msgid "Research"
+msgstr ""
+
+#: src/templates/-navbar.html.tmpl:4
+msgid "Home"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:20
+msgid "Andorran landscapes, nature, fauna and flora"
+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-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.html.tmpl:4
+msgid "Euro Coins"
+msgstr ""
+
+#: src/templates/-navbar.html.tmpl:7
+msgid "Coins"
+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:85
+#: src/templates/banknotes-codes.html.tmpl:210
+#: src/templates/banknotes-codes.html.tmpl:240
+msgid "Portugal"
+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/banknotes-codes.html.tmpl:165
+msgid "United Kingdom"
+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-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 ""
+
+#. TRANSLATORS: As in ‘Development of the site’
+#: src/templates/about.html.tmpl:22
+msgid "Development"
+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/-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:54
+#: src/templates/coins-mintages.html.tmpl:96
+msgid "Year"
+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-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:9
+msgid "Belgian €1 coin (King Albert; Series 1)"
+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/coins-designs-ad.html.tmpl:19
+msgid "€0.01, €0.02 and €0.05"
+msgstr ""
+
+#: src/templates/about.html.tmpl:4
+msgid "About Us"
+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/coins-designs.html.tmpl:4
+msgid "Euro Coin Designs"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:15
+msgid "Austrian €0.05 coin"
+msgstr ""
+
+#: src/templates/about.html.tmpl:13
+msgid "Contact Us"
+msgstr ""
+
+#: src/templates/-navbar.html.tmpl:8
+msgid "Banknotes"
+msgstr ""
+
+#: src/templates/-navbar.html.tmpl:58
+msgid "Language"
+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/banknotes-codes.html.tmpl:191
+#: src/templates/banknotes-codes.html.tmpl:295
+msgid "Bank of Greece"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:76
+msgid "Taavi Torim"
+msgstr ""
+
+#: src/templates/language.html.tmpl:4
+msgid "Select Your Language"
+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/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 ""
+
+#. 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:43
+msgid "{Break:r}Hara 2"
+msgstr ""
+
+#: src/templates/coins-mintages.html.tmpl:93
+msgid "Commemorative Coins"
+msgstr ""
+
+#: src/templates/banknotes.html.tmpl:29
+msgid "Find out where your notes were printed!"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:11
+msgid "Printer Code"
+msgstr ""
+
+#: src/templates/-base.html.tmpl:37
+msgid "Feel free to contact us!"
+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/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/banknotes-codes.html.tmpl:235
+msgid "Bulgaria"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:4
+msgid "Austrian 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:9
+msgid "Jargon"
+msgstr ""
+
+#: src/templates/-base.html.tmpl:7
+msgid "Euro Cash"
+msgstr ""
+
+#. TRANSLATORS: As in ‘5 Euro Banknote’
+#: src/templates/coins-mintages.html.tmpl:4
+msgid "Euro Coin Mintages"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:24
+msgid "Casa de la Vall"
+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:94
+msgid "Mai Järmut, Villu Järmut"
+msgstr ""
+
+#: src/templates/banknotes.html.tmpl:19
+msgid "View the different Euro-note designs!"
+msgstr ""
+
+#: src/templates/coins-designs-de.html.tmpl:11
+msgid "German €0.10 coin"
+msgstr ""
+
+#: src/templates/coins-designs-de.html.tmpl:22
+msgid "Mintmark"
+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/-navbar.html.tmpl:17
+msgid "About"
+msgstr ""
+
+#: src/templates/banknotes.html.tmpl:36
+msgid "Test Notes"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:44
+msgid "Lembit Lõhmus"
+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: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/-base.html.tmpl:36
+msgid "Found a mistake or want to contribute missing information?"
+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:61
+msgid "Estonia"
+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/coins-designs-ee.html.tmpl:32
+msgid "Translation"
+msgstr "Översättning"
+
+#: src/templates/coins-designs-ee.html.tmpl:35
+msgid "Votes (%)"
+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/about.html.tmpl:38
+msgid "British- & American English"
+msgstr ""
+
+#: src/templates/-navbar.html.tmpl:14
+msgid "Discord"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:69
+msgid "Malta"
+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-at.html.tmpl:23
+msgid "Austrian €0.50 coin"
+msgstr ""
+
+#: src/templates/coins-designs-de.html.tmpl:27
+msgid "Berlin"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:116
+msgid "Jaarno Ester"
+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/banknotes-codes.html.tmpl:176
+#: src/templates/banknotes-codes.html.tmpl:270
+msgid "Central Bank of Ireland"
+msgstr ""
+
+#: src/templates/coins-mintages.html.tmpl:98
+msgid "Mintage"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:30
+msgid "Austrian €2 coin"
+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/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: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/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/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: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: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/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-de.html.tmpl:10
+msgid "German €0.01 coin"
+msgstr ""
+
+#: src/templates/coins-designs-de.html.tmpl:21
+msgid "City"
+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:125
+msgid "{Break:r}Nova"
+msgstr ""
+
+#: src/templates/banknotes.html.tmpl:39
+msgid "Learn about the special test notes!"
+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/coins-designs-ad.html.tmpl:42
+msgid "The arms of the Bishop of Urgell"
+msgstr ""
+
+#: src/templates/coins-designs-hr.html.tmpl:4
+msgid "Croatian Euro Coin Designs"
+msgstr ""
+
+#: src/templates/coins-designs-hr.html.tmpl:9
+msgid "Croatian €0.01 coin"
+msgstr ""
+
+#: src/templates/language.html.tmpl:8
+msgid "Select your preferred language to use on the site."
+msgstr ""
+
+#: src/templates/index.html.tmpl:10
+msgid "cash"
+msgstr ""
+
+#: src/templates/about.html.tmpl:24
+msgid "Translations"
+msgstr ""
+
+#: src/templates/coins-mintages.html.tmpl:97
+msgid "Commemorated Issue"
+msgstr ""
+
+#: src/templates/coins-designs-de.html.tmpl:43
+msgid "Hamburg"
+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 ""
+
+#: src/templates/coins-designs-ee.html.tmpl:33
+msgid "Author(s)"
+msgstr ""
+
+#: src/templates/index.html.tmpl:9
+msgid "diversity"
+msgstr ""
+
+#: src/templates/coins.html.tmpl:29
+msgid "View the mintage figures of all the Euro coins!"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:21
+msgid "All these images are taken from {Link:L}eurobilltracker.com{-:E}."
+msgstr ""
+
+#: src/templates/coins-designs-be.html.tmpl:4
+msgid "Belgian Euro Coin Designs"
+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-de.html.tmpl:12
+msgid "German €1 coin"
+msgstr ""
+
+#: src/templates/coins-designs-de.html.tmpl:35
+msgid "Stuttgart"
+msgstr ""
+
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:85
+msgid "{Break:r}Estonian"
+msgstr ""
+
+#: src/templates/coins.html.tmpl:36
+msgid "Varieties"
+msgstr ""
+
+#: src/templates/banknotes.html.tmpl:4
+msgid "Euro Banknotes"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:45
+msgid "The arms of the Viscounts of Béarn"
+msgstr ""
+
+#: src/templates/coins-designs-be.html.tmpl:17
+msgid "Belgian €1 coin (King Philippe)"
+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-designs-ee.html.tmpl:87
+msgid "Jaak Peep, Villem Valme"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:138
+msgid "Margus Kadarik"
+msgstr ""
+
+#: src/templates/coins-designs-hr.html.tmpl:10
+msgid "Croatian €0.50 coin"
+msgstr ""
+
+#: src/templates/language.html.tmpl:13
+msgid "Other Languages"
+msgstr ""
+
+#: src/templates/-404.html.tmpl:4
+msgid "Page Not Found"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:4
+#: src/templates/banknotes.html.tmpl:26
+msgid "Location Codes"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:19
+msgid "2002 Series Printer Codes"
+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:54
+#: src/templates/banknotes-codes.html.tmpl:133
+#: src/templates/banknotes-codes.html.tmpl:223
+msgid "Code"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:171
+#: src/templates/banknotes-codes.html.tmpl:265
+msgid "Bank of Italy"
+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 ""
+
+#: src/templates/about.html.tmpl:39
+msgid "Icelandic"
+msgstr ""
+
+#: src/templates/language.html.tmpl:11
+msgid "Eurozone Languages"
+msgstr ""
+
+#: src/templates/about.html.tmpl:7
+msgid "Open Source"
+msgstr ""
+
+#: src/templates/about.html.tmpl:18
+msgid "Special Thanks"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:186
+#: src/templates/banknotes-codes.html.tmpl:280
+msgid "Royal Mint of Spain"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:21
+msgid "Austrian €0.10 coin"
+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: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-codes.html.tmpl:46
+msgid "2002 Series"
+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/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/coins-mintages.html.tmpl:51
+msgid "Standard Issue Coins"
+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:4
+msgid "German Euro Coin Designs"
+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/banknotes.html.tmpl:16 src/templates/coins.html.tmpl:16
+msgid "Designs"
+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:181
+#: src/templates/banknotes-codes.html.tmpl:275
+msgid "Bank of France"
+msgstr ""
+
+#: src/templates/coins-mintages.html.tmpl:48
+msgid "Filter"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:4
+msgid "Estonian Euro Coin Designs"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:32
+msgid "Name"
+msgstr "Namn"
+
+#: src/templates/coins-designs-ee.html.tmpl:34
+msgid "Votes"
+msgstr ""
+
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:53
+msgid "{Break:r}Consistency"
+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: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/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/coins-designs-ad.html.tmpl:21
+msgid "€0.10, €0.20 and €0.50"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:29
+msgid "Austrian €1 coin"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:145
+msgid "Total"
+msgstr ""
+
+#: src/templates/coins-designs-hr.html.tmpl:13
+msgid "Croatian €1 coin"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:65
+msgid "Slovakia"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:77
+msgid "Slovenia"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:206
+#: src/templates/banknotes-codes.html.tmpl:300
+msgid "National Bank of Belgium"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:44
+msgid "The arms of Catalonia"
+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:74
+msgid "{Break:r}Tomson 5791"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:127
+msgid "Rene Haljasmäe"
+msgstr ""
+
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:136
+msgid "{Break:r}A Flower in the Rye"
+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/coins.html.tmpl:26
+msgid "Mintages"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:33
+msgid "Europa Series Printer Codes"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:216
+msgid "Europa Series"
+msgstr ""
+
+#: src/templates/coins-designs-de.html.tmpl:39
+msgid "Karlsruhe"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:65
+msgid "Jaan Meristo"
+msgstr ""
+
+#: src/templates/coins-designs-hr.html.tmpl:14
+msgid "Croatian €2 coin"
+msgstr ""
+
+#: src/templates/banknotes-codes.html.tmpl:290
+#: src/templates/coins-designs-de.html.tmpl:31
+msgid "Munich"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:8
+msgid "Andorran €0.01 coin"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:12
+msgid "Andorran €1 coin"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:13
+msgid "Austrian €0.01 coin"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:14
+msgid "Austrian €0.02 coin"
+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/banknotes-codes.html.tmpl:73
+msgid "Cyprus"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:9
+msgid "Andorran €0.50 coin"
+msgstr ""
+
+#: src/templates/coins-designs-ee.html.tmpl:55
+#: src/templates/coins-designs-ee.html.tmpl:105
+msgid "Tiit Jürna"
+msgstr ""
+
+#. TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’
+#: src/templates/coins-designs-ee.html.tmpl:103
+msgid "{Break:r}Bird Road"
+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/coins.html.tmpl:39
+msgid "View all the known Euro varieties!"
+msgstr ""
+
+#: src/templates/-navbar.html.tmpl:5
+msgid "News"
+msgstr ""
+
+#: src/templates/coins-mintages.html.tmpl:12
+msgid "Additional Notes"
+msgstr ""
+
+#: src/templates/coins-designs-at.html.tmpl:22
+msgid "Austrian €0.20 coin"
+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/coins-designs-ee.html.tmpl:63
+msgid "{Break:r}In the Body"
+msgstr ""
+
+#: src/templates/coins-designs-nl.html.tmpl:4
+msgid "Dutch Euro Coin Designs"
+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/index.html.tmpl:5
+msgid "The Euro Cash Wiki"
+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/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/coins-designs-ad.html.tmpl:13
+msgid "Andorran €2 coin"
+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/banknotes-codes.html.tmpl:93
+#: src/templates/banknotes-codes.html.tmpl:160
+#: src/templates/banknotes-codes.html.tmpl:254
+msgid "Netherlands"
+msgstr ""
+
+#: 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/coins-designs-ad.html.tmpl:4
+msgid "Andorran Euro Coin Designs"
+msgstr ""
+
+#: src/templates/coins-designs-ad.html.tmpl:22
+msgid "Andorra’s Romanesque art"
+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-ee.html.tmpl:31
+msgid "Position"
+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 ""
diff --git a/po/templates.pot b/po/templates.pot
deleted file mode 100644
index d5df61f..0000000
--- a/po/templates.pot
+++ /dev/null
@@ -1,540 +0,0 @@
-#: ./src/templates/coins-designs-ad.html.tmpl:28
-msgid "Andorra’s Romanesque art"
-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/coins.html.tmpl:26
-msgid "Mintages"
-msgstr ""
-
-#: ./src/templates/-404.html.tmpl:4
-msgid "Page Not Found"
-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/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/index.html.tmpl:10
-msgid "cash"
-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/language.html.tmpl:18
-msgid "Other Languages"
-msgstr ""
-
-#: ./src/templates/-navbar.html.tmpl:5
-msgid "News"
-msgstr ""
-
-#: ./src/templates/coins.html.tmpl:4
-msgid "Euro Coins"
-msgstr ""
-
-#: ./src/templates/banknotes.html.tmpl:39
-msgid "Learn about the special test notes!"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:186
-#: ./src/templates/banknotes-codes.html.tmpl:280
-msgid "Royal Mint of Spain"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:285
-msgid "Leipzig"
-msgstr ""
-
-#: ./src/templates/coins-designs-ad.html.tmpl:51
-msgid "The arms of the Viscounts of Béarn"
-msgstr ""
-
-#: ./src/templates/banknotes.html.tmpl:36
-msgid "Test Notes"
-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/banknotes-codes.html.tmpl:191
-#: ./src/templates/banknotes-codes.html.tmpl:295
-msgid "Bank of Greece"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:235
-msgid "Bulgaria"
-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/language.html.tmpl:4
-msgid "Select Your Language"
-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/coins.html.tmpl:36
-msgid "Varieties"
-msgstr ""
-
-#: ./src/templates/coins-designs-ad.html.tmpl:48
-msgid "The arms of the Bishop of Urgell"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:206
-#: ./src/templates/banknotes-codes.html.tmpl:300
-msgid "National Bank of Belgium"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:290
-msgid "Munich"
-msgstr ""
-
-#: ./src/templates/language.html.tmpl:8
-msgid "Select your preferred language to use on the site."
-msgstr ""
-
-#: ./src/templates/coins.html.tmpl:29
-msgid "View the mintage figures of all the Euro coins!"
-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/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/banknotes-codes.html.tmpl:69
-msgid "Malta"
-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/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/about.html.tmpl:7
-msgid "Open Source"
-msgstr ""
-
-#: ./src/templates/about.html.tmpl:24
-msgid "Translations"
-msgstr ""
-
-#: ./src/templates/coins-designs-at.html.tmpl:17
-msgid ""
-"\n"
-" The bronze coins feature the Alpine gentian, -edelweiss, and\n"
-" -primrose respectively, and were chosen to symbolize the role that\n"
-" Austria played in the development of EU environmental policy.\n"
-" "
-""
-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:61
-msgid "Estonia"
-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 ""
-
-#. TRANSLATORS: Beginning of sentence, as in ‘United in …’
-#: ./src/templates/index.html.tmpl:8
-msgid "United in"
-msgstr ""
-
-#: ./src/templates/about.html.tmpl:23
-msgid "Research"
-msgstr ""
-
-#: ./src/templates/coins-designs.html.tmpl:4
-msgid "Euro Coin Designs"
-msgstr ""
-
-#: ./src/templates/coins-designs-at.html.tmpl:29
-msgid ""
-"\n"
-" The €0.10 coin features St. Stephen’s Cathedral. It symbolises the\n"
-" Viennese Gothic architectural style dating to around the year 1160.\n"
-" The €0.20 coin features Belvedere Palace. This is an example of\n"
-" Baroque architecture and symbolises the national freedom and\n"
-" sovereignty of Austria. The final gold coin — the €0.50 coin —\n"
-" features the Secession Building: an exhibition hall in the Art\n"
-" Nouveau style.\n"
-" "
-""
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:21
-msgid "All these images are taken from {Link:L}eurobilltracker.com{-:E}."
-msgstr ""
-
-#: ./src/templates/coins-designs-at.html.tmpl:12
-msgid "Austrian 1 euro cent coin"
-msgstr ""
-
-#: ./src/templates/-navbar.html.tmpl:6
-msgid "Coin Collecting"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:55
-#: ./src/templates/banknotes-codes.html.tmpl:134
-#: ./src/templates/banknotes-codes.html.tmpl:224
-msgid "Country"
-msgstr ""
-
-#: ./src/templates/language.html.tmpl:16
-msgid "Eurozone Languages"
-msgstr ""
-
-#: ./src/templates/coins-designs-ad.html.tmpl:53
-msgid "The bottom of the coat of arms has the motto ‘{LatinStart:r}VIRTVS VNITA FORTIOR{LatinEnd:r}’ (‘UNITED VIRTUE IS STRONGER’)."
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:11
-msgid "Printer Code"
-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-ad.html.tmpl:33
-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/banknotes-codes.html.tmpl:33
-msgid "Europa Series Printer Codes"
-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/coins-designs-at.html.tmpl:13
-msgid "Austrian 2 euro cent coin"
-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/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/about.html.tmpl:18
-msgid "Special Thanks"
-msgstr ""
-
-#: ./src/templates/-base.html.tmpl:37
-msgid "Feel free to contact us!"
-msgstr ""
-
-#: ./src/templates/coins-designs-ad.html.tmpl:20
-#: ./src/templates/coins-designs-ad.html.tmpl:25
-msgid "{1:m}, {2:m} and {3:m}"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:77
-msgid "Slovenia"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:216
-msgid "Europa Series"
-msgstr ""
-
-#: ./src/templates/-navbar.html.tmpl:14
-msgid "Discord"
-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/-base.html.tmpl:36
-msgid "Found a mistake or want to contribute missing information?"
-msgstr ""
-
-#: ./src/templates/coins-designs-ad.html.tmpl:4
-msgid "Andorran Euro Coin Designs"
-msgstr ""
-
-#: ./src/templates/index.html.tmpl:9
-msgid "diversity"
-msgstr ""
-
-#: ./src/templates/about.html.tmpl:38
-msgid "British- & American English"
-msgstr ""
-
-#: ./src/templates/coins.html.tmpl:19
-msgid "View the 600+ different Euro-coin designs!"
-msgstr ""
-
-#: ./src/templates/-navbar.html.tmpl:8
-msgid "Banknotes"
-msgstr ""
-
-#: ./src/templates/coins-designs-ad.html.tmpl:43
-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/banknotes-codes.html.tmpl:121
-#: ./src/templates/banknotes-codes.html.tmpl:205
-#: ./src/templates/banknotes-codes.html.tmpl:299
-msgid "Belgium"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:165
-msgid "United Kingdom"
-msgstr ""
-
-#: ./src/templates/-base.html.tmpl:7
-msgid "Euro Cash"
-msgstr ""
-
-#: ./src/templates/index.html.tmpl:5
-msgid "The Euro Cash Wiki"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:19
-msgid "2002 Series Printer Codes"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:65
-msgid "Slovakia"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:73
-msgid "Cyprus"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:176
-#: ./src/templates/banknotes-codes.html.tmpl:270
-msgid "Central Bank of Ireland"
-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:46
-msgid "2002 Series"
-msgstr ""
-
-#: ./src/templates/about.html.tmpl:4
-msgid "About Us"
-msgstr ""
-
-#: ./src/templates/about.html.tmpl:39
-msgid "Icelandic"
-msgstr ""
-
-#: ./src/templates/-navbar.html.tmpl:4
-msgid "Home"
-msgstr ""
-
-#: ./src/templates/-navbar.html.tmpl:58
-msgid "Language"
-msgstr ""
-
-#: ./src/templates/banknotes.html.tmpl:4
-msgid "Euro Banknotes"
-msgstr ""
-
-#: ./src/templates/coins.html.tmpl:39
-msgid "View all the known Euro varieties!"
-msgstr ""
-
-#: ./src/templates/-navbar.html.tmpl:9
-msgid "Jargon"
-msgstr ""
-
-#: ./src/templates/banknotes.html.tmpl:29
-msgid "Find out where your notes were printed!"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:135
-#: ./src/templates/banknotes-codes.html.tmpl:225
-msgid "Printer"
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:181
-#: ./src/templates/banknotes-codes.html.tmpl:275
-msgid "Bank of France"
-msgstr ""
-
-#: ./src/templates/-navbar.html.tmpl:17
-msgid "About"
-msgstr ""
-
-#: ./src/templates/coins-designs-ad.html.tmpl:40
-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 ""
-
-#: ./src/templates/coins-designs-ad.html.tmpl:46
-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/banknotes-codes.html.tmpl:81
-#: ./src/templates/banknotes-codes.html.tmpl:141
-msgid "Finland"
-msgstr ""
-
-#: ./src/templates/coins-designs-at.html.tmpl:44
-msgid ""
-"\n"
-" The two bimetallic coins feature the busts of the musical composer\n"
-" Wolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist\n"
-" and Nobel Peace Prize winner Bertha von Suttner.\n"
-" "
-""
-msgstr ""
-
-#: ./src/templates/banknotes-codes.html.tmpl:4
-#: ./src/templates/banknotes.html.tmpl:26
-msgid "Location Codes"
-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/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 ""
-
-#. TRANSLATORS: As in ‘Development of the site’
-#: ./src/templates/about.html.tmpl:22
-msgid "Development"
-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/coins-designs-at.html.tmpl:4
-msgid "Austrian Euro Coin Designs"
-msgstr ""
-
-#: ./src/templates/coins-designs-ad.html.tmpl:49
-msgid "The arms of the Count of Foix"
-msgstr ""
-
-#: ./src/templates/coins-designs-ad.html.tmpl:50
-msgid "The arms of Catalonia"
-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/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/coins-designs-ad.html.tmpl:23
-msgid "Andorran landscapes, nature, fauna and flora"
-msgstr ""
-
-#: ./src/templates/coins-designs-ad.html.tmpl:30
-msgid "Casa de la Vall"
-msgstr ""
-
-#: ./src/templates/coins-designs-at.html.tmpl:14
-msgid "Austrian 5 euro cent coin"
-msgstr ""
-
-#: ./src/templates/coins-designs-ad.html.tmpl:36
-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/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/about.html.tmpl:13
-msgid "Contact Us"
-msgstr ""
-
-#: ./src/templates/-navbar.html.tmpl:7
-msgid "Coins"
-msgstr ""
-
-#: ./src/templates/banknotes.html.tmpl:19
-msgid "View the different Euro-note designs!"
-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/-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/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/banknotes-codes.html.tmpl:171
-#: ./src/templates/banknotes-codes.html.tmpl:265
-msgid "Bank of Italy"
-msgstr ""
-
-#: ./src/templates/banknotes.html.tmpl:16
-#: ./src/templates/coins.html.tmpl:16
-msgid "Designs"
-msgstr ""
-
diff --git a/src/i18n/i18n.go b/src/i18n/i18n.go
index 1258a27..cf82630 100644
--- a/src/i18n/i18n.go
+++ b/src/i18n/i18n.go
@@ -254,7 +254,7 @@ var (
Name: "Svenska",
DateFormat: "2006-01-02",
Eurozone: true,
- Enabled: false,
+ Enabled: true,
GroupSeparator: ' ',
DecimalSeparator: ',',
MonetaryPre: [2]string{"", "-"},
@@ -304,7 +304,9 @@ func Init() {
if !li.Enabled {
continue
}
- Printers[li.Bcp] = Printer{li, gotext.NewLocale("po", li.Bcp)}
+ gl := gotext.NewLocale("po", li.Bcp)
+ gl.AddDomain("messages")
+ Printers[li.Bcp] = Printer{li, gl}
}
DefaultPrinter = Printers["en"]
@@ -327,10 +329,35 @@ func (l LocaleInfo) Language() string {
return l.Bcp[:2]
}
+func (p Printer) Itoa(n int) string {
+ var bob strings.Builder
+ writeInt(&bob, n, p.LocaleInfo)
+ return bob.String()
+}
+
+func (p Printer) Ftoa(n float64) string {
+ var bob strings.Builder
+ writeFloat(&bob, n, p.LocaleInfo)
+ return bob.String()
+}
+
+func (p Printer) Mitoa(n int) string {
+ var bob strings.Builder
+ sprintfm(p.LocaleInfo, &bob, n)
+ return bob.String()
+}
+
+func (p Printer) Mftoa(n float64) string {
+ var bob strings.Builder
+ sprintfm(p.LocaleInfo, &bob, n)
+ return bob.String()
+}
+
func (p Printer) Sprintf(format string, args ...map[string]any) string {
var bob strings.Builder
vars := map[string]any{
"-": "a",
+ "Null": "",
}
for _, arg := range args {
maps.Copy(vars, arg)
@@ -397,9 +424,9 @@ func sprintfGeneric(li LocaleInfo, bob *strings.Builder, v any) error {
case time.Time:
htmlesc(bob, v.(time.Time).Format(li.DateFormat))
case int:
- writeInt(bob, v.(int), li.GroupSeparator)
+ writeInt(bob, v.(int), li)
case float64:
- writeFloat(bob, v.(float64), li.GroupSeparator, li.DecimalSeparator)
+ writeFloat(bob, v.(float64), li)
case string:
htmlesc(bob, v.(string))
default:
@@ -461,12 +488,12 @@ func sprintfm(li LocaleInfo, bob *strings.Builder, v any) error {
case int:
n := v.(int)
htmlesc(bob, li.MonetaryPre[btoi(n >= 0)])
- writeInt(bob, abs(n), li.GroupSeparator)
+ writeInt(bob, abs(n), li)
htmlesc(bob, li.MonetaryPost)
case float64:
n := v.(float64)
htmlesc(bob, li.MonetaryPre[btoi(n >= 0)])
- writeFloat(bob, abs(n), li.GroupSeparator, li.DecimalSeparator)
+ writeFloat(bob, abs(n), li)
htmlesc(bob, li.MonetaryPost)
default:
return errors.New("TODO")
@@ -483,7 +510,7 @@ func sprintfr(li LocaleInfo, bob *strings.Builder, v any) error {
return nil
}
-func writeInt(bob *strings.Builder, num int, sep rune) {
+func writeInt(bob *strings.Builder, num int, li LocaleInfo) {
s := fmt.Sprintf("%d", num)
if s[0] == '-' {
bob.WriteByte('-')
@@ -498,13 +525,13 @@ func writeInt(bob *strings.Builder, num int, sep rune) {
c++
bob.WriteByte(s[i])
if c == 3 && i+1 < n {
- bob.WriteRune(sep)
+ bob.WriteRune(li.GroupSeparator)
c = 0
}
}
}
-func writeFloat(bob *strings.Builder, num float64, tsep, dsep rune) {
+func writeFloat(bob *strings.Builder, num float64, li LocaleInfo) {
s := fmt.Sprintf("%.2f", num)
if s[0] == '-' {
bob.WriteByte('-')
@@ -520,12 +547,12 @@ func writeFloat(bob *strings.Builder, num float64, tsep, dsep rune) {
c++
bob.WriteByte(s[i])
if c == 3 && i+1 < n {
- bob.WriteRune(tsep)
+ bob.WriteRune(li.GroupSeparator)
c = 0
}
}
- bob.WriteRune(dsep)
+ bob.WriteRune(li.DecimalSeparator)
bob.WriteString(s[n+1:])
}
diff --git a/src/templates/coins-designs-ee.html.tmpl b/src/templates/coins-designs-ee.html.tmpl
index 0624931..a6a62e9 100644
--- a/src/templates/coins-designs-ee.html.tmpl
+++ b/src/templates/coins-designs-ee.html.tmpl
@@ -1,18 +1,155 @@
{{ define "content" }}
<header>
{{ template "navbar" . }}
- <h1>{{ .Get "German Euro Coin Designs" }}</h1>
+ <h1>{{ .Get "Estonian Euro Coin Designs" }}</h1>
</header>
<main>
- <p>
- {{ .Get "The Estonian euro coins all feature the same design across all eight denominations. The country’s outline is displayed above the text “EESTI”, the country’s name in its own language." }}
- </p>
- <div class="design-container">
- <img
+ <div class="design-container">
+ <img
alt="{{ .Get `Estonian €1 coin` }}"
src="/designs/ee-100-1.avif"
>
- </div>
-</main>
-{{ end }}
+ </div>
+ <p>
+ {{ .Get "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}’)."
+ (map "EstonianStart" `<span lang="et"><em>` "EstonianEnd" "em,span") }}
+ </p>
+ <p>
+ {{ .Get "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."
+ (map "EVLink" "https://en.wikipedia.org/wiki/Eurovision_Song_Contest" ) }}
+ </p>
+ <p>
+ {{ .Get "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%)." }}
+ </p>
+ <p>
+ {{ .Get "The winner of the contest was awarded 50,000 KR (€3,196) while the other finalists were each awarded 20,000 KR (€1,278)." }}
+ </p>
+
+ <!-- TODO: Add images of the other designs: https://web.archive.org/web/20070704210956/http://www.eestipank.info/pub/et/majandus/euroopaliit/euro/kavand/_1kava.html -->
+ <!-- Good description of one of the designs: http://www.worldofcoins.eu/forum/index.php/topic,21902.15.html?PHPSESSID=pc4qnnd3ng4etv8fp75u41erb1 -->
+ <table>
+ <thead>
+ <tr>
+ <th data-numeric style="width: 1%">{{ .Get "Position" }}</th>
+ <th>{{ .Get "Name" }}<br>{{ .Get "Translation" }}</th>
+ <th>{{ .Get "Author(s)" }}</th>
+ <th data-numeric>{{ .Get "Votes" }}</th>
+ <th data-numeric>{{ .Get "Votes (%)" }}</th>
+ </tr>
+ </thead>
+ <tbody>
+ {{ $args := (map "Break" "<br>") }}
+ <tr>
+ <td data-numeric>1</td>
+ {{/* 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. */}}
+ <td>Hara 2{{ .Get "{Break:r}Hara 2" $args }}</td>
+ <td>{{ .Get "Lembit Lõhmus" }}</td>
+ <td data-numeric>{{ .Printer.Itoa 12482 }}</td>
+ <td data-numeric>{{ .Printer.Ftoa 27.46 }}</td>
+ </tr>
+ <tr>
+ <td data-numeric>2</td>
+ <td>
+ <span lang="et">Järjepidevus</span>
+ {{/* TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’ */}}
+ {{ .Get "{Break:r}Consistency" $args }}
+ </td>
+ <td>{{ .Get "Tiit Jürna" }}</td>
+ <td data-numeric>{{ .Printer.Itoa 7477 }}</td>
+ <td data-numeric>{{ .Printer.Ftoa 16.45 }}</td>
+ </tr>
+ <tr>
+ <td data-numeric>3</td>
+ <td>
+ <span lang="la">In corpore</span>
+ {{ .Get "{Break:r}In the Body" $args }}
+ </td>
+ <td>{{ .Get "Jaan Meristo" }}</td>
+ <td data-numeric>{{ .Printer.Itoa 7284 }}</td>
+ <td data-numeric>{{ .Printer.Ftoa 16.03 }}</td>
+ </tr>
+ <tr>
+ <td data-numeric>4</td>
+ <td>
+ Tomson 5791
+ {{/* TRANSLATORS: This name. If you’re translating for a latin-script language, translate this to ‘{Null}’, otherwise transliterate this into your respective alphabet. */}}
+ {{ .Get "{Break:r}Tomson 5791" $args }}
+ </td>
+ <td>{{ .Get "Taavi Torim" }}</td>
+ <td data-numeric>{{ .Printer.Itoa 6219 }}</td>
+ <td data-numeric>{{ .Printer.Ftoa 13.68 }}</td>
+ </tr>
+ <tr>
+ <td data-numeric>5</td>
+ <td>
+ <span lang="et">Eesti keel</span>
+ {{/* TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’ */}}
+ {{ .Get "{Break:r}Estonian" $args }}
+ </td>
+ <td>{{ .Get "Jaak Peep, Villem Valme" }}</td>
+ <td data-numeric>{{ .Printer.Itoa 5997 }}</td>
+ <td data-numeric>{{ .Printer.Ftoa 13.19 }}</td>
+ </tr>
+ <tr>
+ <td data-numeric>6</td>
+ <td>261948</td>
+ <td>{{ .Get "Mai Järmut, Villu Järmut" }}</td>
+ <td data-numeric>{{ .Printer.Itoa 3036 }}</td>
+ <td data-numeric>{{ .Printer.Ftoa 6.68 }}</td>
+ </tr>
+ <tr>
+ <td data-numeric>7</td>
+ <td>
+ <span lang="et">Linnutee</span>
+ {{/* TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’ */}}
+ {{ .Get "{Break:r}Bird Road" $args }}
+ </td>
+ <td>{{ .Get "Tiit Jürna" }}</td>
+ <td data-numeric>{{ .Printer.Itoa 1323 }}</td>
+ <td data-numeric>{{ .Printer.Ftoa 2.91 }}</td>
+ </tr>
+ <tr>
+ <td data-numeric>8</td>
+ <td>
+ <span lang="et">Leopardid-2</span>
+ {{/* TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’ */}}
+ {{ .Get "{Break:r}Leopards-2" $args }}
+ </td>
+ <td>{{ .Get "Jaarno Ester" }}</td>
+ <td data-numeric>{{ .Printer.Itoa 759 }}</td>
+ <td data-numeric>{{ .Printer.Ftoa 1.67 }}</td>
+ </tr>
+ <tr>
+ <td data-numeric>9</td>
+ <td>
+ Nova
+ {{/* TRANSLATORS: This name. If you’re translating for a latin-script language, translate this to ‘{Null}’, otherwise transliterate this into your respective alphabet. */}}
+ {{ .Get "{Break:r}Nova" $args }}
+ </td>
+ <td>{{ .Get "Rene Haljasmäe" }}</td>
+ <td data-numeric>{{ .Printer.Itoa 498 }}</td>
+ <td data-numeric>{{ .Printer.Ftoa 1.1 }}</td>
+ </tr>
+ <tr>
+ <td data-numeric>10</td>
+ <td>
+ <span lang="et">Lill rukkis</span>
+ {{/* TRANSLATORS: Estonian translators should replace the entire translation with ‘{Null}’ */}}
+ {{ .Get "{Break:r}A Flower in the Rye" $args }}
+ </td>
+ <td>{{ .Get "Margus Kadarik" }}</td>
+ <td data-numeric>{{ .Printer.Itoa 378 }}</td>
+ <td data-numeric>{{ .Printer.Ftoa 0.83 }}</td>
+ </tr>
+ </tbody>
+ <tfoot>
+ <tr>
+ <th colspan="3">{{ .Get "Total" }}</th>
+ <th data-numeric>{{ .Printer.Itoa 45453 }}</th>
+ <th data-numeric>{{ .Printer.Ftoa 100.0 }}</th>
+ </tr>
+ </tfoot>
+ </table>
+</main>
+{{ end }} \ No newline at end of file
diff --git a/static/style.css b/static/style.css
index 8d8bc5b..45533e3 100644
--- a/static/style.css
+++ b/static/style.css
@@ -2197,6 +2197,10 @@ textarea,
fill: var(--primary);
}
+:is(td, th)[data-numeric] {
+ text-align: right;
+}
+
#article-list td:first-child {
text-align: right;
width: 14ch;