aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/app.go18
-rw-r--r--src/countries.go88
-rw-r--r--src/dbx/db.go144
-rw-r--r--src/dbx/mintages.go212
-rw-r--r--src/dbx/sql/000-genesis.sql42
-rw-r--r--src/dbx/sql/last.sql157
-rw-r--r--src/dbx/users.go69
-rw-r--r--src/email/email.go14
-rw-r--r--src/http.go138
-rw-r--r--src/i18n.go280
-rwxr-xr-xsrc/i18n/gen.py172
-rw-r--r--src/i18n/i18n.go428
-rw-r--r--src/i18n/locales.gen.go257
-rw-r--r--src/mintage/parser.go297
-rw-r--r--src/mintage/parser_test.go233
-rw-r--r--src/rosetta/bg/messages.gotext.json1310
-rw-r--r--src/rosetta/el/messages.gotext.json1310
-rw-r--r--src/rosetta/en/messages.gotext.json1832
-rw-r--r--src/rosetta/nl/messages.gotext.json1310
-rw-r--r--src/tables.go108
-rw-r--r--src/templates.go233
-rw-r--r--src/templates/-404.html.tmpl20
-rw-r--r--src/templates/-base.html.tmpl60
-rw-r--r--src/templates/-error.html.tmpl20
-rw-r--r--src/templates/-navbar.html.tmpl65
-rw-r--r--src/templates/about.html.tmpl64
-rw-r--r--src/templates/banknotes-codes.html.tmpl520
-rw-r--r--src/templates/banknotes.html.tmpl52
-rw-r--r--src/templates/coins-designs-ad.html.tmpl101
-rw-r--r--src/templates/coins-designs-at.html.tmpl59
-rw-r--r--src/templates/coins-designs-be.html.tmpl82
-rw-r--r--src/templates/coins-designs-de.html.tmpl68
-rw-r--r--src/templates/coins-designs-ee.html.tmpl192
-rw-r--r--src/templates/coins-designs-hr.html.tmpl83
-rw-r--r--src/templates/coins-designs-nl.html.tmpl60
-rw-r--r--src/templates/coins-designs.html.tmpl48
-rw-r--r--src/templates/coins-mintages.html.tmpl390
-rw-r--r--src/templates/coins.html.tmpl85
-rw-r--r--src/templates/collecting-crh.html.tmpl1075
-rw-r--r--src/templates/collecting-storage.html.tmpl6
-rw-r--r--src/templates/collecting-vending.html.tmpl4
-rw-r--r--src/templates/collecting.html.tmpl121
-rw-r--r--src/templates/index.html.tmpl29
-rw-r--r--src/templates/jargon.html.tmpl128
-rw-r--r--src/templates/language.html.tmpl130
-rw-r--r--src/wikipedia/api.go17
-rw-r--r--src/wikipedia/links.gen.go13
-rw-r--r--src/wikipedia/wikipedia.go99
48 files changed, 4267 insertions, 7976 deletions
diff --git a/src/app.go b/src/app.go
new file mode 100644
index 0000000..944b3b6
--- /dev/null
+++ b/src/app.go
@@ -0,0 +1,18 @@
+package app
+
+import (
+ "os"
+ "syscall"
+
+ "git.thomasvoss.com/euro-cash.eu/pkg/atexit"
+ . "git.thomasvoss.com/euro-cash.eu/pkg/try"
+)
+
+var Debugp bool
+
+func Restart() {
+ path := Try2(os.Executable())
+ atexit.Exec()
+ Try(syscall.Exec(path, append([]string{path}, os.Args[1:]...),
+ os.Environ()))
+}
diff --git a/src/countries.go b/src/countries.go
index b8a27bd..d168266 100644
--- a/src/countries.go
+++ b/src/countries.go
@@ -1,45 +1,77 @@
-package src
+package app
import (
"slices"
"golang.org/x/text/collate"
"golang.org/x/text/language"
+
+ "git.thomasvoss.com/euro-cash.eu/src/i18n"
)
type country struct {
Code, Name string
}
-func sortedCountries(p Printer) []country {
- /* TODO: Add Kosovo and Montenegro */
+var countryCodeToName = map[string]string{
+ "ad": "Andorra",
+ "at": "Austria",
+ "be": "Belgium",
+ /* TODO(2026): Add Bulgaria */
+ /* "bg": "Bulgaria", */
+ "cy": "Cyprus",
+ "de": "Germany",
+ "ee": "Estonia",
+ "es": "Spain",
+ "fi": "Finland",
+ "fr": "France",
+ "gr": "Greece",
+ "hr": "Croatia",
+ "ie": "Ireland",
+ "it": "Italy",
+ "lt": "Lithuania",
+ "lu": "Luxembourg",
+ "lv": "Latvia",
+ "mc": "Monaco",
+ "mt": "Malta",
+ "nl": "Netherlands",
+ "pt": "Portugal",
+ "si": "Slovenia",
+ "sk": "Slovakia",
+ "sm": "San Marino",
+ "va": "Vatican City",
+}
+
+func sortedCountries(p i18n.Printer) []country {
xs := []country{
- {Code: "ad", Name: p.T("Andorra")},
- {Code: "at", Name: p.T("Austria")},
- {Code: "be", Name: p.T("Belgium")},
- {Code: "cy", Name: p.T("Cyprus")},
- {Code: "de", Name: p.T("Germany")},
- {Code: "ee", Name: p.T("Estonia")},
- {Code: "es", Name: p.T("Spain")},
- {Code: "fi", Name: p.T("Finland")},
- {Code: "fr", Name: p.T("France")},
- {Code: "gr", Name: p.T("Greece")},
- {Code: "hr", Name: p.T("Croatia")},
- {Code: "ie", Name: p.T("Ireland")},
- {Code: "it", Name: p.T("Italy")},
- {Code: "lt", Name: p.T("Lithuania")},
- {Code: "lu", Name: p.T("Luxembourg")},
- {Code: "lv", Name: p.T("Latvia")},
- {Code: "mc", Name: p.T("Monaco")},
- {Code: "mt", Name: p.T("Malta")},
- {Code: "nl", Name: p.T("Netherlands")},
- {Code: "pt", Name: p.T("Portugal")},
- {Code: "si", Name: p.T("Slovenia")},
- {Code: "sk", Name: p.T("Slovakia")},
- {Code: "sm", Name: p.T("San Marino")},
- {Code: "va", Name: p.T("Vatican City")},
+ {Code: "ad", Name: p.GetC("Andorra", "Place Name")},
+ {Code: "at", Name: p.GetC("Austria", "Place Name")},
+ {Code: "be", Name: p.GetC("Belgium", "Place Name")},
+ /* TODO(2026): Add Bulgaria */
+ /* {Code: "bg", Name: p.GetC("Bulgaria", "Place Name")}, */
+ {Code: "cy", Name: p.GetC("Cyprus", "Place Name")},
+ {Code: "de", Name: p.GetC("Germany", "Place Name")},
+ {Code: "ee", Name: p.GetC("Estonia", "Place Name")},
+ {Code: "es", Name: p.GetC("Spain", "Place Name")},
+ {Code: "fi", Name: p.GetC("Finland", "Place Name")},
+ {Code: "fr", Name: p.GetC("France", "Place Name")},
+ {Code: "gr", Name: p.GetC("Greece", "Place Name")},
+ {Code: "hr", Name: p.GetC("Croatia", "Place Name")},
+ {Code: "ie", Name: p.GetC("Ireland", "Place Name")},
+ {Code: "it", Name: p.GetC("Italy", "Place Name")},
+ {Code: "lt", Name: p.GetC("Lithuania", "Place Name")},
+ {Code: "lu", Name: p.GetC("Luxembourg", "Place Name")},
+ {Code: "lv", Name: p.GetC("Latvia", "Place Name")},
+ {Code: "mc", Name: p.GetC("Monaco", "Place Name")},
+ {Code: "mt", Name: p.GetC("Malta", "Place Name")},
+ {Code: "nl", Name: p.GetC("Netherlands", "Place Name")},
+ {Code: "pt", Name: p.GetC("Portugal", "Place Name")},
+ {Code: "si", Name: p.GetC("Slovenia", "Place Name")},
+ {Code: "sk", Name: p.GetC("Slovakia", "Place Name")},
+ {Code: "sm", Name: p.GetC("San Marino", "Place Name")},
+ {Code: "va", Name: p.GetC("Vatican City", "Place Name")},
}
- c := collate.New(language.MustParse(p.Locale.Bcp))
+ c := collate.New(language.MustParse(p.Bcp))
slices.SortFunc(xs, func(x, y country) int {
return c.CompareString(x.Name, y.Name)
})
diff --git a/src/dbx/db.go b/src/dbx/db.go
new file mode 100644
index 0000000..5ee3782
--- /dev/null
+++ b/src/dbx/db.go
@@ -0,0 +1,144 @@
+package dbx
+
+import (
+ "context"
+ "fmt"
+ "io/fs"
+ "log"
+ "sort"
+
+ "git.thomasvoss.com/euro-cash.eu/pkg/atexit"
+ . "git.thomasvoss.com/euro-cash.eu/pkg/try"
+ "github.com/jmoiron/sqlx"
+ "github.com/mattn/go-sqlite3"
+)
+
+var (
+ db *sqlx.DB
+ DBName string
+)
+
+func Init(sqlDir fs.FS) {
+ db = sqlx.MustConnect("sqlite3", DBName)
+ atexit.Register(Close)
+
+ conn := Try2(db.Conn(context.Background()))
+ Try(conn.Raw(func(driverConn any) error {
+ return driverConn.(*sqlite3.SQLiteConn).RegisterFunc("C_",
+ func(s, _ string) string {
+ return s
+ }, true)
+ }))
+ conn.Close()
+
+ Try(applyMigrations(sqlDir))
+
+ /* TODO: Remove debug code */
+ /* Try(CreateUser(User{
+ Email: "mail@thomasvoss.com",
+ Username: "Thomas",
+ Password: "69",
+ AdminP: true,
+ }))
+ Try(CreateUser(User{
+ Email: "foo@BAR.baz",
+ Username: "Foobar",
+ Password: "420",
+ AdminP: false,
+ }))
+ Try2(GetMintages("ad", TypeCirc)) */
+}
+
+func Close() {
+ db.Close()
+}
+
+func applyMigrations(dir fs.FS) error {
+ var latest int
+ migratedp := true
+
+ err := db.QueryRow("SELECT latest FROM migration").Scan(&latest)
+ if err != nil {
+ e, ok := err.(sqlite3.Error)
+ /* IDK if there is a better way to do this… lol */
+ if ok && e.Error() == "no such table: migration" {
+ migratedp = false
+ } else {
+ return err
+ }
+ }
+
+ if !migratedp {
+ latest = -1
+ }
+
+ files, err := fs.ReadDir(dir, ".")
+ if err != nil {
+ return err
+ }
+
+ var (
+ last string
+ scripts []string
+ )
+
+ for _, f := range files {
+ if n := f.Name(); n == "last.sql" {
+ last = n
+ } else {
+ scripts = append(scripts, f.Name())
+ }
+ }
+
+ sort.Strings(scripts)
+ for _, f := range scripts[latest+1:] {
+ qry, err := fs.ReadFile(dir, f)
+ if err != nil {
+ return err
+ }
+
+ tx, err := db.Begin()
+ if err != nil {
+ return err
+ }
+
+ var n int
+ if _, err = fmt.Sscanf(f, "%d", &n); err != nil {
+ goto error
+ }
+
+ if _, err = tx.Exec(string(qry)); err != nil {
+ err = fmt.Errorf("error in ‘%s’: %w", f, err)
+ goto error
+ }
+
+ _, err = tx.Exec("UPDATE migration SET latest = ? WHERE id = 1", n)
+ if err != nil {
+ goto error
+ }
+
+ if err = tx.Commit(); err != nil {
+ goto error
+ }
+
+ log.Printf("Applied database migration ‘%s’\n", f)
+ continue
+
+ error:
+ tx.Rollback()
+ return err
+ }
+
+ if last != "" {
+ qry, err := fs.ReadFile(dir, last)
+ if err != nil {
+ return err
+ }
+ if _, err := db.Exec(string(qry)); err != nil {
+ return fmt.Errorf("error in ‘%s’: %w", last, err)
+ }
+ log.Printf("Ran ‘%s’\n", last)
+ }
+
+ return nil
+}
diff --git a/src/dbx/mintages.go b/src/dbx/mintages.go
new file mode 100644
index 0000000..2223eff
--- /dev/null
+++ b/src/dbx/mintages.go
@@ -0,0 +1,212 @@
+package dbx
+
+import (
+ "context"
+ "database/sql"
+ "slices"
+)
+
+type CountryMintageData struct {
+ Standard []MSCountryRow
+ Commemorative []MCommemorative
+}
+
+type YearMintageData struct {
+ Standard []MSYearRow
+ Commemorative []MCommemorative
+}
+
+type msRow struct {
+ Country string
+ Type MintageType
+ Year int
+ Denomination float64
+ Mintmark sql.Null[string]
+ Mintage sql.Null[int]
+ Reference sql.Null[string]
+}
+
+type MSCountryRow struct {
+ Year int
+ Mintmark sql.Null[string]
+ Mintages [ndenoms]sql.Null[int]
+ References [ndenoms]sql.Null[string]
+}
+
+type MSYearRow struct {
+ Country string
+ Mintmark sql.Null[string]
+ Mintages [ndenoms]sql.Null[int]
+ References [ndenoms]sql.Null[string]
+}
+
+type MCommemorative struct {
+ Country string
+ Type MintageType
+ Year int
+ Name string
+ Number int
+ Mintmark sql.Null[string]
+ Mintage sql.Null[int]
+ Reference sql.Null[string]
+}
+
+type MintageType int
+
+/* DO NOT REORDER! */
+const (
+ TypeCirc MintageType = iota
+ TypeNifc
+ TypeProof
+)
+
+const ndenoms = 8
+
+func NewMintageType(s string) MintageType {
+ switch s {
+ case "circ":
+ return TypeCirc
+ case "nifc":
+ return TypeNifc
+ case "proof":
+ return TypeProof
+ }
+ /* We can get here if the user sends a request manually, so just
+ fallback to this */
+ return TypeCirc
+}
+
+func GetMintagesByYear(year int, typ MintageType) (YearMintageData, error) {
+ var (
+ zero YearMintageData
+ xs []MSYearRow
+ ys []MCommemorative
+ )
+
+ rs, err := db.QueryxContext(context.TODO(), `
+ SELECT * FROM mintages_s
+ WHERE year = ? AND type = ?
+ ORDER BY country, mintmark, denomination
+ `, year, typ)
+ if err != nil {
+ return zero, err
+ }
+
+ for rs.Next() {
+ var x msRow
+ if err = rs.StructScan(&x); err != nil {
+ return zero, err
+ }
+
+ loop:
+ msr := MSYearRow{
+ Country: x.Country,
+ Mintmark: x.Mintmark,
+ }
+ i := denomToIdx(x.Denomination)
+ msr.Mintages[i] = x.Mintage
+ msr.References[i] = x.Reference
+
+ for rs.Next() {
+ var y msRow
+ if err = rs.StructScan(&y); err != nil {
+ return zero, err
+ }
+
+ if x.Country != y.Country || x.Mintmark != y.Mintmark {
+ x = y
+ xs = append(xs, msr)
+ goto loop
+ }
+
+ i = denomToIdx(y.Denomination)
+ msr.Mintages[i] = y.Mintage
+ msr.References[i] = y.Reference
+ }
+
+ xs = append(xs, msr)
+ }
+
+ if err = rs.Err(); err != nil {
+ return zero, err
+ }
+
+ db.SelectContext(context.TODO(), &ys, `
+ SELECT * FROM mintages_c
+ WHERE year = ? and type = ?
+ ORDER BY country, mintmark, number
+ `, year, typ)
+
+ return YearMintageData{xs, ys}, nil
+}
+
+func GetMintagesByCountry(country string, typ MintageType) (CountryMintageData, error) {
+ var (
+ zero CountryMintageData
+ xs []MSCountryRow
+ ys []MCommemorative
+ )
+
+ rs, err := db.QueryxContext(context.TODO(), `
+ SELECT * FROM mintages_s
+ WHERE country = ? AND type = ?
+ ORDER BY year, mintmark, denomination
+ `, country, typ)
+ if err != nil {
+ return zero, err
+ }
+
+ for rs.Next() {
+ var x msRow
+ if err = rs.StructScan(&x); err != nil {
+ return zero, err
+ }
+
+ loop:
+ msr := MSCountryRow{
+ Year: x.Year,
+ Mintmark: x.Mintmark,
+ }
+ i := denomToIdx(x.Denomination)
+ msr.Mintages[i] = x.Mintage
+ msr.References[i] = x.Reference
+
+ for rs.Next() {
+ var y msRow
+ if err = rs.StructScan(&y); err != nil {
+ return zero, err
+ }
+
+ if x.Year != y.Year || x.Mintmark != y.Mintmark {
+ x = y
+ xs = append(xs, msr)
+ goto loop
+ }
+
+ i = denomToIdx(y.Denomination)
+ msr.Mintages[i] = y.Mintage
+ msr.References[i] = y.Reference
+ }
+
+ xs = append(xs, msr)
+ }
+
+ if err = rs.Err(); err != nil {
+ return zero, err
+ }
+
+ db.SelectContext(context.TODO(), &ys, `
+ SELECT * FROM mintages_c
+ WHERE country = ? and type = ?
+ ORDER BY year, mintmark, number
+ `, country, typ)
+
+ return CountryMintageData{xs, ys}, rs.Err()
+}
+
+func denomToIdx(d float64) int {
+ return slices.Index([]float64{
+ 0.01, 0.02, 0.05, 0.10,
+ 0.20, 0.50, 1.00, 2.00,
+ }, d)
+}
diff --git a/src/dbx/sql/000-genesis.sql b/src/dbx/sql/000-genesis.sql
new file mode 100644
index 0000000..c16c6ae
--- /dev/null
+++ b/src/dbx/sql/000-genesis.sql
@@ -0,0 +1,42 @@
+PRAGMA encoding = "UTF-8";
+
+CREATE TABLE migration (
+ id INTEGER PRIMARY KEY CHECK (id = 1),
+ latest INTEGER
+);
+INSERT INTO migration (id, latest) VALUES (1, -1);
+
+CREATE TABLE mintages_s (
+ country CHAR(2) NOT NULL COLLATE BINARY
+ CHECK(length(country) = 2),
+ -- Codes correspond to contants in mintages.go
+ type INTEGER NOT NULL
+ CHECK(type BETWEEN 0 AND 2),
+ year INTEGER NOT NULL,
+ denomination REAL NOT NULL,
+ mintmark TEXT,
+ mintage INTEGER,
+ reference TEXT
+);
+
+CREATE TABLE mintages_c (
+ country CHAR(2) NOT NULL COLLATE BINARY
+ CHECK(length(country) = 2),
+ -- Codes correspond to contants in mintages.go
+ type INTEGER NOT NULL
+ CHECK(type BETWEEN 0 AND 2),
+ year INTEGER NOT NULL,
+ name TEXT NOT NULL,
+ number INTEGER NOT NULL,
+ mintmark TEXT,
+ mintage INTEGER,
+ reference TEXT
+);
+
+CREATE TABLE users (
+ email TEXT COLLATE BINARY,
+ username TEXT COLLATE BINARY,
+ password TEXT COLLATE BINARY,
+ adminp INTEGER,
+ translates TEXT COLLATE BINARY
+); \ No newline at end of file
diff --git a/src/dbx/sql/last.sql b/src/dbx/sql/last.sql
new file mode 100644
index 0000000..22ebab8
--- /dev/null
+++ b/src/dbx/sql/last.sql
@@ -0,0 +1,157 @@
+DELETE FROM mintages_s;
+DELETE FROM mintages_c;
+
+INSERT INTO mintages_s (
+ country,
+ type,
+ year,
+ denomination,
+ mintmark,
+ mintage,
+ reference
+) VALUES
+ ('at', 0, 2017, 0.01, NULL, 37700000, NULL),
+ ('at', 0, 2017, 0.02, NULL, 57200000, NULL),
+ ('at', 0, 2017, 0.05, NULL, 35200000, NULL),
+ ('at', 0, 2017, 0.10, NULL, 39500000, NULL),
+ ('at', 0, 2017, 0.20, NULL, 30000000, NULL),
+ ('at', 0, 2017, 0.50, NULL, 15000000, NULL),
+ ('at', 0, 2017, 1.00, NULL, 8000000, NULL),
+ ('at', 0, 2017, 2.00, NULL, 17700000, NULL),
+ ('de', 0, 2017, 0.01, 'A', 81600000, NULL),
+ ('de', 0, 2017, 0.02, 'A', 72200000, NULL),
+ ('de', 0, 2017, 0.05, 'A', 30000000, NULL),
+ ('de', 0, 2017, 0.10, 'A', 25200000, NULL),
+ ('de', 0, 2017, 0.20, 'A', 21600000, NULL),
+ ('de', 0, 2017, 0.50, 'A', 0, NULL),
+ ('de', 0, 2017, 1.00, 'A', 0, NULL),
+ ('de', 0, 2017, 2.00, 'A', 18120000, NULL),
+ ('de', 0, 2017, 0.01, 'D', 85680000, NULL),
+ ('de', 0, 2017, 0.02, 'D', 75810000, NULL),
+ ('de', 0, 2017, 0.05, 'D', 31500000, NULL),
+ ('de', 0, 2017, 0.10, 'D', 26460000, NULL),
+ ('de', 0, 2017, 0.20, 'D', 22680000, NULL),
+ ('de', 0, 2017, 0.50, 'D', 0, NULL),
+ ('de', 0, 2017, 1.00, 'D', 0, NULL),
+ ('de', 0, 2017, 2.00, 'D', 19110000, NULL),
+ ('ad', 0, 2014, 0.01, NULL, 60000, NULL),
+ ('ad', 0, 2014, 0.02, NULL, 60000, NULL),
+ ('ad', 0, 2014, 0.05, NULL, 860000, NULL),
+ ('ad', 0, 2014, 0.10, NULL, 860000, NULL),
+ ('ad', 0, 2014, 0.20, NULL, 860000, NULL),
+ ('ad', 0, 2014, 0.50, NULL, 340000, NULL),
+ ('ad', 0, 2014, 1.00, NULL, 511843, NULL),
+ ('ad', 0, 2014, 2.00, NULL, 360000, NULL),
+ ('ad', 0, 2015, 0.01, NULL, 0, NULL),
+ ('ad', 0, 2015, 0.02, NULL, 0, NULL),
+ ('ad', 0, 2015, 0.05, NULL, 0, NULL),
+ ('ad', 0, 2015, 0.10, NULL, 0, NULL),
+ ('ad', 0, 2015, 0.20, NULL, 0, NULL),
+ ('ad', 0, 2015, 0.50, NULL, 0, NULL),
+ ('ad', 0, 2015, 1.00, NULL, 0, NULL),
+ ('ad', 0, 2015, 2.00, NULL, 1072400, NULL),
+ ('ad', 0, 2016, 0.01, NULL, 0, NULL),
+ ('ad', 0, 2016, 0.02, NULL, 0, NULL),
+ ('ad', 0, 2016, 0.05, NULL, 0, NULL),
+ ('ad', 0, 2016, 0.10, NULL, 0, NULL),
+ ('ad', 0, 2016, 0.20, NULL, 0, NULL),
+ ('ad', 0, 2016, 0.50, NULL, 0, NULL),
+ ('ad', 0, 2016, 1.00, NULL, 2339200, NULL),
+ ('ad', 0, 2016, 2.00, NULL, 0, NULL),
+ ('ad', 0, 2017, 0.01, NULL, 2582395, NULL),
+ ('ad', 0, 2017, 0.02, NULL, 1515000, NULL),
+ ('ad', 0, 2017, 0.05, NULL, 2191421, NULL),
+ ('ad', 0, 2017, 0.10, NULL, 1103000, NULL),
+ ('ad', 0, 2017, 0.20, NULL, 1213000, NULL),
+ ('ad', 0, 2017, 0.50, NULL, 968800, NULL),
+ ('ad', 0, 2017, 1.00, NULL, 17000, NULL),
+ ('ad', 0, 2017, 2.00, NULL, 794588, NULL),
+ ('ad', 0, 2018, 0.01, NULL, 2430000, NULL),
+ ('ad', 0, 2018, 0.02, NULL, 2550000, NULL),
+ ('ad', 0, 2018, 0.05, NULL, 1800000, NULL),
+ ('ad', 0, 2018, 0.10, NULL, 980000, NULL),
+ ('ad', 0, 2018, 0.20, NULL, 1014000, NULL),
+ ('ad', 0, 2018, 0.50, NULL, 890000, NULL),
+ ('ad', 0, 2018, 1.00, NULL, 0, NULL),
+ ('ad', 0, 2018, 2.00, NULL, 868000, NULL),
+ ('ad', 0, 2019, 0.01, NULL, 2447000, NULL),
+ ('ad', 0, 2019, 0.02, NULL, 1727000, NULL),
+ ('ad', 0, 2019, 0.05, NULL, 2100000, NULL),
+ ('ad', 0, 2019, 0.10, NULL, 1610000, NULL),
+ ('ad', 0, 2019, 0.20, NULL, 1570000, NULL),
+ ('ad', 0, 2019, 0.50, NULL, 930000, NULL),
+ ('ad', 0, 2019, 1.00, NULL, 0, NULL),
+ ('ad', 0, 2019, 2.00, NULL, 1058310, NULL),
+ ('ad', 0, 2020, 0.01, NULL, 0, NULL),
+ ('ad', 0, 2020, 0.02, NULL, 0, NULL),
+ ('ad', 0, 2020, 0.05, NULL, 0, NULL),
+ ('ad', 0, 2020, 0.10, NULL, 860000, NULL),
+ ('ad', 0, 2020, 0.20, NULL, 175000, NULL),
+ ('ad', 0, 2020, 0.50, NULL, 740000, NULL),
+ ('ad', 0, 2020, 1.00, NULL, 0, NULL),
+ ('ad', 0, 2020, 2.00, NULL, 1500000, NULL),
+ ('ad', 0, 2021, 0.01, NULL, 200000, NULL),
+ ('ad', 0, 2021, 0.02, NULL, 700000, NULL),
+ ('ad', 0, 2021, 0.05, NULL, 0, NULL),
+ ('ad', 0, 2021, 0.10, NULL, 1400000, NULL),
+ ('ad', 0, 2021, 0.20, NULL, 1420000, NULL),
+ ('ad', 0, 2021, 0.50, NULL, 600000, NULL),
+ ('ad', 0, 2021, 1.00, NULL, 50000, NULL),
+ ('ad', 0, 2021, 2.00, NULL, 1474500, NULL),
+ ('ad', 0, 2022, 0.01, NULL, 700000, NULL),
+ ('ad', 0, 2022, 0.02, NULL, 450000, NULL),
+ ('ad', 0, 2022, 0.05, NULL, 400000, NULL),
+ ('ad', 0, 2022, 0.10, NULL, 700000, NULL),
+ ('ad', 0, 2022, 0.20, NULL, 700000, NULL),
+ ('ad', 0, 2022, 0.50, NULL, 380000, NULL),
+ ('ad', 0, 2022, 1.00, NULL, 0, NULL),
+ ('ad', 0, 2022, 2.00, NULL, 1708000, NULL),
+ ('ad', 0, 2023, 0.01, NULL, 0, NULL),
+ ('ad', 0, 2023, 0.02, NULL, 0, NULL),
+ ('ad', 0, 2023, 0.05, NULL, 0, NULL),
+ ('ad', 0, 2023, 0.10, NULL, 0, NULL),
+ ('ad', 0, 2023, 0.20, NULL, 0, NULL),
+ ('ad', 0, 2023, 0.50, NULL, 0, NULL),
+ ('ad', 0, 2023, 1.00, NULL, 0, NULL),
+ ('ad', 0, 2023, 2.00, NULL, 2075250, NULL),
+ ('ad', 0, 2024, 0.01, NULL, 0, NULL),
+ ('ad', 0, 2024, 0.02, NULL, 900300, NULL),
+ ('ad', 0, 2024, 0.05, NULL, 1950000, NULL),
+ ('ad', 0, 2024, 0.10, NULL, 1000000, NULL),
+ ('ad', 0, 2024, 0.20, NULL, 700000, NULL),
+ ('ad', 0, 2024, 0.50, NULL, 500000, NULL),
+ ('ad', 0, 2024, 1.00, NULL, 1050000, NULL),
+ ('ad', 0, 2024, 2.00, NULL, 1601200, NULL);
+
+INSERT INTO mintages_c (
+ country,
+ type,
+ year,
+ name,
+ number,
+ mintmark,
+ mintage,
+ reference
+) VALUES
+ ('de', 0, 2015, C_('Hessen', 'CC Name'), 1, 'A', 6000000, NULL),
+ ('de', 0, 2015, C_('German Reunification', 'CC Name'), 2, 'A', 6000000, NULL),
+ ('de', 0, 2015, C_('EU Flag', 'CC Name'), 3, 'A', 6000000, NULL),
+ ('de', 0, 2015, C_('Hessen', 'CC Name'), 1, 'D', 6300000, NULL),
+ ('de', 0, 2015, C_('German Reunification', 'CC Name'), 2, 'D', 6300000, NULL),
+ ('de', 0, 2015, C_('EU Flag', 'CC Name'), 3, 'D', 6300000, NULL),
+ ('de', 0, 2015, C_('Hessen', 'CC Name'), 1, 'F', 7200000, NULL),
+ ('de', 0, 2015, C_('German Reunification', 'CC Name'), 2, 'F', 7200000, NULL),
+ ('de', 0, 2015, C_('EU Flag', 'CC Name'), 3, 'F', 7200000, NULL),
+ ('de', 0, 2015, C_('Hessen', 'CC Name'), 1, 'G', 4200000, NULL),
+ ('de', 0, 2015, C_('German Reunification', 'CC Name'), 2, 'G', 4200000, NULL),
+ ('de', 0, 2015, C_('EU Flag', 'CC Name'), 3, 'G', 4200000, NULL),
+ ('de', 0, 2015, C_('Hessen', 'CC Name'), 1, 'J', 6300000, NULL),
+ ('de', 0, 2015, C_('German Reunification', 'CC Name'), 2, 'J', 6300000, NULL),
+ ('de', 0, 2015, C_('EU Flag', 'CC Name'), 3, 'J', 6300000, NULL),
+ ('sk', 0, 2014, C_('Slovak Republic to the EU', 'CC Name'), 1, NULL, 1000000, NULL),
+ ('sk', 0, 2015, C_('Ľudovít Štúr', 'CC Name'), 1, NULL, 1000000, NULL),
+ ('sk', 0, 2015, C_('EU Flag', 'CC Name'), 2, NULL, 1000000, NULL),
+ ('nl', 0, 2015, C_('EU Flag', 'CC Name'), 2, NULL, NULL, NULL),
+ ('fr', 0, 2015, C_('Peace and security', 'CC Name'), 1, NULL, 4000000, NULL),
+ ('fr', 0, 2015, C_('Fête de la Fédération', 'CC Name'), 2, NULL, 4000000, NULL),
+ ('fr', 0, 2015, C_('EU Flag', 'CC Name'), 3, NULL, 4000000, NULL); \ No newline at end of file
diff --git a/src/dbx/users.go b/src/dbx/users.go
new file mode 100644
index 0000000..bf78dcd
--- /dev/null
+++ b/src/dbx/users.go
@@ -0,0 +1,69 @@
+package dbx
+
+import (
+ "context"
+ "database/sql"
+ "errors"
+
+ "golang.org/x/crypto/bcrypt"
+ "golang.org/x/text/unicode/norm"
+)
+
+type User struct {
+ Email string `db:"email"`
+ Username string `db:"username"`
+ Password string `db:"password"`
+ AdminP bool `db:"adminp"`
+ Translates string `db:"translates"`
+}
+
+var LoginFailed = errors.New("No user with the given username and password")
+
+func CreateUser(user User) error {
+ user.Username = norm.NFC.String(user.Username)
+ user.Password = norm.NFC.String(user.Password)
+
+ hash, err := bcrypt.GenerateFromPassword([]byte(user.Password), 15)
+ if err != nil {
+ return err
+ }
+
+ _, err = db.ExecContext(context.TODO(), `
+ INSERT INTO users (
+ email,
+ username,
+ password,
+ adminp,
+ translates
+ ) VALUES (?, ?, ?, ?, ?)
+ `, user.Email, user.Username, string(hash), user.AdminP, user.Translates)
+ return err
+}
+
+func Login(username, password string) (User, error) {
+ username = norm.NFC.String(username)
+ password = norm.NFC.String(password)
+
+ rs, err := db.QueryxContext(context.TODO(),
+ `SELECT * FROM users WHERE username = ?`, username)
+ if err != nil {
+ return User{}, err
+ }
+
+ var u User
+ switch err = rs.Scan(&u); {
+ case errors.Is(err, sql.ErrNoRows):
+ return User{}, LoginFailed
+ case err != nil:
+ return User{}, err
+ }
+
+ err = bcrypt.CompareHashAndPassword([]byte(u.Password), []byte(password))
+ switch {
+ case errors.Is(err, bcrypt.ErrMismatchedHashAndPassword):
+ return User{}, LoginFailed
+ case err != nil:
+ return User{}, err
+ }
+ return u, nil
+}
diff --git a/src/email/email.go b/src/email/email.go
index 0f2c93d..e9eb46a 100644
--- a/src/email/email.go
+++ b/src/email/email.go
@@ -2,7 +2,9 @@ package email
import (
"crypto/tls"
+ "errors"
"fmt"
+ "log"
"math/rand/v2"
"net/smtp"
"strconv"
@@ -27,14 +29,20 @@ Message-ID: <%s>
%s`
-func ServerError(fault error) error {
+func Send(subject, body string) {
+ if err := send(subject, body); err != nil {
+ log.Println(err)
+ }
+}
+
+func send(subject, body string) error {
if Config.Disabled {
- return fault
+ return errors.New(body)
}
msgid := strconv.FormatInt(rand.Int64(), 10) + "@" + Config.Host
msg := fmt.Sprintf(emailTemplate, Config.FromAddr, Config.ToAddr,
- "Error Report", time.Now().Format(time.RFC1123Z), msgid, fault)
+ subject, time.Now().Format(time.RFC1123Z), msgid, body)
tlsConfig := &tls.Config{
InsecureSkipVerify: false,
diff --git a/src/http.go b/src/http.go
index 3feda8c..fce82ba 100644
--- a/src/http.go
+++ b/src/http.go
@@ -1,4 +1,4 @@
-package src
+package app
import (
"cmp"
@@ -8,14 +8,16 @@ import (
"log"
"math"
"net/http"
- "os"
- "path/filepath"
"slices"
"strconv"
"strings"
+ "time"
+ . "git.thomasvoss.com/euro-cash.eu/pkg/try"
+
+ "git.thomasvoss.com/euro-cash.eu/src/dbx"
"git.thomasvoss.com/euro-cash.eu/src/email"
- "git.thomasvoss.com/euro-cash.eu/src/mintage"
+ "git.thomasvoss.com/euro-cash.eu/src/i18n"
)
type middleware = func(http.Handler) http.Handler
@@ -29,11 +31,17 @@ func Run(port int) {
mwareC := chain(mwareB, countryHandler) // [C]ountry
mwareM := chain(mwareC, mintageHandler) // [M]intage
+ mux.Handle("GET /codes/", fs)
mux.Handle("GET /designs/", fs)
mux.Handle("GET /favicon.ico", fs)
mux.Handle("GET /fonts/", fs)
mux.Handle("GET /storage/", fs)
- mux.Handle("GET /style.min.css", fs)
+ if Debugp {
+ mux.Handle("GET /style.css", fs)
+ mux.Handle("GET /style-2.css", fs)
+ } else {
+ mux.Handle("GET /style.min.css", fs)
+ }
mux.Handle("GET /coins/designs", mwareC(final))
mux.Handle("GET /coins/mintages", mwareM(final))
mux.Handle("GET /collecting/crh", mwareC(final))
@@ -42,7 +50,7 @@ func Run(port int) {
portStr := ":" + strconv.Itoa(port)
log.Println("Listening on", portStr)
- log.Fatal(http.ListenAndServe(portStr, mux))
+ Try(http.ListenAndServe(portStr, mux))
}
func chain(xs ...middleware) middleware {
@@ -56,7 +64,10 @@ func chain(xs ...middleware) middleware {
func firstHandler(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- ctx := context.WithValue(r.Context(), "td", &templateData{})
+ ctx := context.WithValue(r.Context(), "td", &templateData{
+ Debugp: Debugp,
+ Printers: i18n.Printers,
+ })
next.ServeHTTP(w, r.WithContext(ctx))
})
}
@@ -80,33 +91,37 @@ func finalHandler(w http.ResponseWriter, r *http.Request) {
original page they came from. */
if path == "/language" {
http.SetCookie(w, &http.Cookie{
- Name: "redirect",
- Value: cmp.Or(r.Referer(), "/"),
+ Name: "redirect",
+ Value: cmp.Or(r.Referer(), "/"),
+ Expires: time.Now().Add(24 * time.Hour),
})
}
data := r.Context().Value("td").(*templateData)
- t.Execute(w, data)
+ if err := t.Execute(w, data); err != nil {
+ log.Println(err)
+ }
}
func i18nHandler(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- var p, pZero Printer
+ var p, pZero i18n.Printer
if c, err := r.Cookie("locale"); err == nil {
- p = printers[strings.ToLower(c.Value)]
+ p = i18n.Printers[c.Value]
}
td := r.Context().Value("td").(*templateData)
- td.Printer = cmp.Or(p, defaultPrinter)
if p == pZero {
+ td.Printer = bestFitLanguage(r.Header.Get("Accept-Language"))
http.SetCookie(w, &http.Cookie{
Name: "redirect",
Value: r.URL.Path,
})
templates["/language"].Execute(w, td)
} else {
+ td.Printer = p
next.ServeHTTP(w, r)
}
})
@@ -123,32 +138,50 @@ func countryHandler(next http.Handler) http.Handler {
func mintageHandler(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
td := r.Context().Value("td").(*templateData)
- td.Code = strings.ToLower(r.FormValue("code"))
- if !slices.ContainsFunc(td.Countries, func(c country) bool {
- return c.Code == td.Code
- }) {
- td.Code = td.Countries[0].Code
- }
- td.Type = strings.ToLower(r.FormValue("type"))
+ td.Type = r.FormValue("type")
switch td.Type {
case "circ", "nifc", "proof":
default:
td.Type = "circ"
}
- path := filepath.Join("data", "mintages", td.Code)
- f, err := os.Open(path)
- if err != nil {
- throwError(http.StatusInternalServerError, err, w, r)
- return
+ td.FilterBy = r.FormValue("filter-by")
+ switch td.FilterBy {
+ case "country", "year":
+ default:
+ td.FilterBy = "country"
}
- defer f.Close()
- td.Mintages, err = mintage.Parse(f, path)
- if err != nil {
- throwError(http.StatusInternalServerError, err, w, r)
- return
+ mt := dbx.NewMintageType(td.Type)
+
+ switch td.FilterBy {
+ case "country":
+ td.Code = r.FormValue("country")
+ if !slices.ContainsFunc(td.Countries, func(c country) bool {
+ return c.Code == td.Code
+ }) {
+ td.Code = td.Countries[0].Code
+ }
+
+ m, err := dbx.GetMintagesByCountry(td.Code, mt)
+ if err != nil {
+ throwError(http.StatusInternalServerError, err, w, r)
+ return
+ }
+ td.CountryMintages = makeCountryMintageTable(m, td.Printer)
+ case "year":
+ var err error
+ td.Year, err = strconv.Atoi(r.FormValue("year"))
+ if err != nil || td.Year < 1999 {
+ td.Year = 1999
+ }
+ m, err := dbx.GetMintagesByYear(td.Year, mt)
+ if err != nil {
+ throwError(http.StatusInternalServerError, err, w, r)
+ return
+ }
+ td.YearMintages = makeYearMintageTable(m, td.Printer)
}
next.ServeHTTP(w, r)
@@ -157,8 +190,9 @@ func mintageHandler(next http.Handler) http.Handler {
func setUserLanguage(w http.ResponseWriter, r *http.Request) {
loc := r.FormValue("locale")
- _, ok := printers[strings.ToLower(loc)]
+ _, ok := i18n.Printers[loc]
if !ok {
+ /* TODO: Make this page pretty? */
w.WriteHeader(http.StatusUnprocessableEntity)
fmt.Fprintf(w, "Locale ‘%s’ is invalid or unsupported", loc)
return
@@ -182,11 +216,7 @@ func setUserLanguage(w http.ResponseWriter, r *http.Request) {
func throwError(status int, err error, w http.ResponseWriter, r *http.Request) {
w.WriteHeader(status)
- go func() {
- if err := email.ServerError(err); err != nil {
- log.Print(err)
- }
- }()
+ go email.Send("Server Error", err.Error())
errorTmpl.Execute(w, struct {
Code int
Msg string
@@ -195,3 +225,39 @@ func throwError(status int, err error, w http.ResponseWriter, r *http.Request) {
Msg: http.StatusText(status),
})
}
+
+func bestFitLanguage(qry string) i18n.Printer {
+ type option struct {
+ bcp string
+ quality float64
+ }
+ var xs []option
+
+ for subqry := range strings.SplitSeq(qry, ",") {
+ var o option
+ subqry = strings.TrimSpace(subqry)
+ parts := strings.Split(subqry, ";")
+ o.bcp = strings.ToLower(parts[0])
+ if len(parts) == 1 {
+ o.quality = 1
+ } else {
+ n, err := fmt.Sscanf(parts[1], "q=%f", &o.quality)
+ if n != 1 || err != nil {
+ /* Malformed query string; just give up */
+ return i18n.DefaultPrinter
+ }
+ }
+ xs = append(xs, o)
+ }
+
+ slices.SortFunc(xs, func(x, y option) int {
+ return cmp.Compare(y.quality, x.quality)
+ })
+
+ for _, x := range xs {
+ if p, ok := i18n.Printers[x.bcp]; ok {
+ return p
+ }
+ }
+ return i18n.DefaultPrinter
+}
diff --git a/src/i18n.go b/src/i18n.go
deleted file mode 100644
index e8ad2ea..0000000
--- a/src/i18n.go
+++ /dev/null
@@ -1,280 +0,0 @@
-//go:generate gotext -srclang=en -dir=rosetta extract -lang=bg,el,en,nl .
-//go:generate ../exttmpl
-
-package src
-
-import (
- "fmt"
- "log"
- "strings"
- "time"
-
- "golang.org/x/text/language"
- "golang.org/x/text/message"
-
- "git.thomasvoss.com/euro-cash.eu/src/email"
-)
-
-type Printer struct {
- Locale locale
- inner *message.Printer
-}
-
-type locale struct {
- Bcp, Name string
- Eurozone, Enabled bool
- dateFmt, moneyFmt string
-}
-
-var (
- Locales = [...]locale{
- {
- Bcp: "ca",
- Name: "català",
- dateFmt: "2/1/2006",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "de",
- Name: "Deutsch",
- dateFmt: "2.1.2006",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "el",
- Name: "ελληνικά",
- dateFmt: "2/1/2006",
- Eurozone: true,
- Enabled: true,
- },
- {
- Bcp: "en",
- Name: "English",
- dateFmt: "02/01/2006",
- Eurozone: true,
- Enabled: true,
- },
- {
- Bcp: "es",
- Name: "español",
- dateFmt: "2/1/2006",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "et",
- Name: "eesti",
- dateFmt: "2.1.2006",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "fi",
- Name: "suomi",
- dateFmt: "2.1.2006",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "fr",
- Name: "français",
- dateFmt: "02/01/2006",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "ga",
- Name: "Gaeilge",
- dateFmt: "02/01/2006",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "it",
- Name: "italiano",
- dateFmt: "02/01/2006",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "lb",
- Name: "lëtzebuergesch",
- dateFmt: "2.1.2006",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "lt",
- Name: "lietuvių",
- dateFmt: "2006-01-02",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "lv",
- Name: "latviešu",
- dateFmt: "2.01.2006.",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "mt",
- Name: "Malti",
- dateFmt: "2/1/2006",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "nl",
- Name: "Nederlands",
- dateFmt: "2-1-2006",
- Eurozone: true,
- Enabled: true,
- },
- {
- Bcp: "pt",
- Name: "português",
- dateFmt: "02/01/2006",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "sh",
- Name: "srpskohrvatski",
- dateFmt: "02. 01. 2006.",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "sk",
- Name: "slovenčina",
- dateFmt: "2. 1. 2006",
- Eurozone: true,
- Enabled: false,
- },
- {
- Bcp: "sl",
- Name: "slovenščina",
- dateFmt: "2. 1. 2006",
- Eurozone: true,
- Enabled: false,
- },
-
- /* Non-Eurozone locales */
- {
- Bcp: "bg",
- Name: "български",
- dateFmt: "2.01.2006 г.",
- Eurozone: false,
- Enabled: true,
- },
- {
- Bcp: "en-US",
- Name: "English (US)",
- dateFmt: "1/2/2006",
- Eurozone: false,
- Enabled: false,
- },
- {
- Bcp: "ro",
- Name: "română",
- dateFmt: "02.01.2006",
- Eurozone: false,
- Enabled: false,
- },
- {
- Bcp: "sq",
- Name: "Shqip",
- dateFmt: "2.1.2006",
- Eurozone: false,
- Enabled: false,
- },
- {
- Bcp: "uk",
- Name: "yкраїнська",
- dateFmt: "02.01.2006",
- Eurozone: false,
- Enabled: false,
- },
- }
- /* Map of language codes to printers. We do this instead of just
- using language.MustParse() directly so that we can easily see if a
- language is supported or not. */
- printers map[string]Printer = make(map[string]Printer, len(Locales))
- defaultPrinter Printer
-)
-
-func init() {
- for _, loc := range Locales {
- if loc.Enabled {
- lang := language.MustParse(loc.Bcp)
- printers[strings.ToLower(loc.Bcp)] = Printer{
- Locale: loc,
- inner: message.NewPrinter(lang),
- }
- }
- }
- defaultPrinter = printers["en"]
-}
-
-func (p Printer) T(fmt string, args ...any) string {
- return p.inner.Sprintf(fmt, args...)
-}
-
-func (p Printer) N(n int) string {
- return p.inner.Sprint(n)
-}
-
-func (p Printer) Date(d time.Time) string {
- return d.Format(p.Locale.dateFmt)
-}
-
-func (p Printer) M(val any) string {
- var vstr string
-
- /* Hack to avoid gotext writing these two ‘translations’ into the
- translations file */
- f := p.inner.Sprintf
-
- switch val.(type) {
- case int:
- vstr = f("%d", val)
- case float64:
- vstr = f("%.2f", val)
- default:
- if err := email.ServerError(badMType{"TODO"}); err != nil {
- log.Print(err)
- }
- /* Hopefully this never happens */
- vstr = "ERROR"
- }
-
- /* All Eurozone languages place the eurosign after the value except
- for Dutch, English, Irish, and Maltese. Austrian German also
- uses Dutch-style formatting, but we do not support that dialect. */
- switch p.Locale.Bcp {
- case "en", "en-US", "ga", "mt":
- return fmt.Sprintf("€%s", vstr)
- case "nl":
- return fmt.Sprintf("€ %s", vstr)
- default:
- return fmt.Sprintf("%s €", vstr)
- }
-}
-
-/* Transform ‘en-US’ to ‘en’ */
-func (l locale) Language() string {
- return l.Bcp[:2]
-}
-
-type badMType struct {
- inner any
-}
-
-func (e badMType) Error() string {
- return fmt.Sprintf(
- "Attempted to format ‘%v’ of type ‘%T’ as a monetary value in Printer.M()",
- e.inner, e.inner)
-}
diff --git a/src/i18n/gen.py b/src/i18n/gen.py
new file mode 100755
index 0000000..9271cc0
--- /dev/null
+++ b/src/i18n/gen.py
@@ -0,0 +1,172 @@
+#!/usr/bin/env python3
+
+import concurrent.futures
+import dataclasses
+import json
+import os
+import re
+import subprocess
+import sys
+import urllib.request
+from dataclasses import dataclass
+from typing import Any, TextIO
+
+
+FILENAME = "locales.gen.go"
+
+class Rune(int):
+ pass
+
+
+@dataclass
+class Locale:
+ bcp: str
+ eurozonep: bool
+ enabledp: bool
+ territory: str | None = dataclasses.field(default=None)
+ name: str = dataclasses.field(init=False)
+ date_format: str = dataclasses.field(init=False)
+ group_separator: Rune = dataclasses.field(init=False)
+ decimal_separator: Rune = dataclasses.field(init=False)
+ monetary_formats: tuple[str, str] = dataclasses.field(init=False)
+ percent_format: str = dataclasses.field(init=False)
+
+
+LOCALES = (
+ Locale(bcp="ca", eurozonep=True, enabledp=False),
+ Locale(bcp="de", eurozonep=True, enabledp=False),
+ Locale(bcp="el", eurozonep=True, enabledp=False),
+ Locale(bcp="en", eurozonep=True, enabledp=True, territory="GB"),
+ Locale(bcp="es", eurozonep=True, enabledp=False),
+ Locale(bcp="et", eurozonep=True, enabledp=False),
+ Locale(bcp="fi", eurozonep=True, enabledp=False),
+ Locale(bcp="fr", eurozonep=True, enabledp=False),
+ Locale(bcp="ga", eurozonep=True, enabledp=False),
+ Locale(bcp="hr", eurozonep=True, enabledp=False),
+ Locale(bcp="it", eurozonep=True, enabledp=False),
+ Locale(bcp="lb", eurozonep=True, enabledp=False),
+ Locale(bcp="lt", eurozonep=True, enabledp=False),
+ Locale(bcp="lv", eurozonep=True, enabledp=False),
+ Locale(bcp="mt", eurozonep=True, enabledp=False),
+ Locale(bcp="nl", eurozonep=True, enabledp=True),
+ Locale(bcp="pt", eurozonep=True, enabledp=False, territory="PT"),
+ Locale(bcp="sk", eurozonep=True, enabledp=False),
+ Locale(bcp="sl", eurozonep=True, enabledp=False),
+ Locale(bcp="sv", eurozonep=True, enabledp=True),
+ Locale(bcp="tr", eurozonep=True, enabledp=False),
+ Locale(bcp="bg", eurozonep=False, enabledp=False),
+ Locale(bcp="ro", eurozonep=False, enabledp=False),
+ Locale(bcp="uk", eurozonep=False, enabledp=False),
+)
+
+BASELINK = "https://raw.githubusercontent.com/unicode-org/cldr-json/refs/heads/main/cldr-json/%s/main/%%s/%s"
+NUMBERS_LINK, DATES_LINK, LANGUAGES_LINK = (
+ BASELINK % ("cldr-numbers-full", "numbers.json"),
+ BASELINK % ("cldr-dates-full", "ca-gregorian.json"),
+ BASELINK % ("cldr-localenames-full", "languages.json"),
+)
+
+
+def main() -> int:
+ rv = 0
+ nprocs = os.cpu_count()
+ with concurrent.futures.ThreadPoolExecutor(max_workers=nprocs) as executor:
+ for x in [executor.submit(write_locale, l) for l in LOCALES]:
+ try:
+ x.result()
+ except Exception as e:
+ print(f"gen.py: {e}", file=sys.stderr)
+ rv = 1
+
+ with open(FILENAME, "w") as f:
+ f.write("""// Code generated by gen.py. DO NOT EDIT.
+
+package i18n
+
+import "github.com/leonelquinteros/gotext"
+
+type LocaleInfo struct {
+ Bcp, Name string
+ Eurozonep, Enabledp bool
+ DateFormat string
+ GroupSeparator, DecimalSeparator rune
+ MonetaryFormats [2]string
+ PercentFormat string
+}
+
+var locales = [...]LocaleInfo{
+""")
+ for x in LOCALES:
+ f.write("{\n")
+ for k, v in x.__dict__.items():
+ if not v or k == "territory":
+ continue
+ if k == "name":
+ f.write('Name: gotext.GetC(%s, "Language Name"),\n' % val_to_go(v))
+ else:
+ f.write("%s: %s,\n" % (pascal(k), val_to_go(v)))
+ f.write("},\n")
+ f.write("}")
+
+ subprocess.run(["gofmt", "-w", FILENAME])
+ return rv
+
+
+def write_locale(l: Locale) -> None:
+ bcp = '%s-%s' % (l.bcp, l.territory) if l.territory else l.bcp
+ jn, jd, jl = map(json.load, (
+ urllib.request.urlopen(NUMBERS_LINK % bcp),
+ urllib.request.urlopen(DATES_LINK % bcp),
+ urllib.request.urlopen(LANGUAGES_LINK % bcp),
+ ))
+ name = jl["main"][bcp]["localeDisplayNames"]["languages"][l.bcp]
+ l.name = name.capitalize()
+ syms = jn["main"][bcp]["numbers"]["symbols-numberSystem-latn"]
+ l.group_separator = Rune(ord(syms["group"]))
+ l.decimal_separator = Rune(ord(syms["decimal"]))
+
+ fmt = jn["main"][bcp]["numbers"]["percentFormats-numberSystem-latn"]["standard"]
+ l.percent_format = numfmt_subst(fmt)
+
+ fmt = jd["main"][bcp]["dates"]["calendars"]["gregorian"]["dateFormats"]["short"]
+ l.date_format = (
+ fmt
+ .replace("yy", "06")
+ .replace("MM", "01")
+ .replace("dd", "02")
+ .replace("y", "2006")
+ .replace("M", "1")
+ .replace("d", "2")
+ .replace("'", "")
+ )
+
+ fmt = jn["main"][bcp]["numbers"]["currencyFormats-numberSystem-latn"]["standard"]
+ parts = list(map(numfmt_subst, fmt.replace("¤", "€").split(";")))
+ if len(parts) == 1:
+ parts.append('-' + parts[0])
+ l.monetary_formats = tuple(parts)
+
+
+def numfmt_subst(s: str) -> str:
+ return re.sub(r"[0#,.]+", "123", s)
+
+
+def pascal(s: str) -> str:
+ return ''.join(map(str.capitalize, s.split('_')))
+
+
+def val_to_go(x: Any) -> str:
+ match x:
+ case bool():
+ return "true" if x else "false"
+ case Rune():
+ return "'%s'" % chr(x)
+ case str():
+ return '"%s"' % x
+ case (str(), str()):
+ return "[2]string{%s, %s}" % (val_to_go(x[0]), val_to_go(x[1]))
+
+
+if __name__ == "__main__":
+ os.chdir(os.path.dirname(sys.argv[0]))
+ sys.exit(main())
diff --git a/src/i18n/i18n.go b/src/i18n/i18n.go
new file mode 100644
index 0000000..93b8d63
--- /dev/null
+++ b/src/i18n/i18n.go
@@ -0,0 +1,428 @@
+//go:generate ./gen.py
+
+package i18n
+
+import (
+ "errors"
+ "fmt"
+ "io/fs"
+ "log"
+ "maps"
+ "slices"
+ "strings"
+ "time"
+ "unicode/utf8"
+
+ "git.thomasvoss.com/euro-cash.eu/pkg/atexit"
+ "git.thomasvoss.com/euro-cash.eu/pkg/watch"
+ "github.com/leonelquinteros/gotext"
+
+ "git.thomasvoss.com/euro-cash.eu/src/wikipedia"
+)
+
+type Printer struct {
+ LocaleInfo
+ inner *gotext.Locale
+}
+
+type number interface {
+ int | float64
+}
+
+type sprintfFunc func(LocaleInfo, *strings.Builder, any) error
+
+var (
+ handlers map[rune]sprintfFunc = map[rune]sprintfFunc{
+ -1: sprintfGeneric,
+ 'E': sprintfE,
+ 'L': sprintfL,
+ 'e': sprintfe,
+ 'l': sprintfl,
+ 'm': sprintfm,
+ 'p': sprintfp,
+ 'r': sprintfr,
+ }
+
+ Printers = make(map[string]Printer, len(locales))
+ DefaultPrinter Printer
+)
+
+func Init(dir fs.FS, debugp bool) {
+ gotext.FallbackLocale = "en"
+ i := slices.IndexFunc(locales[:], func(li LocaleInfo) bool {
+ return li.Bcp == gotext.FallbackLocale
+ })
+ if i == -1 {
+ atexit.Exec()
+ log.Fatalf("No translation file default locale ‘%s’\n",
+ gotext.FallbackLocale)
+ }
+ if !locales[i].Enabledp {
+ atexit.Exec()
+ log.Fatalf("Default locale ‘%s’ is not enabled\n",
+ locales[i].Name)
+ }
+
+ initLocale(dir, locales[i], locales[i].Name, debugp)
+ DefaultPrinter = Printers[gotext.FallbackLocale]
+
+ for j, li := range locales {
+ if li.Enabledp && i != j {
+ name := DefaultPrinter.GetC(li.Name, "Language Name")
+ initLocale(dir, li, name, debugp)
+ }
+ }
+}
+
+func initLocale(dir fs.FS, li LocaleInfo, name string, debugp bool) {
+ gl := gotext.NewLocaleFS(li.Bcp, dir)
+ gl.AddDomain("messages")
+ Printers[li.Bcp] = Printer{li, gl}
+
+ if debugp {
+ subdir, err := fs.Sub(dir, li.Bcp)
+ if err != nil {
+ log.Printf("No translations directory for ‘%s’\n", name)
+ return
+ }
+ go watch.FileFS(subdir, "messages.po", func() {
+ Printers[li.Bcp].inner.AddDomain("messages")
+ log.Printf("Translations for ‘%s’ updated\n", name)
+ })
+ }
+
+ log.Printf("Initialized printer for ‘%s’\n", name)
+}
+
+func Locales() []LocaleInfo {
+ return locales[:]
+}
+
+func (p Printer) Wikipedia(title string) string {
+ return wikipedia.Url(title, p.Bcp)
+}
+
+func (p Printer) Get(fmt string, args ...map[string]any) string {
+ return p.Sprintf(p.inner.Get(fmt), args...)
+}
+
+func (p Printer) GetC(fmt, ctx string, args ...map[string]any) string {
+ return p.Sprintf(p.inner.GetC(fmt, ctx), args...)
+}
+
+func (p Printer) GetN(fmtS, fmtP string, n int, args ...map[string]any) string {
+ return p.Sprintf(p.inner.GetN(fmtS, fmtP, n), args...)
+}
+
+/* Transform ‘en-US’ to ‘en’ */
+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) Itop(n int) string {
+ var bob strings.Builder
+ sprintfp(p.LocaleInfo, &bob, n)
+ return bob.String()
+}
+
+func (p Printer) Ftop(n float64) string {
+ var bob strings.Builder
+ sprintfp(p.LocaleInfo, &bob, n)
+ return bob.String()
+}
+
+func (p Printer) Itom(n int) string {
+ var bob strings.Builder
+ sprintfm(p.LocaleInfo, &bob, n)
+ return bob.String()
+}
+
+func (p Printer) Ftom(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)
+ }
+
+ for {
+ i := strings.IndexByte(format, '{')
+ if i == -1 {
+ htmlesc(&bob, format)
+ break
+ }
+ htmlesc(&bob, format[:i])
+
+ format = format[i+1:]
+ i = strings.IndexRune(format, '}')
+ if i == -1 {
+ /* TODO: Handle error: unterminated { */
+ return "unterminated {"
+ }
+
+ parts := strings.Split(format[:i], ":")
+ format = format[i+1:]
+
+ var flag rune
+ switch len(parts) {
+ case 1:
+ flag = -1
+ case 2:
+ f, n := utf8.DecodeRune([]byte(parts[1]))
+ if n != len(parts[1]) {
+ /* TODO: Handle error: flag too long or empty */
+ return "flag too long or empty"
+ }
+ flag = f
+ default:
+ /* TODO: Handle error: too many colons */
+ return "too many colons"
+ }
+
+ h, ok := handlers[flag]
+ if !ok {
+ /* TODO: Handle error: no such handler */
+ return "no such handler"
+ }
+
+ v, ok := vars[parts[0]]
+ if !ok {
+ /* TODO: Handle error: no such key */
+ return "no such key"
+ }
+ h(p.LocaleInfo, &bob, v)
+ }
+
+ return bob.String()
+}
+
+func sprintfGeneric(li LocaleInfo, bob *strings.Builder, v any) error {
+ switch v.(type) {
+ case time.Time:
+ htmlesc(bob, v.(time.Time).Format(li.DateFormat))
+ case int:
+ writeInt(bob, v.(int), li)
+ case float64:
+ writeFloat(bob, v.(float64), li)
+ case string:
+ htmlesc(bob, v.(string))
+ default:
+ htmlesc(bob, fmt.Sprint(v))
+ }
+ return nil
+}
+
+func sprintfe(li LocaleInfo, bob *strings.Builder, v any) error {
+ s, ok := v.(string)
+ if !ok {
+ return errors.New("TODO")
+ }
+ bob.WriteString("<a href=\"mailto:")
+ htmlesc(bob, s)
+ bob.WriteString("\">")
+ htmlesc(bob, s)
+ bob.WriteString("</a>")
+ return nil
+}
+
+func sprintfE(li LocaleInfo, bob *strings.Builder, v any) error {
+ s, ok := v.(string)
+ if !ok {
+ return errors.New("TODO")
+ }
+ for tag := range strings.SplitSeq(s, ",") {
+ bob.WriteString("</")
+ bob.WriteString(tag)
+ bob.WriteByte('>')
+ }
+ return nil
+}
+
+func sprintfl(li LocaleInfo, bob *strings.Builder, v any) error {
+ s, ok := v.(string)
+ if !ok {
+ return errors.New("TODO")
+ }
+ bob.WriteString("<a href=\"")
+ htmlesc(bob, s)
+ bob.WriteString("\">")
+ return nil
+}
+
+func sprintfL(li LocaleInfo, bob *strings.Builder, v any) error {
+ s, ok := v.(string)
+ if !ok {
+ return errors.New("TODO")
+ }
+ bob.WriteString("<a href=\"")
+ htmlesc(bob, s)
+ bob.WriteString("\" target=\"_blank\">")
+ return nil
+}
+
+func sprintfm(li LocaleInfo, bob *strings.Builder, v any) error {
+ var (
+ fmt string
+ negp bool
+ )
+ switch v.(type) {
+ case int:
+ negp = v.(int) < 0
+ case float64:
+ negp = v.(float64) < 0
+ }
+
+ fmt = li.MonetaryFormats[btoi(negp)]
+ pre, suf, _ := strings.Cut(fmt, "123")
+ htmlesc(bob, pre)
+
+ switch v.(type) {
+ case int:
+ writeInt(bob, abs(v.(int)), li)
+ case float64:
+ writeFloat(bob, abs(v.(float64)), li)
+ }
+
+ htmlesc(bob, suf)
+ return nil
+}
+
+func sprintfp(li LocaleInfo, bob *strings.Builder, v any) error {
+ pre, suf, _ := strings.Cut(li.PercentFormat, "123")
+ htmlesc(bob, pre)
+
+ switch v.(type) {
+ case int:
+ writeInt(bob, v.(int), li)
+ case float64:
+ writeFloat(bob, v.(float64), li)
+ }
+
+ htmlesc(bob, suf)
+ return nil
+}
+
+func sprintfr(li LocaleInfo, bob *strings.Builder, v any) error {
+ s, ok := v.(string)
+ if !ok {
+ return errors.New("TODO")
+ }
+ bob.WriteString(s)
+ return nil
+}
+
+func writeInt(bob *strings.Builder, num int, li LocaleInfo) {
+ s := fmt.Sprintf("%d", num)
+ if s[0] == '-' {
+ bob.WriteByte('-')
+ s = s[1:]
+ }
+ n := len(s)
+ c := 3 - n%3
+ if c == 3 {
+ c = 0
+ }
+ for i := 0; i < n; i++ {
+ c++
+ bob.WriteByte(s[i])
+ if c == 3 && i+1 < n {
+ bob.WriteRune(li.GroupSeparator)
+ c = 0
+ }
+ }
+}
+
+func writeFloat(bob *strings.Builder, num float64, li LocaleInfo) {
+ s := fmt.Sprintf("%.2f", num)
+ if s[0] == '-' {
+ bob.WriteByte('-')
+ s = s[1:]
+ }
+
+ n := strings.IndexByte(s, '.')
+ c := 3 - n%3
+ if c == 3 {
+ c = 0
+ }
+ for i := 0; i < n; i++ {
+ c++
+ bob.WriteByte(s[i])
+ if c == 3 && i+1 < n {
+ bob.WriteRune(li.GroupSeparator)
+ c = 0
+ }
+ }
+
+ bob.WriteRune(li.DecimalSeparator)
+ bob.WriteString(s[n+1:])
+}
+
+func abs[T number](x T) T {
+ if x < 0 {
+ return -x
+ }
+ return x
+}
+
+func btoi(b bool) int {
+ if b {
+ return 1
+ }
+ return 0
+}
+
+func htmlesc(bob *strings.Builder, s string) {
+ for _, r := range s {
+ switch r {
+ case '<':
+ bob.WriteString("&lt;")
+ case '>':
+ bob.WriteString("&gt;")
+ case '&':
+ bob.WriteString("&amp;")
+ case '"':
+ bob.WriteString("&#34;")
+ case '\'':
+ bob.WriteString("&#39;")
+ default:
+ bob.WriteRune(r)
+ }
+ }
+}
+
+func htmlescByte(bob *strings.Builder, b byte) {
+ switch b {
+ case '<':
+ bob.WriteString("&lt;")
+ case '>':
+ bob.WriteString("&gt;")
+ case '&':
+ bob.WriteString("&amp;")
+ case '"':
+ bob.WriteString("&#34;")
+ case '\'':
+ bob.WriteString("&#39;")
+ default:
+ bob.WriteByte(b)
+ }
+}
diff --git a/src/i18n/locales.gen.go b/src/i18n/locales.gen.go
new file mode 100644
index 0000000..58d059e
--- /dev/null
+++ b/src/i18n/locales.gen.go
@@ -0,0 +1,257 @@
+// Code generated by gen.py. DO NOT EDIT.
+
+package i18n
+
+import "github.com/leonelquinteros/gotext"
+
+type LocaleInfo struct {
+ Bcp, Name string
+ Eurozonep, Enabledp bool
+ DateFormat string
+ GroupSeparator, DecimalSeparator rune
+ MonetaryFormats [2]string
+ PercentFormat string
+}
+
+var locales = [...]LocaleInfo{
+ {
+ Bcp: "ca",
+ Eurozonep: true,
+ Name: gotext.GetC("Català", "Language Name"),
+ GroupSeparator: '.',
+ DecimalSeparator: ',',
+ PercentFormat: "123 %",
+ DateFormat: "2/1/06",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "de",
+ Eurozonep: true,
+ Name: gotext.GetC("Deutsch", "Language Name"),
+ GroupSeparator: '.',
+ DecimalSeparator: ',',
+ PercentFormat: "123 %",
+ DateFormat: "02.01.06",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "el",
+ Eurozonep: true,
+ Name: gotext.GetC("Ελληνικά", "Language Name"),
+ GroupSeparator: '.',
+ DecimalSeparator: ',',
+ PercentFormat: "123%",
+ DateFormat: "2/1/06",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "en",
+ Eurozonep: true,
+ Enabledp: true,
+ Name: gotext.GetC("English", "Language Name"),
+ GroupSeparator: ',',
+ DecimalSeparator: '.',
+ PercentFormat: "123%",
+ DateFormat: "02/01/2006",
+ MonetaryFormats: [2]string{"€123", "-€123"},
+ },
+ {
+ Bcp: "es",
+ Eurozonep: true,
+ Name: gotext.GetC("Español", "Language Name"),
+ GroupSeparator: '.',
+ DecimalSeparator: ',',
+ PercentFormat: "123 %",
+ DateFormat: "2/1/06",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "et",
+ Eurozonep: true,
+ Name: gotext.GetC("Eesti", "Language Name"),
+ GroupSeparator: ' ',
+ DecimalSeparator: ',',
+ PercentFormat: "123%",
+ DateFormat: "02.01.06",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "fi",
+ Eurozonep: true,
+ Name: gotext.GetC("Suomi", "Language Name"),
+ GroupSeparator: ' ',
+ DecimalSeparator: ',',
+ PercentFormat: "123 %",
+ DateFormat: "2.1.2006",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "fr",
+ Eurozonep: true,
+ Name: gotext.GetC("Français", "Language Name"),
+ GroupSeparator: ' ',
+ DecimalSeparator: ',',
+ PercentFormat: "123 %",
+ DateFormat: "02/01/2006",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "ga",
+ Eurozonep: true,
+ Name: gotext.GetC("Gaeilge", "Language Name"),
+ GroupSeparator: ',',
+ DecimalSeparator: '.',
+ PercentFormat: "123%",
+ DateFormat: "02/01/2006",
+ MonetaryFormats: [2]string{"€123", "-€123"},
+ },
+ {
+ Bcp: "hr",
+ Eurozonep: true,
+ Name: gotext.GetC("Hrvatski", "Language Name"),
+ GroupSeparator: '.',
+ DecimalSeparator: ',',
+ PercentFormat: "123 %",
+ DateFormat: "02. 01. 2006.",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "it",
+ Eurozonep: true,
+ Name: gotext.GetC("Italiano", "Language Name"),
+ GroupSeparator: '.',
+ DecimalSeparator: ',',
+ PercentFormat: "123%",
+ DateFormat: "02/01/06",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "lb",
+ Eurozonep: true,
+ Name: gotext.GetC("Lëtzebuergesch", "Language Name"),
+ GroupSeparator: '.',
+ DecimalSeparator: ',',
+ PercentFormat: "123 %",
+ DateFormat: "02.01.06",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "lt",
+ Eurozonep: true,
+ Name: gotext.GetC("Lietuvių", "Language Name"),
+ GroupSeparator: ' ',
+ DecimalSeparator: ',',
+ PercentFormat: "123 %",
+ DateFormat: "2006-01-02",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "lv",
+ Eurozonep: true,
+ Name: gotext.GetC("Latviešu", "Language Name"),
+ GroupSeparator: ' ',
+ DecimalSeparator: ',',
+ PercentFormat: "123%",
+ DateFormat: "02.01.06",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "mt",
+ Eurozonep: true,
+ Name: gotext.GetC("Malti", "Language Name"),
+ GroupSeparator: ',',
+ DecimalSeparator: '.',
+ PercentFormat: "123%",
+ DateFormat: "02/01/2006",
+ MonetaryFormats: [2]string{"€123", "-€123"},
+ },
+ {
+ Bcp: "nl",
+ Eurozonep: true,
+ Enabledp: true,
+ Name: gotext.GetC("Nederlands", "Language Name"),
+ GroupSeparator: '.',
+ DecimalSeparator: ',',
+ PercentFormat: "123%",
+ DateFormat: "02-01-2006",
+ MonetaryFormats: [2]string{"€ 123", "€ -123"},
+ },
+ {
+ Bcp: "pt",
+ Eurozonep: true,
+ Name: gotext.GetC("Português", "Language Name"),
+ GroupSeparator: ' ',
+ DecimalSeparator: ',',
+ PercentFormat: "123%",
+ DateFormat: "02/01/06",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "sk",
+ Eurozonep: true,
+ Name: gotext.GetC("Slovenčina", "Language Name"),
+ GroupSeparator: ' ',
+ DecimalSeparator: ',',
+ PercentFormat: "123 %",
+ DateFormat: "2. 1. 2006",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "sl",
+ Eurozonep: true,
+ Name: gotext.GetC("Slovenščina", "Language Name"),
+ GroupSeparator: '.',
+ DecimalSeparator: ',',
+ PercentFormat: "123 %",
+ DateFormat: "2. 1. 06",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "sv",
+ Eurozonep: true,
+ Enabledp: true,
+ Name: gotext.GetC("Svenska", "Language Name"),
+ GroupSeparator: ' ',
+ DecimalSeparator: ',',
+ PercentFormat: "123 %",
+ DateFormat: "2006-01-02",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "tr",
+ Eurozonep: true,
+ Name: gotext.GetC("Türkçe", "Language Name"),
+ GroupSeparator: '.',
+ DecimalSeparator: ',',
+ PercentFormat: "%123",
+ DateFormat: "2.01.2006",
+ MonetaryFormats: [2]string{"€123", "-€123"},
+ },
+ {
+ Bcp: "bg",
+ Name: gotext.GetC("Български", "Language Name"),
+ GroupSeparator: ' ',
+ DecimalSeparator: ',',
+ PercentFormat: "123%",
+ DateFormat: "2.01.06 г.",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "ro",
+ Name: gotext.GetC("Română", "Language Name"),
+ GroupSeparator: '.',
+ DecimalSeparator: ',',
+ PercentFormat: "123 %",
+ DateFormat: "02.01.2006",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+ {
+ Bcp: "uk",
+ Name: gotext.GetC("Українська", "Language Name"),
+ GroupSeparator: ' ',
+ DecimalSeparator: ',',
+ PercentFormat: "123%",
+ DateFormat: "02.01.06",
+ MonetaryFormats: [2]string{"123 €", "-123 €"},
+ },
+}
diff --git a/src/mintage/parser.go b/src/mintage/parser.go
deleted file mode 100644
index 364b6e8..0000000
--- a/src/mintage/parser.go
+++ /dev/null
@@ -1,297 +0,0 @@
-package mintage
-
-import (
- "bufio"
- "fmt"
- "io"
- "strconv"
- "strings"
- "time"
-)
-
-type SyntaxError struct {
- expected, got string
- file string
- linenr int
-}
-
-func (e SyntaxError) Error() string {
- return fmt.Sprintf("%s:%d: syntax error: expected %s but got %s",
- e.file, e.linenr, e.expected, e.got)
-}
-
-type Data struct {
- Standard []SRow
- Commemorative []CRow
-}
-
-type SRow struct {
- Year int
- Mintmark string
- Mintages [typeCount][denoms]int
-}
-
-type CRow struct {
- Year int
- Mintmark string
- Name string
- Mintage [typeCount]int
-}
-
-const (
- TypeCirc = iota
- TypeNIFC
- TypeProof
- typeCount
-)
-
-const (
- Unknown = -iota - 1
- Invalid
-)
-
-const (
- denoms = 8
- ws = " \t"
-)
-
-func Parse(r io.Reader, file string) (Data, error) {
- yearsSince := time.Now().Year() - 1999 + 1
- data := Data{
- Standard: make([]SRow, 0, yearsSince),
- Commemorative: make([]CRow, 0, yearsSince),
- }
-
- scanner := bufio.NewScanner(r)
- for linenr := 1; scanner.Scan(); linenr++ {
- line := strings.Trim(scanner.Text(), ws)
- if isBlankOrComment(line) {
- continue
- }
-
- if len(line) < 4 || !isNumeric(line[:4], false) {
- return Data{}, SyntaxError{
- expected: "4-digit year",
- got: line,
- linenr: linenr,
- file: file,
- }
- }
-
- var (
- commem bool
- mintmark string
- )
- year, _ := strconv.Atoi(line[:4])
- line = line[4:]
-
- if len(line) != 0 {
- if strings.ContainsRune(ws, rune(line[0])) {
- commem = true
- goto out
- }
- if line[0] != '-' {
- return Data{}, SyntaxError{
- expected: "end-of-line or mintmark",
- got: line,
- linenr: linenr,
- file: file,
- }
- }
-
- if line = line[1:]; len(line) == 0 {
- return Data{}, SyntaxError{
- expected: "mintmark",
- got: "end-of-line",
- linenr: linenr,
- file: file,
- }
- }
-
- switch i := strings.IndexAny(line, ws); i {
- case 0:
- return Data{}, SyntaxError{
- expected: "mintmark",
- got: "whitespace",
- linenr: linenr,
- file: file,
- }
- case -1:
- mintmark = line
- default:
- mintmark, line = line[:i], line[i:]
- commem = true
- }
- }
- out:
-
- if !commem {
- row := SRow{
- Year: year,
- Mintmark: mintmark,
- }
- for i := range row.Mintages {
- line = ""
- for isBlankOrComment(line) {
- if !scanner.Scan() {
- return Data{}, SyntaxError{
- expected: "mintage row",
- got: "end-of-file",
- linenr: linenr,
- file: file,
- }
- }
- line = strings.Trim(scanner.Text(), ws)
- linenr++
- }
-
- tokens := strings.FieldsFunc(line, func(r rune) bool {
- return strings.ContainsRune(ws, r)
- })
- if tokcnt := len(tokens); tokcnt != denoms {
- word := "entries"
- if tokcnt == 1 {
- word = "entry"
- }
- return Data{}, SyntaxError{
- expected: fmt.Sprintf("%d mintage entries", denoms),
- got: fmt.Sprintf("%d %s", tokcnt, word),
- linenr: linenr,
- file: file,
- }
- }
-
- for j, tok := range tokens {
- if tok != "?" && !isNumeric(tok, true) {
- return Data{}, SyntaxError{
- expected: "numeric mintage figure or ‘?’",
- got: tok,
- linenr: linenr,
- file: file,
- }
- }
-
- if tok == "?" {
- row.Mintages[i][j] = Unknown
- } else {
- row.Mintages[i][j] = atoiWithDots(tok)
- }
- }
- }
-
- data.Standard = append(data.Standard, row)
- } else {
- row := CRow{
- Year: year,
- Mintmark: mintmark,
- }
- line = strings.TrimLeft(line, ws)
- if line[0] != '"' {
- return Data{}, SyntaxError{
- expected: "string",
- got: line,
- linenr: linenr,
- file: file,
- }
- }
-
- line = line[1:]
- switch i := strings.IndexByte(line, '"'); i {
- case -1:
- return Data{}, SyntaxError{
- expected: "closing quote",
- got: "end-of-line",
- linenr: linenr,
- file: file,
- }
- case 0:
- return Data{}, SyntaxError{
- expected: "commemorated event",
- got: "empty string",
- linenr: linenr,
- file: file,
- }
- default:
- row.Name, line = line[:i], line[i+1:]
- }
-
- if len(line) != 0 {
- return Data{}, SyntaxError{
- expected: "end-of-line",
- got: line,
- linenr: linenr,
- file: file,
- }
- }
-
- for isBlankOrComment(line) {
- if !scanner.Scan() {
- return Data{}, SyntaxError{
- expected: "mintage row",
- got: "end-of-file",
- linenr: linenr,
- file: file,
- }
- }
- line = strings.Trim(scanner.Text(), ws)
- linenr++
- }
-
- tokens := strings.FieldsFunc(line, func(r rune) bool {
- return strings.ContainsRune(ws, r)
- })
- if tokcnt := len(tokens); tokcnt != typeCount {
- word := "entries"
- if tokcnt == 1 {
- word = "entry"
- }
- return Data{}, SyntaxError{
- expected: fmt.Sprintf("%d mintage entries", typeCount),
- got: fmt.Sprintf("%d %s", tokcnt, word),
- linenr: linenr,
- file: file,
- }
- }
-
- for i, tok := range tokens {
- if tok == "?" {
- row.Mintage[i] = Unknown
- } else {
- row.Mintage[i] = atoiWithDots(tok)
- }
- }
-
- data.Commemorative = append(data.Commemorative, row)
- }
- }
-
- return data, nil
-}
-
-func isNumeric(s string, dot bool) bool {
- for _, ch := range s {
- switch ch {
- case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
- default:
- if ch != '.' || !dot {
- return false
- }
- }
- }
- return true
-}
-
-func atoiWithDots(s string) int {
- n := 0
- for _, ch := range s {
- if ch == '.' {
- continue
- }
- n = n*10 + int(ch) - '0'
- }
- return n
-}
-
-func isBlankOrComment(s string) bool {
- return len(s) == 0 || s[0] == '#'
-}
diff --git a/src/mintage/parser_test.go b/src/mintage/parser_test.go
deleted file mode 100644
index 76e0f01..0000000
--- a/src/mintage/parser_test.go
+++ /dev/null
@@ -1,233 +0,0 @@
-package mintage
-
-import (
- "bytes"
- "errors"
- "testing"
-)
-
-func TestParserComplete(t *testing.T) {
- data, err := Parse(bytes.NewBuffer([]byte(`
- 2020
- 1000 1001 1002 1003 1004 1005 1006 1007
- 1100 1101 1102 1103 1104 1105 1106 1107
- 1200 1201 1202 1203 1204 1205 1206 1207
- 2021-KNM
- 2.000 ? 2002 2003 2004 2005 2006 2007
- 2.100 ? 2102 2103 2104 2105 2106 2107
- 2.200 ? 2202 2203 2204 2205 2206 2207
- 2021-MdP
- 3000 3001 3002 3003 3004 3005 3006 3007
- 3100 3101 3102 3103 3104 3105 3106 3107
- 3200 3201 3202 3203 3204 3205 3206 3207
- 2022
- 4000 4001 4.002 4003 4004 4005 4006 4007
- 4100 4101 4.102 4103 4104 4105 4106 4107
- 4200 4201 4.202 4203 4204 4205 4206 4207
-
- 2009 "10th Anniversary of Economic and Monetary Union"
- 1000 2000 3000
- 2022-⋆ "35th Anniversary of the Erasmus Programme"
- 1001 ? 3001
- `)), "-")
-
- if err != nil {
- t.Fatalf(`Expected err=nil; got "%s"`, err)
- }
-
- for i, row := range data.Standard {
- for k := TypeCirc; k <= TypeProof; k++ {
- for j, col := range row.Mintages[k] {
- n := 1000*(i+1) + 100*k + j
- if i == 1 && j == 1 {
- n = Unknown
- }
- if col != n {
- t.Fatalf("Expected data.Standard[%d].Mintages[%d][%d]=%d; got %d",
- i, k, j, col, n)
- }
- }
- }
- }
-
- for i, row := range data.Commemorative {
- for k := TypeCirc; k <= TypeProof; k++ {
- n := 1000*(k+1) + i
- if i == 1 && k == 1 {
- n = Unknown
- }
- if row.Mintage[k] != n {
- t.Fatalf("Expected row.Mintage[%d]=%d; got %d",
- k, n, row.Mintage[k])
- }
- }
- }
-
- if len(data.Standard) != 4 {
- t.Fatalf("Expected len(data.Standard)=2; got %d", len(data.Standard))
- }
- if len(data.Commemorative) != 2 {
- t.Fatalf("Expected len(data.Commemorative)=2; got %d", len(data.Commemorative))
- }
-
- for i, x := range [...]struct {
- year int
- mintmark, name string
- }{
- {2009, "", "10th Anniversary of Economic and Monetary Union"},
- {2022, "⋆", "35th Anniversary of the Erasmus Programme"},
- } {
- if data.Commemorative[i].Year != x.year {
- t.Fatalf("Expected data.Commemorative[%d].Year=%d; got %d",
- i, x.year, data.Commemorative[i].Year)
- }
- if data.Commemorative[i].Mintmark != x.mintmark {
- t.Fatalf(`Expected data.Commemorative[%d].Mintmark="%s"; got "%s"`,
- i, x.mintmark, data.Commemorative[i].Mintmark)
- }
- if data.Commemorative[i].Name != x.name {
- t.Fatalf(`Expected data.Commemorative[%d].Name="%s"; got "%s"`,
- i, x.name, data.Commemorative[i].Name)
- }
- }
-}
-
-func TestParserMintmarks(t *testing.T) {
- data, err := Parse(bytes.NewBuffer([]byte(`
- 2020
- 1000 1001 1002 1003 1004 1005 1006 1007
- 1100 1101 1102 1103 1104 1105 1106 1107
- 1200 1201 1202 1203 1204 1205 1206 1207
- 2021-KNM
- 2.000 ? 2002 2003 2004 2005 2006 2007
- 2.100 ? 2102 2103 2104 2105 2106 2107
- 2.200 ? 2202 2203 2204 2205 2206 2207
- 2021-MdP
- 3000 3001 3002 3003 3004 3005 3006 3007
- 3100 3101 3102 3103 3104 3105 3106 3107
- 3200 3201 3202 3203 3204 3205 3206 3207
- 2022
- 4000 4001 4.002 4003 4004 4005 4006 4007
- 4100 4101 4.102 4103 4104 4105 4106 4107
- 4200 4201 4.202 4203 4204 4205 4206 4207
- `)), "-")
-
- if err != nil {
- t.Fatalf(`Expected err=nil; got "%s"`, err)
- }
-
- for i, row := range data.Standard {
- for j, col := range row.Mintages[TypeCirc] {
- n := 1000*(i+1) + j
- if i == 1 && j == 1 {
- n = Unknown
- }
- if col != n {
- t.Fatalf("Expected data.Standard[%d].Mintages[TypeCirc][%d]=%d; got %d",
- i, j, col, n)
- }
- }
- }
-
- for i, y := range [...]int{2020, 2021, 2021, 2022} {
- if data.Standard[i].Year != y {
- t.Fatalf("Expected data.Standard[%d].Year=%d; got %d",
- i, y, data.Standard[i].Year)
- }
- }
-
- for i, m := range [...]string{"", "KNM", "MdP", ""} {
- if data.Standard[i].Mintmark != m {
- t.Fatalf(`Expected data.Standard[%d].Mintmark="%s"; got "%s"`,
- i, m, data.Standard[i].Mintmark)
- }
- }
-}
-
-func TestParserNoYear(t *testing.T) {
- _, err := Parse(bytes.NewBuffer([]byte(`
- 1.000 1001 1002 1003 1004 1005 1006 1007
- 1.100 1101 1102 1103 1104 1105 1106 1107
- 1.200 1201 1202 1203 1204 1205 1206 1207
- 2021
- 2000 ? 2002 2003 2004 2005 2006 2007
- 2100 ? 2102 2103 2104 2105 2106 2107
- 2200 ? 2202 2203 2204 2205 2206 2207
- `)), "-")
-
- var sErr SyntaxError
- if !errors.As(err, &sErr) {
- t.Fatalf("Expected err=SyntaxError; got %s", err)
- }
-}
-
-func TestParserBadToken(t *testing.T) {
- _, err := Parse(bytes.NewBuffer([]byte(`
- 2020
- 1.000 1001 1002 1003 1004 1005 1006 1007
- 1.100 1101 1102 1103 1104 1105 1106 1107
- 1.200 1201 1202 1203 1204 1205 1206 1207
- 2021 Naughty!
- 2000 ? 2002 2003 2004 2005 2006 2007
- 2100 ? 2102 2103 2104 2105 2106 2107
- 2200 ? 2202 2203 2204 2205 2206 2207
- `)), "-")
-
- var sErr SyntaxError
- if !errors.As(err, &sErr) {
- t.Fatalf("Expected err=SyntaxError; got %s", err)
- }
-}
-
-func TestParserShortRow(t *testing.T) {
- _, err := Parse(bytes.NewBuffer([]byte(`
- 2020
- 1.000 1001 1002 1003 1004 1005 1006 1007
- 1.100 1101 1102 1103 1104 1105 1106 1107
- 1.200 1201 1202 1203 1204 1205 1206 1207
- 2021
- 2000 ? 2002 2003 2004 2005 2006 2007
- 2100 ? 2102 2103 2104 2105 2106
- 2200 ? 2202 2203 2204 2205 2206 2207
- `)), "-")
-
- var sErr SyntaxError
- if !errors.As(err, &sErr) {
- t.Fatalf("Expected err=SyntaxError; got %s", err)
- }
-}
-
-func TestParserLongRow(t *testing.T) {
- _, err := Parse(bytes.NewBuffer([]byte(`
- 2020
- 1.000 1001 1002 1003 1004 1005 1006 1007
- 1.100 1101 1102 1103 1104 1105 1106 1107
- 1.200 1201 1202 1203 1204 1205 1206 1207
- 2021
- 2000 ? 2002 2003 2004 2005 2006 2007
- 2100 ? 2102 2103 2104 2105 2106 2107 2108
- 2200 ? 2202 2203 2204 2205 2206 2207
- `)), "-")
-
- var sErr SyntaxError
- if !errors.As(err, &sErr) {
- t.Fatalf("Expected err=SyntaxError; got %s", err)
- }
-}
-
-func TestParserMissingRow(t *testing.T) {
- _, err := Parse(bytes.NewBuffer([]byte(`
- 2020
- 1.000 1001 1002 1003 1004 1005 1006 1007
- 1.100 1101 1102 1103 1104 1105 1106 1107
- 1.200 1201 1202 1203 1204 1205 1206 1207
- 2021
- 2000 ? 2002 2003 2004 2005 2006 2007
- 2200 ? 2202 2203 2204 2205 2206 2207
- `)), "-")
-
- var sErr SyntaxError
- if !errors.As(err, &sErr) {
- t.Fatalf("Expected err=SyntaxError; got %s", err)
- }
-}
diff --git a/src/rosetta/bg/messages.gotext.json b/src/rosetta/bg/messages.gotext.json
deleted file mode 100644
index b813f46..0000000
--- a/src/rosetta/bg/messages.gotext.json
+++ /dev/null
@@ -1,1310 +0,0 @@
-{
- "language": "bg",
- "messages": [
- {
- "id": "Andorra",
- "message": "Andorra",
- "translation": ""
- },
- {
- "id": "Austria",
- "message": "Austria",
- "translation": ""
- },
- {
- "id": "Belgium",
- "message": "Belgium",
- "translation": ""
- },
- {
- "id": "Cyprus",
- "message": "Cyprus",
- "translation": ""
- },
- {
- "id": "Germany",
- "message": "Germany",
- "translation": ""
- },
- {
- "id": "Estonia",
- "message": "Estonia",
- "translation": ""
- },
- {
- "id": "Spain",
- "message": "Spain",
- "translation": ""
- },
- {
- "id": "Finland",
- "message": "Finland",
- "translation": ""
- },
- {
- "id": "France",
- "message": "France",
- "translation": ""
- },
- {
- "id": "Greece",
- "message": "Greece",
- "translation": ""
- },
- {
- "id": "Croatia",
- "message": "Croatia",
- "translation": ""
- },
- {
- "id": "Ireland",
- "message": "Ireland",
- "translation": ""
- },
- {
- "id": "Italy",
- "message": "Italy",
- "translation": ""
- },
- {
- "id": "Lithuania",
- "message": "Lithuania",
- "translation": ""
- },
- {
- "id": "Luxembourg",
- "message": "Luxembourg",
- "translation": ""
- },
- {
- "id": "Latvia",
- "message": "Latvia",
- "translation": ""
- },
- {
- "id": "Monaco",
- "message": "Monaco",
- "translation": ""
- },
- {
- "id": "Malta",
- "message": "Malta",
- "translation": ""
- },
- {
- "id": "Netherlands",
- "message": "Netherlands",
- "translation": ""
- },
- {
- "id": "Portugal",
- "message": "Portugal",
- "translation": ""
- },
- {
- "id": "Slovenia",
- "message": "Slovenia",
- "translation": ""
- },
- {
- "id": "Slovakia",
- "message": "Slovakia",
- "translation": ""
- },
- {
- "id": "San Marino",
- "message": "San Marino",
- "translation": ""
- },
- {
- "id": "Vatican City",
- "message": "Vatican City",
- "translation": ""
- },
- {
- "id": "Page Not Found",
- "message": "Page Not Found",
- "translation": ""
- },
- {
- "id": "The page you were looking for does not exist. If you believe this is a mistake then don’t hesitate to contact @onetruemangoman on Discord or email us at %s.",
- "message": "The page you were looking for does not exist. If you believe this is a mistake then don’t hesitate to contact @onetruemangoman on Discord or email us at %s.",
- "translation": ""
- },
- {
- "id": "Euro Cash",
- "message": "Euro Cash",
- "translation": ""
- },
- {
- "id": "Found a mistake or want to contribute missing information?",
- "message": "Found a mistake or want to contribute missing information?",
- "translation": ""
- },
- {
- "id": "Feel free to contact us!",
- "message": "Feel free to contact us!",
- "translation": ""
- },
- {
- "id": "If you’re seeing this page, it means that something went wrong on our end that we need to fix. Our team has been notified of this error, and we apologise for the inconvenience.",
- "message": "If you’re seeing this page, it means that something went wrong on our end that we need to fix. Our team has been notified of this error, and we apologise for the inconvenience.",
- "translation": ""
- },
- {
- "id": "If this issue persists, don’t hesitate to contact @onetruemangoman on Discord or to email us at %s.",
- "message": "If this issue persists, don’t hesitate to contact @onetruemangoman on Discord or to email us at %s.",
- "translation": ""
- },
- {
- "id": "Home",
- "message": "Home",
- "translation": ""
- },
- {
- "id": "News",
- "message": "News",
- "translation": ""
- },
- {
- "id": "Coin Collecting",
- "message": "Coin Collecting",
- "translation": ""
- },
- {
- "id": "Coins",
- "message": "Coins",
- "translation": ""
- },
- {
- "id": "Banknotes",
- "message": "Banknotes",
- "translation": ""
- },
- {
- "id": "Jargon",
- "message": "Jargon",
- "translation": ""
- },
- {
- "id": "Discord",
- "message": "Discord",
- "translation": ""
- },
- {
- "id": "About",
- "message": "About",
- "translation": ""
- },
- {
- "id": "Language",
- "message": "Language",
- "translation": ""
- },
- {
- "id": "About Us",
- "message": "About Us",
- "translation": ""
- },
- {
- "id": "Open Source",
- "message": "Open Source",
- "translation": ""
- },
- {
- "id": "This website is an open project, and a collaboration between developers, translators, and researchers. All source code, data, images, and more for the website are open source and can be found %shere%s. This site is licensed under the BSD 0-Clause license giving you the full freedom to do whatever you would like with anyof the content on this site.",
- "message": "This website is an open project, and a collaboration between developers, translators, and researchers. All source code, data, images, and more for the website are open source and can be found %shere%s. This site is licensed under the BSD 0-Clause license giving you the full freedom to do whatever you would like with anyof the content on this site.",
- "translation": ""
- },
- {
- "id": "Contact Us",
- "message": "Contact Us",
- "translation": ""
- },
- {
- "id": "While we try to stay as up-to-date as possible and to fact check our information, it is always possible that we get something wrong, lack a translation, or are missing some piece of data you may have. In such a case don’t hesitate to contact us; we’ll try to get the site updated or fixed as soon as possible. You are always free to contribute via a git patch if you are more technically included, but if not you can always send an email to %s or contact ‘@onetruemangoman’ on Discord.",
- "message": "While we try to stay as up-to-date as possible and to fact check our information, it is always possible that we get something wrong, lack a translation, or are missing some piece of data you may have. In such a case don’t hesitate to contact us; we’ll try to get the site updated or fixed as soon as possible. You are always free to contribute via a git patch if you are more technically included, but if not you can always send an email to %s or contact ‘@onetruemangoman’ on Discord.",
- "translation": ""
- },
- {
- "id": "Special Thanks",
- "message": "Special Thanks",
- "translation": ""
- },
- {
- "id": "Development",
- "message": "Development",
- "translation": ""
- },
- {
- "id": "Research",
- "message": "Research",
- "translation": ""
- },
- {
- "id": "Translations",
- "message": "Translations",
- "translation": ""
- },
- {
- "id": "British- \u0026 American English",
- "message": "British- \u0026 American English",
- "translation": ""
- },
- {
- "id": "Icelandic",
- "message": "Icelandic",
- "translation": ""
- },
- {
- "id": "Andorran Euro Coin Designs",
- "message": "Andorran Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "On March of 2013 Andorra held a public design competition for all denominations except for the €2 denomination which the government pre-decided would bear the coat of arms of Andorra. Each set of denominations had a theme that participants had to center their designs around. These themes were:",
- "message": "On March of 2013 Andorra held a public design competition for all denominations except for the €2 denomination which the government pre-decided would bear the coat of arms of Andorra. Each set of denominations had a theme that participants had to center their designs around. These themes were:",
- "translation": ""
- },
- {
- "id": "%s, %s, and %s",
- "message": "%s, %s, and %s",
- "translation": ""
- },
- {
- "id": "Andorran landscapes, nature, fauna, and flora",
- "message": "Andorran landscapes, nature, fauna, and flora",
- "translation": ""
- },
- {
- "id": "Andorra’s Romanesque art",
- "message": "Andorra’s Romanesque art",
- "translation": ""
- },
- {
- "id": "Casa de la Vall",
- "message": "Casa de la Vall",
- "translation": ""
- },
- {
- "id": "The results of the design contest with a few modifications are what became the coins that entered circulation in 2014. While each set of denominations has its own design, all four designs prominently feature the country name ‘ANDORRA’ along the outer portion of the design with the year of issue written underneath.",
- "message": "The results of the design contest with a few modifications are what became the coins that entered circulation in 2014. While each set of denominations has its own design, all four designs prominently feature the country name ‘ANDORRA’ along the outer portion of the design with the year of issue written underneath.",
- "translation": ""
- },
- {
- "id": "The Andorran 1-, 2-, and 5 euro cent coins all feature the same design of a Pyrenean chamois in the center of the coin with a golden eagle flying above. Both animals are native to Andorra as well as the surrounding regions of France and Spain.",
- "message": "The Andorran 1-, 2-, and 5 euro cent coins all feature the same design of a Pyrenean chamois in the center of the coin with a golden eagle flying above. Both animals are native to Andorra as well as the surrounding regions of France and Spain.",
- "translation": ""
- },
- {
- "id": "The Andorran golden cents feature the Romanesque church of Santa Coloma. The church is the oldest in Andorra, dating back to the 9th century and is a UNESCO World Heritage site. Originally these coins were planned to depict an image of Christ, but that plan failed to go through after objections from the European Commission on grounds of religious neutrality on August 2013.",
- "message": "The Andorran golden cents feature the Romanesque church of Santa Coloma. The church is the oldest in Andorra, dating back to the 9th century and is a UNESCO World Heritage site. Originally these coins were planned to depict an image of Christ, but that plan failed to go through after objections from the European Commission on grounds of religious neutrality on August 2013.",
- "translation": ""
- },
- {
- "id": "The 1 Euro coin features the Case de la Vall: the former headquarters of the General Council of Andorra. It was constructed in 1580 as a manor and tower defense by the Busquets family.",
- "message": "The 1 Euro coin features the Case de la Vall: the former headquarters of the General Council of Andorra. It was constructed in 1580 as a manor and tower defense by the Busquets family.",
- "translation": ""
- },
- {
- "id": "Finally, the 2 Euro coin features the coat of arms of Andorra. The Andorran coat of arms is a grid of 4 other coats of arms which from top-to-bottom, left-to-right are:",
- "message": "Finally, the 2 Euro coin features the coat of arms of Andorra. The Andorran coat of arms is a grid of 4 other coats of arms which from top-to-bottom, left-to-right are:",
- "translation": ""
- },
- {
- "id": "The bottom of the coat of arms has the motto ‘%sVIRTVS VNITA FORTIOR%s’ (‘UNITED VIRTUE IS STRONGER’).",
- "message": "The bottom of the coat of arms has the motto ‘%sVIRTVS VNITA FORTIOR%s’ (‘UNITED VIRTUE IS STRONGER’).",
- "translation": ""
- },
- {
- "id": "Austrian Euro Coin Designs",
- "message": "Austrian Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "The Austrian euro coins can be grouped into three different themes. The bronze coins feature Austrian flowers, the gold coins feature Austrian architecture, and the bimetalic coins feature famous Austrian people. All coins also feature an Austrian flag as well as the coins denomination. These coins together with the %sGreek euro coins%s are the only coins that feature the denomination on both the common- and national-sides of the coin.",
- "message": "The Austrian euro coins can be grouped into three different themes. The bronze coins feature Austrian flowers, the gold coins feature Austrian architecture, and the bimetalic coins feature famous Austrian people. All coins also feature an Austrian flag as well as the coins denomination. These coins together with the %sGreek euro coins%s are the only coins that feature the denomination on both the common- and national-sides of the coin.",
- "translation": ""
- },
- {
- "id": "The bronze coins feature the Alpine gentian, -edelweiss, and -primrose respectively, and were chosen to symbolize the role that Austria played in the development of EU environmental policy.",
- "message": "The bronze coins feature the Alpine gentian, -edelweiss, and -primrose respectively, and were chosen to symbolize the role that Austria played in the development of EU environmental policy.",
- "translation": ""
- },
- {
- "id": "The €0.10 coin features St. Stephen’s Cathedral. It symbolises the Viennese Gothic architectural style dating to around the year 1160. The €0.20 coin features Belvedere Palace. This is an example of Baroque architecture and symbolises the national freedom and sovereignty of Austria. The final gold coin — the €0.50 coin — features the Secession Building: an exhibition hall in the Art Nouveau style.",
- "message": "The €0.10 coin features St. Stephen’s Cathedral. It symbolises the Viennese Gothic architectural style dating to around the year 1160. The €0.20 coin features Belvedere Palace. This is an example of Baroque architecture and symbolises the national freedom and sovereignty of Austria. The final gold coin — the €0.50 coin — features the Secession Building: an exhibition hall in the Art Nouveau style.",
- "translation": ""
- },
- {
- "id": "The two bimetallic coins feature the busts of the musical composer Wolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist and Nobel Peace Prize winner Bertha von Suttner.",
- "message": "The two bimetallic coins feature the busts of the musical composer Wolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist and Nobel Peace Prize winner Bertha von Suttner.",
- "translation": ""
- },
- {
- "id": "Belgian Euro Coin Designs",
- "message": "Belgian Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "Since 1999 Belgium has released three series of euro coins, which each series having a single design repeated on all denominations. Starting in 1999 the Belgian euro coins featured the portrait of King Albert II with the %sroyal monogram%s in the outer ring of the coins.",
- "message": "Since 1999 Belgium has released three series of euro coins, which each series having a single design repeated on all denominations. Starting in 1999 the Belgian euro coins featured the portrait of King Albert II with the %sroyal monogram%s in the outer ring of the coins.",
- "translation": ""
- },
- {
- "id": "In 2008 a second series of coins was released featuring a slightly-modified design in which the royal monogram was moved to the inner portion of the coin along with the year of mintage in order to comply with the European Commission’s guidelines. The country code ‘BE’ was also added to the design underneath the royal monogram.",
- "message": "In 2008 a second series of coins was released featuring a slightly-modified design in which the royal monogram was moved to the inner portion of the coin along with the year of mintage in order to comply with the European Commission’s guidelines. The country code ‘BE’ was also added to the design underneath the royal monogram.",
- "translation": ""
- },
- {
- "id": "After his accession to the throne Belgium began a third series of coins in 2014 featuring the portrait of King Philippe. As is customary with coins bearing the portraits of monarchs, the direction in which the portrait faces was flipped to face right instead of left.",
- "message": "After his accession to the throne Belgium began a third series of coins in 2014 featuring the portrait of King Philippe. As is customary with coins bearing the portraits of monarchs, the direction in which the portrait faces was flipped to face right instead of left.",
- "translation": ""
- },
- {
- "id": "Croatian Euro Coin Designs",
- "message": "Croatian Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "The Croatian euro coins feature four different themes, with each design featuring the Croatian checkerboard and the countries name in Croatian (‘%sHRVATSKA%s’). All designs were selected after voting in a public design competition.",
- "message": "The Croatian euro coins feature four different themes, with each design featuring the Croatian checkerboard and the countries name in Croatian (‘%sHRVATSKA%s’). All designs were selected after voting in a public design competition.",
- "translation": ""
- },
- {
- "id": "The 1-, 2-, and 5 euro cent coins were designed by Maja Škripelj and feature a motif of the letters ‘HR’ in the %sGlagolitic script%s — an old Slavic script that saw use in Croatia up until the 19th century — with ‘HR’ representing Croatia’s country code.",
- "message": "The 1-, 2-, and 5 euro cent coins were designed by Maja Škripelj and feature a motif of the letters ‘HR’ in the %sGlagolitic script%s — an old Slavic script that saw use in Croatia up until the 19th century — with ‘HR’ representing Croatia’s country code.",
- "translation": ""
- },
- {
- "id": "The 10-, 20-, and 50 euro cent coins were designed by Ivan Domagoj Račić and feature the portrait of the inventor and engineer %sNikola Tesla%s. The design of these coins caused controversy when they were first announced with the National Bank of Serbia claiming that it would be an appropriation of the cultural and scientific heritage of the Serbian people to feature the portrait of someone who ‘declared himself to be Serbian by origin’.",
- "message": "The 10-, 20-, and 50 euro cent coins were designed by Ivan Domagoj Račić and feature the portrait of the inventor and engineer %sNikola Tesla%s. The design of these coins caused controversy when they were first announced with the National Bank of Serbia claiming that it would be an appropriation of the cultural and scientific heritage of the Serbian people to feature the portrait of someone who ‘declared himself to be Serbian by origin’.",
- "translation": ""
- },
- {
- "id": "The 1 euro coin was designed by Jagor Šunde, David Čemeljić and Fran Zekan and features a marten. The marten is the semi-official national animal of Croatia and the Kuna — their pre-Euro currency — was named after the marten (‘%skuna zlatica%s’ in Croatian).",
- "message": "The 1 euro coin was designed by Jagor Šunde, David Čemeljić and Fran Zekan and features a marten. The marten is the semi-official national animal of Croatia and the Kuna — their pre-Euro currency — was named after the marten (‘%skuna zlatica%s’ in Croatian).",
- "translation": ""
- },
- {
- "id": "The 2 euro coin was designed by Ivan Šivak and features the map of Croatia. The coin also has an edge-inscription that reads ‘%sO LIJEPA O DRAGA O SLATKA SLOBODO%s’ (‘OH BEAUTIFUL, OH DEAR, OH SWEET FREEDOM’) which is a line from the play %sDubravka%s by Ivan Gundulić.",
- "message": "The 2 euro coin was designed by Ivan Šivak and features the map of Croatia. The coin also has an edge-inscription that reads ‘%sO LIJEPA O DRAGA O SLATKA SLOBODO%s’ (‘OH BEAUTIFUL, OH DEAR, OH SWEET FREEDOM’) which is a line from the play %sDubravka%s by Ivan Gundulić.",
- "translation": ""
- },
- {
- "id": "Dutch Euro Coin Designs",
- "message": "Dutch Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "From the years 1999–2013 all Dutch euro coins featured the portrait of Queen Beatrix of the Netherlands. After her abdication from the throne in 2013 the designs of all denominations were changed to feature the portrait of the new King Willem-Alexander. After her abdication the direction in which the monarchs portrait faced was flipped; a tradition dating back to the earliest coins of the Kingdom of the Netherlands.",
- "message": "From the years 1999–2013 all Dutch euro coins featured the portrait of Queen Beatrix of the Netherlands. After her abdication from the throne in 2013 the designs of all denominations were changed to feature the portrait of the new King Willem-Alexander. After her abdication the direction in which the monarchs portrait faced was flipped; a tradition dating back to the earliest coins of the Kingdom of the Netherlands.",
- "translation": ""
- },
- {
- "id": "Coins featuring both monarchs contain text reading ‘%sBEATRIX KONINGIN DER NEDERLANDEN%s’ (‘BEATRIX QUEEN OF THE NETHERLANDS’) and ‘%sWillem-Alexander Koning der Nederlanden%s’ (‘Willem-Alexander King of the Netherlands’) respectively. The €2 coins also feature an edge-inscription reading ‘%sGOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆%s’ (‘GOD ⋆ IS ⋆ WITH ⋆ US ⋆’).",
- "message": "Coins featuring both monarchs contain text reading ‘%sBEATRIX KONINGIN DER NEDERLANDEN%s’ (‘BEATRIX QUEEN OF THE NETHERLANDS’) and ‘%sWillem-Alexander Koning der Nederlanden%s’ (‘Willem-Alexander King of the Netherlands’) respectively. The €2 coins also feature an edge-inscription reading ‘%sGOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆%s’ (‘GOD ⋆ IS ⋆ WITH ⋆ US ⋆’).",
- "translation": ""
- },
- {
- "id": "The €1 and €2 coins featuring King Willem-Alexander were minted with a much lower %srelief%s than most euro coins of the same denomination. As a result it is not uncommon for these coins to appear worn after little use in circulation.",
- "message": "The €1 and €2 coins featuring King Willem-Alexander were minted with a much lower %srelief%s than most euro coins of the same denomination. As a result it is not uncommon for these coins to appear worn after little use in circulation.",
- "translation": ""
- },
- {
- "id": "Euro Coin Designs",
- "message": "Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "Here you’ll be able to view all the coin designs for each country in the Eurozone. This section of the site doesn’t include minor varieties such as different mintmarks or errors; those are on the %svarieties%s page.",
- "message": "Here you’ll be able to view all the coin designs for each country in the Eurozone. This section of the site doesn’t include minor varieties such as different mintmarks or errors; those are on the %svarieties%s page.",
- "translation": ""
- },
- {
- "id": "Euro Coin Mintages",
- "message": "Euro Coin Mintages",
- "translation": ""
- },
- {
- "id": "Here you’ll be able to view all the known mintages for all coins. You’ll also be able to filter on country, denomination, etc. If you have any mintage data that’s missing from our site, feel free to contact us.",
- "message": "Here you’ll be able to view all the known mintages for all coins. You’ll also be able to filter on country, denomination, etc. If you have any mintage data that’s missing from our site, feel free to contact us.",
- "translation": ""
- },
- {
- "id": "Additional Notes",
- "message": "Additional Notes",
- "translation": ""
- },
- {
- "id": "Most coins from the years 2003–2016 are listed as NIFC coins while other popular sources such as Numista claim they were minted for circulation. For more information on why others are wrong, %sclick here%s.",
- "message": "Most coins from the years 2003–2016 are listed as NIFC coins while other popular sources such as Numista claim they were minted for circulation. For more information on why others are wrong, %sclick here%s.",
- "translation": ""
- },
- {
- "id": "In 2003 Numista calculated a total of %d coins issued for coin sets per denomination. Our own calculations found only %d. Numista also forgot to include the many hundred thousand coins from the coin roll sets that were produced.",
- "message": "In 2003 Numista calculated a total of %d coins issued for coin sets per denomination. Our own calculations found only %d. Numista also forgot to include the many hundred thousand coins from the coin roll sets that were produced.",
- "translation": ""
- },
- {
- "id": "Country",
- "message": "Country",
- "translation": ""
- },
- {
- "id": "Filter",
- "message": "Filter",
- "translation": ""
- },
- {
- "id": "Standard Issue Coins",
- "message": "Standard Issue Coins",
- "translation": ""
- },
- {
- "id": "Year",
- "message": "Year",
- "translation": ""
- },
- {
- "id": "Unknown",
- "message": "Unknown",
- "translation": ""
- },
- {
- "id": "Commemorative Coins",
- "message": "Commemorative Coins",
- "translation": ""
- },
- {
- "id": "Commemorated Issue",
- "message": "Commemorated Issue",
- "translation": ""
- },
- {
- "id": "Mintage",
- "message": "Mintage",
- "translation": ""
- },
- {
- "id": "Euro Coins",
- "message": "Euro Coins",
- "translation": ""
- },
- {
- "id": "On this section of the site you can find everything there is to know about the coins of the Eurozone.",
- "message": "On this section of the site you can find everything there is to know about the coins of the Eurozone.",
- "translation": ""
- },
- {
- "id": "Designs",
- "message": "Designs",
- "translation": ""
- },
- {
- "id": "View the 600+ different Euro-coin designs!",
- "message": "View the 600+ different Euro-coin designs!",
- "translation": ""
- },
- {
- "id": "Mintages",
- "message": "Mintages",
- "translation": ""
- },
- {
- "id": "View the mintage figures of all the Euro coins!",
- "message": "View the mintage figures of all the Euro coins!",
- "translation": ""
- },
- {
- "id": "Varieties",
- "message": "Varieties",
- "translation": ""
- },
- {
- "id": "View all the known Euro varieties!",
- "message": "View all the known Euro varieties!",
- "translation": ""
- },
- {
- "id": "Coin Roll Hunting",
- "message": "Coin Roll Hunting",
- "translation": ""
- },
- {
- "id": "What is Coin Roll Hunting?",
- "message": "What is Coin Roll Hunting?",
- "translation": ""
- },
- {
- "id": "Coin roll hunting is a popular method of coin collecting in which you withdrawal cash from your bank in the form of coins which you then search through to find new additions to your collection. Once you’ve searched through all your coins, you will typically deposit your left over coins at the bank and withdrawal new coins.",
- "message": "Coin roll hunting is a popular method of coin collecting in which you withdrawal cash from your bank in the form of coins which you then search through to find new additions to your collection. Once you’ve searched through all your coins, you will typically deposit your left over coins at the bank and withdrawal new coins.",
- "translation": ""
- },
- {
- "id": "This type of coin collecting is often called ‘Coin Roll Hunting’ due to the fact that coins are often withdrawn in paper-wrapped rolls. You may however find that your coins come in plastic bags instead (common in countries like Ireland).",
- "message": "This type of coin collecting is often called ‘Coin Roll Hunting’ due to the fact that coins are often withdrawn in paper-wrapped rolls. You may however find that your coins come in plastic bags instead (common in countries like Ireland).",
- "translation": ""
- },
- {
- "id": "Depending on your bank and branch, the process of obtaining coins may differ. Some banks require you speak to a teller, others have coin machines. Some banks may also require that you are a customer or even to have a business account. If you aren’t sure about if you can get coins we suggest you contact your bank, although further down this page we also have information about the withdrawal of coins in various countries and major banks.",
- "message": "Depending on your bank and branch, the process of obtaining coins may differ. Some banks require you speak to a teller, others have coin machines. Some banks may also require that you are a customer or even to have a business account. If you aren’t sure about if you can get coins we suggest you contact your bank, although further down this page we also have information about the withdrawal of coins in various countries and major banks.",
- "translation": ""
- },
- {
- "id": "Getting Started",
- "message": "Getting Started",
- "translation": ""
- },
- {
- "id": "To get started with coin roll hunting you should first contact your bank or check their website to find details regarding coin withdrawal. You will then typically need to go to the bank to pick up your coins. Depending on your bank you may be able to withdrawal coins from a machine, although often you can pick up your coins from the banks tellers. You will also often need to pay a small fee for each roll, although some banks don’t charge fees.",
- "message": "To get started with coin roll hunting you should first contact your bank or check their website to find details regarding coin withdrawal. You will then typically need to go to the bank to pick up your coins. Depending on your bank you may be able to withdrawal coins from a machine, although often you can pick up your coins from the banks tellers. You will also often need to pay a small fee for each roll, although some banks don’t charge fees.",
- "translation": ""
- },
- {
- "id": "It is also important to find details regarding the deposit of coins. Depositing coins often also requires the payment of a fee — one which is typically more expensive than the withdrawal fees. If depositing your coins is too expensive you can always exchange your left over coins at shops for banknotes. It is often cheaper (or even free) to deposit banknotes.",
- "message": "It is also important to find details regarding the deposit of coins. Depositing coins often also requires the payment of a fee — one which is typically more expensive than the withdrawal fees. If depositing your coins is too expensive you can always exchange your left over coins at shops for banknotes. It is often cheaper (or even free) to deposit banknotes.",
- "translation": ""
- },
- {
- "id": "In some countries such as Austria it is even common to be able to withdrawal new coins from your account by exchanging the left over coins you already have.",
- "message": "In some countries such as Austria it is even common to be able to withdrawal new coins from your account by exchanging the left over coins you already have.",
- "translation": ""
- },
- {
- "id": "Country-Specific Details",
- "message": "Country-Specific Details",
- "translation": ""
- },
- {
- "id": "Below you can find all sorts of country-specific information we have regarding obtaining coin rolls. We lack a lot of information for many of the countries, so if you have any additional information such as your banks fees, the availability of coin roll machines, etc. feel free to contact us! You can find our contact information %shere%s.",
- "message": "Below you can find all sorts of country-specific information we have regarding obtaining coin rolls. We lack a lot of information for many of the countries, so if you have any additional information such as your banks fees, the availability of coin roll machines, etc. feel free to contact us! You can find our contact information %shere%s.",
- "translation": ""
- },
- {
- "id": "Be aware of the face that the information below is prone to being outdated, and as such may not reflect the current reality.",
- "message": "Be aware of the face that the information below is prone to being outdated, and as such may not reflect the current reality.",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained from Andbank, Crèdit Andorrà, and MoraBanc. All three of these banks require that you are a customer to get rolls. There have however been reports of individuals managing to get rolls without any fees and without being a customer by simply asking kindly at the bank.",
- "message": "Coin rolls can be obtained from Andbank, Crèdit Andorrà, and MoraBanc. All three of these banks require that you are a customer to get rolls. There have however been reports of individuals managing to get rolls without any fees and without being a customer by simply asking kindly at the bank.",
- "translation": ""
- },
- {
- "id": "The Austrian National Bank does not distribute circulated rolls but sells rolls of commemorative coins at face value on release as well as uncirculated rolls for all denominations.",
- "message": "The Austrian National Bank does not distribute circulated rolls but sells rolls of commemorative coins at face value on release as well as uncirculated rolls for all denominations.",
- "translation": ""
- },
- {
- "id": "There is a fee of %s per roll. Rolls can be purchased with cash at machines. These machines are available to everyone, but not in all branches. Look for the ‘Münzrollengeber’ filter option %shere%s.",
- "message": "There is a fee of %s per roll. Rolls can be purchased with cash at machines. These machines are available to everyone, but not in all branches. Look for the ‘Münzrollengeber’ filter option %shere%s.",
- "translation": ""
- },
- {
- "id": "There is a fee of %s per roll. You must be a customer to use machines to get rolls. Rolls have no fees when purchased at counters, but counters redirect you to machines if they work; counters accept cash. You must present an Erste Bank card to buy rolls from machines, but you can pay with cash.",
- "message": "There is a fee of %s per roll. You must be a customer to use machines to get rolls. Rolls have no fees when purchased at counters, but counters redirect you to machines if they work; counters accept cash. You must present an Erste Bank card to buy rolls from machines, but you can pay with cash.",
- "translation": ""
- },
- {
- "id": "Depositing coins is free for up to %s a day, at which point you pay 1%% for any additional deposited coins. You must also be a customer. Depositing coins is free for all Erste Bank customers at Dornbirner Sparkasse with no limit.",
- "message": "Depositing coins is free for up to %s a day, at which point you pay 1%% for any additional deposited coins. You must also be a customer. Depositing coins is free for all Erste Bank customers at Dornbirner Sparkasse with no limit.",
- "translation": ""
- },
- {
- "id": "There is a fee of %s per roll if you aren’t a customer, and %s otherwise. Coin deposits are free if you’re a customer.",
- "message": "There is a fee of %s per roll if you aren’t a customer, and %s otherwise. Coin deposits are free if you’re a customer.",
- "translation": ""
- },
- {
- "id": "Reportedly fee-less with no need of being a customer, but this is unconfirmed.",
- "message": "Reportedly fee-less with no need of being a customer, but this is unconfirmed.",
- "translation": ""
- },
- {
- "id": "There is a %s fee with no limit on the number of rolls.",
- "message": "There is a %s fee with no limit on the number of rolls.",
- "translation": ""
- },
- {
- "id": "Belgian Central Bank",
- "message": "Belgian Central Bank",
- "translation": ""
- },
- {
- "id": "You can visit the Belgian Central Bank in Brussels as an EU citizen. You can order coin rolls for no fee up to %s in value. They seem to distribute uncirculated coins (no commemoratives).",
- "message": "You can visit the Belgian Central Bank in Brussels as an EU citizen. You can order coin rolls for no fee up to %s in value. They seem to distribute uncirculated coins (no commemoratives).",
- "translation": ""
- },
- {
- "id": "Free for customers but getting coin rolls is still difficult sometimes. Non-customers cannot get rolls.",
- "message": "Free for customers but getting coin rolls is still difficult sometimes. Non-customers cannot get rolls.",
- "translation": ""
- },
- {
- "id": "Free for customers when you order through their online platform.",
- "message": "Free for customers when you order through their online platform.",
- "translation": ""
- },
- {
- "id": "Bank of Cyprus",
- "message": "Bank of Cyprus",
- "translation": ""
- },
- {
- "id": "At the Bank of Cyprus it is possible to buy bags of coins without being a customer, and without paying any additional fees. Depending on the branch you visit you may have coin roll machine available. Do note that the bags provided by the Bank of Cyprus are around twice as large as usual with %s bags containing 50 coins and the other denomination bags containing 100 coins.",
- "message": "At the Bank of Cyprus it is possible to buy bags of coins without being a customer, and without paying any additional fees. Depending on the branch you visit you may have coin roll machine available. Do note that the bags provided by the Bank of Cyprus are around twice as large as usual with %s bags containing 50 coins and the other denomination bags containing 100 coins.",
- "translation": ""
- },
- {
- "id": "Coin roll availability may vary across banks and branches, as well as the price. You must be a customer to purchase coin rolls unless specified otherwise.",
- "message": "Coin roll availability may vary across banks and branches, as well as the price. You must be a customer to purchase coin rolls unless specified otherwise.",
- "translation": ""
- },
- {
- "id": "German Federal Bank (Deutsche Bundesbank)",
- "message": "German Federal Bank (Deutsche Bundesbank)",
- "translation": ""
- },
- {
- "id": "You can obtain regular- and commemorative coins for face value including 5-, 10-, and 20 euro coins. You do not need to be a customer although depending on your branch you may need to make an appointment. The purchase of coins can only be done with cash.",
- "message": "You can obtain regular- and commemorative coins for face value including 5-, 10-, and 20 euro coins. You do not need to be a customer although depending on your branch you may need to make an appointment. The purchase of coins can only be done with cash.",
- "translation": ""
- },
- {
- "id": "Hand-rolled coin rolls can be obtained with no additional fees.",
- "message": "Hand-rolled coin rolls can be obtained with no additional fees.",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained for a fee of %s–%s per roll. The amount varies per branch.",
- "message": "Coin rolls can be obtained for a fee of %s–%s per roll. The amount varies per branch.",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained for a fee of %s per roll.",
- "message": "Coin rolls can be obtained for a fee of %s per roll.",
- "translation": ""
- },
- {
- "id": "Obtaining coin rolls in Estonia is typically quite difficult, and often expensive. You also often need to make an appointment in advance.",
- "message": "Obtaining coin rolls in Estonia is typically quite difficult, and often expensive. You also often need to make an appointment in advance.",
- "translation": ""
- },
- {
- "id": "Central Bank of Estonia Museum",
- "message": "Central Bank of Estonia Museum",
- "translation": ""
- },
- {
- "id": "You can purchase commemorative coins (even those released years ago) at face value. It is also an interesting museum to visit in general.",
- "message": "You can purchase commemorative coins (even those released years ago) at face value. It is also an interesting museum to visit in general.",
- "translation": ""
- },
- {
- "id": "Coin rolls are free but you must be a customer.",
- "message": "Coin rolls are free but you must be a customer.",
- "translation": ""
- },
- {
- "id": "Bank of Spain",
- "message": "Bank of Spain",
- "translation": ""
- },
- {
- "id": "You can purchase individual coins and commemorative coin rolls (even those of other countries). You can watch %shere%s to see how to do it.",
- "message": "You can purchase individual coins and commemorative coin rolls (even those of other countries). You can watch %shere%s to see how to do it.",
- "translation": ""
- },
- {
- "id": "Coin rolls have a fee of %s for 5 rolls. This seems to vary by region.",
- "message": "Coin rolls have a fee of %s for 5 rolls. This seems to vary by region.",
- "translation": ""
- },
- {
- "id": "Coin rolls have no fees.",
- "message": "Coin rolls have no fees.",
- "translation": ""
- },
- {
- "id": "La Caixa",
- "message": "La Caixa",
- "translation": ""
- },
- {
- "id": "Coin rolls have no fees and can be purchased with cash. You do not need to be a customer, although this needs to be re-verified.",
- "message": "Coin rolls have no fees and can be purchased with cash. You do not need to be a customer, although this needs to be re-verified.",
- "translation": ""
- },
- {
- "id": "Finland has no coin roll machines, but you can find vending machines or coin exchange machines (albeit they are rare).",
- "message": "Finland has no coin roll machines, but you can find vending machines or coin exchange machines (albeit they are rare).",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained with no fees.",
- "message": "Coin rolls can be obtained with no fees.",
- "translation": ""
- },
- {
- "id": "Bank of Finland",
- "message": "Bank of Finland",
- "translation": ""
- },
- {
- "id": "It is probably not possible to obtain coin rolls, but this is not confirmed.",
- "message": "It is probably not possible to obtain coin rolls, but this is not confirmed.",
- "translation": ""
- },
- {
- "id": "Coin roll machines are uncommon, only some banks have them and you need to be a customer. You may also need to order them in advance.",
- "message": "Coin roll machines are uncommon, only some banks have them and you need to be a customer. You may also need to order them in advance.",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained with no fee. You must be a customer.",
- "message": "Coin rolls can be obtained with no fee. You must be a customer.",
- "translation": ""
- },
- {
- "id": "and",
- "message": "and",
- "translation": ""
- },
- {
- "id": "Free coin rolls if you are a customer or %s per roll if you are not a customer. There are coin roll machines.",
- "message": "Free coin rolls if you are a customer or %s per roll if you are not a customer. There are coin roll machines.",
- "translation": ""
- },
- {
- "id": "There are coin roll machines but it is not yet known if you need to be a customer or if there are fees.",
- "message": "There are coin roll machines but it is not yet known if you need to be a customer or if there are fees.",
- "translation": ""
- },
- {
- "id": "Bank of Greece (Τράπεζα της Ελλάδος)",
- "message": "Bank of Greece (Τράπεζα της Ελλάδος)",
- "translation": ""
- },
- {
- "id": "Fee-less coin rolls for everyone (you will need to show ID). The latest commemorative coins are also sold for face value.",
- "message": "Fee-less coin rolls for everyone (you will need to show ID). The latest commemorative coins are also sold for face value.",
- "translation": ""
- },
- {
- "id": "Fee-less coin bags for everyone (no ID necessary). Smaller denominations are often not given out, and the coin bags you recieve are very large (there are reports of %s bags containing 250 coins).",
- "message": "Fee-less coin bags for everyone (no ID necessary). Smaller denominations are often not given out, and the coin bags you recieve are very large (there are reports of %s bags containing 250 coins).",
- "translation": ""
- },
- {
- "id": "In general, coin rolls are available at banks with a fee of %s per roll; rolls could potentially have no fee if you only need a few.",
- "message": "In general, coin rolls are available at banks with a fee of %s per roll; rolls could potentially have no fee if you only need a few.",
- "translation": ""
- },
- {
- "id": "There are coin roll machines but it is unknown if you need to be a customer or if there are additional fees.",
- "message": "There are coin roll machines but it is unknown if you need to be a customer or if there are additional fees.",
- "translation": ""
- },
- {
- "id": "Bank of Italy",
- "message": "Bank of Italy",
- "translation": ""
- },
- {
- "id": "Coin rolls are available to everyone.",
- "message": "Coin rolls are available to everyone.",
- "translation": ""
- },
- {
- "id": "Works, but with very high fees (5%% of cost).",
- "message": "Works, but with very high fees (5%% of cost).",
- "translation": ""
- },
- {
- "id": "Fee of %s per roll of 2 euro coins.",
- "message": "Fee of %s per roll of 2 euro coins.",
- "translation": ""
- },
- {
- "id": "As far as we are aware, Lietuvos Bankas only distributes coin rolls to businesses.",
- "message": "As far as we are aware, Lietuvos Bankas only distributes coin rolls to businesses.",
- "translation": ""
- },
- {
- "id": "It may be worth checking out payout machines to exchange banknotes into coins.",
- "message": "It may be worth checking out payout machines to exchange banknotes into coins.",
- "translation": ""
- },
- {
- "id": "Luxembourgish Central Bank (Banque Centrale du Luxembourg)",
- "message": "Luxembourgish Central Bank (Banque Centrale du Luxembourg)",
- "translation": ""
- },
- {
- "id": "We currently have no information regarding regular coins, however their webshop sells commemorative coins (for a high premium, but better than most resellers). Commemorative coins are also available for purchase in-person.",
- "message": "We currently have no information regarding regular coins, however their webshop sells commemorative coins (for a high premium, but better than most resellers). Commemorative coins are also available for purchase in-person.",
- "translation": ""
- },
- {
- "id": "You should be able to get coin rolls with no additional fees.",
- "message": "You should be able to get coin rolls with no additional fees.",
- "translation": ""
- },
- {
- "id": "In general coin rolls are sold with a fee of %s per roll, but we’re lacking a lot of information.",
- "message": "In general coin rolls are sold with a fee of %s per roll, but we’re lacking a lot of information.",
- "translation": ""
- },
- {
- "id": "Bank of Valletta and HSBC Bank Malta",
- "message": "Bank of Valletta and HSBC Bank Malta",
- "translation": ""
- },
- {
- "id": "You can get rolls for a fee of %s per roll. You must order coin rolls through their online platform, and you must be a customer.",
- "message": "You can get rolls for a fee of %s per roll. You must order coin rolls through their online platform, and you must be a customer.",
- "translation": ""
- },
- {
- "id": "Banks in the Netherlands do not carry cash, and as such it’s not possible to obtain rolls from bank tellers. Obtaining coins from the Dutch Central Bank (De Nederlandsche Bank) is also not possible. If you want to obtain coin rolls you need to use a Geldmaat coin roll machine which can be found in specific branches of GAMMA and Karwei. Geldmaat offers a map on their website where you can search for branches with these machines; you can find that map %shere%s.",
- "message": "Banks in the Netherlands do not carry cash, and as such it’s not possible to obtain rolls from bank tellers. Obtaining coins from the Dutch Central Bank (De Nederlandsche Bank) is also not possible. If you want to obtain coin rolls you need to use a Geldmaat coin roll machine which can be found in specific branches of GAMMA and Karwei. Geldmaat offers a map on their website where you can search for branches with these machines; you can find that map %shere%s.",
- "translation": ""
- },
- {
- "id": "In order to be able to use a Geldmaat coin machine, you must be a customer of either ABN AMRO, ING, or Rabobank. You also cannot pay by cash, only card payments are allowed. All three banks charge a withdrawal fee for getting coin rolls, which are detailed in the list below.",
- "message": "In order to be able to use a Geldmaat coin machine, you must be a customer of either ABN AMRO, ING, or Rabobank. You also cannot pay by cash, only card payments are allowed. All three banks charge a withdrawal fee for getting coin rolls, which are detailed in the list below.",
- "translation": ""
- },
- {
- "id": "%s per roll.",
- "message": "%s per roll.",
- "translation": ""
- },
- {
- "id": "Base fee of %s + %s per roll.",
- "message": "Base fee of %s + %s per roll.",
- "translation": ""
- },
- {
- "id": "One- and two-cent coins have been removed from circulation and cannot be obtained.",
- "message": "One- and two-cent coins have been removed from circulation and cannot be obtained.",
- "translation": ""
- },
- {
- "id": "Coin bags are sold with no additional fees to bank customers.",
- "message": "Coin bags are sold with no additional fees to bank customers.",
- "translation": ""
- },
- {
- "id": "Bank of Portugal (Banco de Portugal)",
- "message": "Bank of Portugal (Banco de Portugal)",
- "translation": ""
- },
- {
- "id": "Coin bags are sold with no additional fees to everyone.",
- "message": "Coin bags are sold with no additional fees to everyone.",
- "translation": ""
- },
- {
- "id": "In general there is a %s fee for coin rolls.",
- "message": "In general there is a %s fee for coin rolls.",
- "translation": ""
- },
- {
- "id": "Bank of Slovenia (Banka Slovenije)",
- "message": "Bank of Slovenia (Banka Slovenije)",
- "translation": ""
- },
- {
- "id": "You can purchase commemorative coins for face value, and coin rolls are sold with no fees to everyone.",
- "message": "You can purchase commemorative coins for face value, and coin rolls are sold with no fees to everyone.",
- "translation": ""
- },
- {
- "id": "National Bank of Slovakia (Národná banka Slovenska)",
- "message": "National Bank of Slovakia (Národná banka Slovenska)",
- "translation": ""
- },
- {
- "id": "You may be able to get uncirculated rolls, but this is not yet confirmed.",
- "message": "You may be able to get uncirculated rolls, but this is not yet confirmed.",
- "translation": ""
- },
- {
- "id": "You can get an unlimited number of rolls for a %s fee. You must be a customer of the bank.",
- "message": "You can get an unlimited number of rolls for a %s fee. You must be a customer of the bank.",
- "translation": ""
- },
- {
- "id": "Ask the Pope nicely and he’ll probably give you some Vatican coins for free.",
- "message": "Ask the Pope nicely and he’ll probably give you some Vatican coins for free.",
- "translation": ""
- },
- {
- "id": "We currently have no information regarding coin roll hunting in %s.",
- "message": "We currently have no information regarding coin roll hunting in %s.",
- "translation": ""
- },
- {
- "id": "Coin Storage",
- "message": "Coin Storage",
- "translation": ""
- },
- {
- "id": "There are many different methods of storing your collecting, each with their own benefits and drawbacks. This page will describe the most common methods collectors use to store their coins, as well as the pros and cons of each method.",
- "message": "There are many different methods of storing your collecting, each with their own benefits and drawbacks. This page will describe the most common methods collectors use to store their coins, as well as the pros and cons of each method.",
- "translation": ""
- },
- {
- "id": "Coin Albums",
- "message": "Coin Albums",
- "translation": ""
- },
- {
- "id": "Coin albums are one of the most popular ways of storing coins. In a coin album you will have multiple coin sheets. These sheets are plastic pages with slots that you can put your coin in to keep them protected. When searching for sheets for your album it is very important to ensure that they do not contain any PVC, which will damage your coins. Some albums will come with sheets already included.",
- "message": "Coin albums are one of the most popular ways of storing coins. In a coin album you will have multiple coin sheets. These sheets are plastic pages with slots that you can put your coin in to keep them protected. When searching for sheets for your album it is very important to ensure that they do not contain any PVC, which will damage your coins. Some albums will come with sheets already included.",
- "translation": ""
- },
- {
- "id": "Albums can be an affordable way to store your coins, but higher-end albums can be a bit expensive. Also remember to always ensure that your albums do not contain any PVC!",
- "message": "Albums can be an affordable way to store your coins, but higher-end albums can be a bit expensive. Also remember to always ensure that your albums do not contain any PVC!",
- "translation": ""
- },
- {
- "id": "Coin Boxes",
- "message": "Coin Boxes",
- "translation": ""
- },
- {
- "id": "Coin boxes are to many people the most aesthetic way to store your coins. A coin box is comprised of various layers which can be stacked ontop of each other. Each layer has various holes where you can insert your coins. Typically you are meant to store your coins in a layer encased in a coin capsule.",
- "message": "Coin boxes are to many people the most aesthetic way to store your coins. A coin box is comprised of various layers which can be stacked ontop of each other. Each layer has various holes where you can insert your coins. Typically you are meant to store your coins in a layer encased in a coin capsule.",
- "translation": ""
- },
- {
- "id": "Boxes are quite space-inefficient and are one of the most expensive ways to store your coins, but at the same time they offer a great visual appeal.",
- "message": "Boxes are quite space-inefficient and are one of the most expensive ways to store your coins, but at the same time they offer a great visual appeal.",
- "translation": ""
- },
- {
- "id": "Coin Capsules",
- "message": "Coin Capsules",
- "translation": ""
- },
- {
- "id": "Coin capsules are plastic capsules you can put your coin in. They offer good protection to your coins, while still allowing you to view all parts of your coin easily, including the edge engravings and -inscriptions. Capsules are also far more durable than flips, and can be opened and closed repeatedly allowing for them to be reused. This isn’t really possible with flips.",
- "message": "Coin capsules are plastic capsules you can put your coin in. They offer good protection to your coins, while still allowing you to view all parts of your coin easily, including the edge engravings and -inscriptions. Capsules are also far more durable than flips, and can be opened and closed repeatedly allowing for them to be reused. This isn’t really possible with flips.",
- "translation": ""
- },
- {
- "id": "Capsules can be a bit pricey, but are reusable and are very durable. They also come in different sizes, so make sure you get the right size for your coins.",
- "message": "Capsules can be a bit pricey, but are reusable and are very durable. They also come in different sizes, so make sure you get the right size for your coins.",
- "translation": ""
- },
- {
- "id": "Coin Flips",
- "message": "Coin Flips",
- "translation": ""
- },
- {
- "id": "Coin flips, also known as ‘2x2’ flips by some Americans are small cardboard flips with a plastic covered hole in the middle for viewing. Most coin flips are stapled, meaning you put your coin in the flip and staple it shut. These kinds of flips are very cheap, and you can buy stacks of a few hundred for only a few euros. If you don’t like the staples though, you can also buy adhesive-flips that glue themselves shut. These flips are more expensive, but also look better than their stapled equivalents.",
- "message": "Coin flips, also known as ‘2x2’ flips by some Americans are small cardboard flips with a plastic covered hole in the middle for viewing. Most coin flips are stapled, meaning you put your coin in the flip and staple it shut. These kinds of flips are very cheap, and you can buy stacks of a few hundred for only a few euros. If you don’t like the staples though, you can also buy adhesive-flips that glue themselves shut. These flips are more expensive, but also look better than their stapled equivalents.",
- "translation": ""
- },
- {
- "id": "Coin slips are also pretty space efficient, and can be easily stacked in boxes for compact storage. Many collectors also like to write notes about their coins on the flips. There also exist special sheets for coin albums that allow you to put in flipped coins, but this is more expensive and less space-efficient than simply using flips or an album without flips.",
- "message": "Coin slips are also pretty space efficient, and can be easily stacked in boxes for compact storage. Many collectors also like to write notes about their coins on the flips. There also exist special sheets for coin albums that allow you to put in flipped coins, but this is more expensive and less space-efficient than simply using flips or an album without flips.",
- "translation": ""
- },
- {
- "id": "Coin Rolls",
- "message": "Coin Rolls",
- "translation": ""
- },
- {
- "id": "This is probably the most inexpensive way to store your coins. If you take good care of the paper when opening your coin rolls, you can simply reuse them for storage. Just roll your coins back up and put some rubber bands on the ends. You can also get reusable plastic rolls that can be opened and closed. You will need different rolls based on the denomination you want to store, but they are very space-efficient.",
- "message": "This is probably the most inexpensive way to store your coins. If you take good care of the paper when opening your coin rolls, you can simply reuse them for storage. Just roll your coins back up and put some rubber bands on the ends. You can also get reusable plastic rolls that can be opened and closed. You will need different rolls based on the denomination you want to store, but they are very space-efficient.",
- "translation": ""
- },
- {
- "id": "Examples",
- "message": "Examples",
- "translation": ""
- },
- {
- "id": "In case you’re looking for some inspiration on how to store your collections, here are some examples.",
- "message": "In case you’re looking for some inspiration on how to store your collections, here are some examples.",
- "translation": ""
- },
- {
- "id": "Euro Coin Collecting",
- "message": "Euro Coin Collecting",
- "translation": ""
- },
- {
- "id": "What is Vending Machine Hunting?",
- "message": "What is Vending Machine Hunting?",
- "translation": ""
- },
- {
- "id": "‘Vending machine hunting’ is a strategy of collecting coins whereby you continuously insert coins into a vending machine and cancel the transaction by pressing the return button. When the vending machine returns your coins to you, you will often get different coins from the ones you put in, and you can repeat this process until you’ve searched through every coin in the machine.",
- "message": "‘Vending machine hunting’ is a strategy of collecting coins whereby you continuously insert coins into a vending machine and cancel the transaction by pressing the return button. When the vending machine returns your coins to you, you will often get different coins from the ones you put in, and you can repeat this process until you’ve searched through every coin in the machine.",
- "translation": ""
- },
- {
- "id": "The Test Coins",
- "message": "The Test Coins",
- "translation": ""
- },
- {
- "id": "First, you want to make sure the vending machine you come across actually gives back change — sometimes they don’t! Throw in a 10 cent coin and press the return button. If it doesn’t give the coin back, you can move on to the next machine; there’s a high chance it won’t return higher denominations either. Next throw in a random 2 euro coin and press the return button. You should do this because vending machines may not return 2 euro coins, but rather 1 euro- or 50 cent coins instead. It’s better to find out immediately as opposed to later once you’ve already put in all of your 2 euro coins.",
- "message": "First, you want to make sure the vending machine you come across actually gives back change — sometimes they don’t! Throw in a 10 cent coin and press the return button. If it doesn’t give the coin back, you can move on to the next machine; there’s a high chance it won’t return higher denominations either. Next throw in a random 2 euro coin and press the return button. You should do this because vending machines may not return 2 euro coins, but rather 1 euro- or 50 cent coins instead. It’s better to find out immediately as opposed to later once you’ve already put in all of your 2 euro coins.",
- "translation": ""
- },
- {
- "id": "The Stopper",
- "message": "The Stopper",
- "translation": ""
- },
- {
- "id": "We want to be able to know when we’ve gone through all the coins in the vending machine. To do this, take out a coin and mark it with something (drawing on it with a Sharpie works well), then put it into the machine. Next time you get the same coin back, you know you’ve gone through everything.",
- "message": "We want to be able to know when we’ve gone through all the coins in the vending machine. To do this, take out a coin and mark it with something (drawing on it with a Sharpie works well), then put it into the machine. Next time you get the same coin back, you know you’ve gone through everything.",
- "translation": ""
- },
- {
- "id": "Rejected Stoppers and Coins",
- "message": "Rejected Stoppers and Coins",
- "translation": ""
- },
- {
- "id": "Sometimes you may throw a stopper in, but you hear a ‘clunk’ sound, as if the coin was dropped into a box (normally adding a coin should be silent after you throw it in). This means the coin was not added to the stack properly, and so it will not be returned. Pay attention to this noise, because you won’t be getting the stopper back! Throw in another marked coin instead until the machine accepts the coin.",
- "message": "Sometimes you may throw a stopper in, but you hear a ‘clunk’ sound, as if the coin was dropped into a box (normally adding a coin should be silent after you throw it in). This means the coin was not added to the stack properly, and so it will not be returned. Pay attention to this noise, because you won’t be getting the stopper back! Throw in another marked coin instead until the machine accepts the coin.",
- "translation": ""
- },
- {
- "id": "(Non-)Merging Machines",
- "message": "(Non-)Merging Machines",
- "translation": ""
- },
- {
- "id": "We generally identify between two main types of vending machines.",
- "message": "We generally identify between two main types of vending machines.",
- "translation": ""
- },
- {
- "id": "Merging",
- "message": "Merging",
- "translation": ""
- },
- {
- "id": "The vending machine merges change together. For example if you throw in five 50 cent coins, the machine returns either two 1 euro coins and one 50 cent coin or one 2 euro and one 50 cent coin. This usually means you can hunt 2 euro coins very quickly but other denominations only once at a time. A good tip is to throw in an odd number of euros and 80 cents if you want to search through all denominations.",
- "message": "The vending machine merges change together. For example if you throw in five 50 cent coins, the machine returns either two 1 euro coins and one 50 cent coin or one 2 euro and one 50 cent coin. This usually means you can hunt 2 euro coins very quickly but other denominations only once at a time. A good tip is to throw in an odd number of euros and 80 cents if you want to search through all denominations.",
- "translation": ""
- },
- {
- "id": "Non-Merging",
- "message": "Non-Merging",
- "translation": ""
- },
- {
- "id": "The vending machine does not merge change together. This means if you throw in five 50 cent coins it will return five 50 cent coins. This makes it very easy to hunt a large amount of a specific denomination.",
- "message": "The vending machine does not merge change together. This means if you throw in five 50 cent coins it will return five 50 cent coins. This makes it very easy to hunt a large amount of a specific denomination.",
- "translation": ""
- },
- {
- "id": "Limits",
- "message": "Limits",
- "translation": ""
- },
- {
- "id": "There are some limits to vending machine hunts which you need to be aware of.",
- "message": "There are some limits to vending machine hunts which you need to be aware of.",
- "translation": ""
- },
- {
- "id": "Maximum Input Limit",
- "message": "Maximum Input Limit",
- "translation": ""
- },
- {
- "id": "Some machines have a maximum amount you can throw in, and will reject anything higher. For example machines with a max limit of five euros will reject any additional coins if you throw in five euros. You can try to go above the limit if you throw in, say, %s and then another one- or two euro coin; the machine will probably accept it.",
- "message": "Some machines have a maximum amount you can throw in, and will reject anything higher. For example machines with a max limit of five euros will reject any additional coins if you throw in five euros. You can try to go above the limit if you throw in, say, %s and then another one- or two euro coin; the machine will probably accept it.",
- "translation": ""
- },
- {
- "id": "Maximum Change Limit",
- "message": "Maximum Change Limit",
- "translation": ""
- },
- {
- "id": "Some machines will either give back large amounts of change in bills or will not give back large amounts of change at all (usually cigarette machines). Read the labels on all machines carefully since these limits are usually written there.",
- "message": "Some machines will either give back large amounts of change in bills or will not give back large amounts of change at all (usually cigarette machines). Read the labels on all machines carefully since these limits are usually written there.",
- "translation": ""
- },
- {
- "id": "Even if no limits are listed, it’s still advised that you exercise caution: it is not uncommon for a vending machine to steal your money. In the case that a vending machine does steal your money, look for a label on the machine that contains a support number.",
- "message": "Even if no limits are listed, it’s still advised that you exercise caution: it is not uncommon for a vending machine to steal your money. In the case that a vending machine does steal your money, look for a label on the machine that contains a support number.",
- "translation": ""
- },
- {
- "id": "For information on Austrian cigarette machines, see the ‘%sCigarette Machines%s’ section.",
- "message": "For information on Austrian cigarette machines, see the ‘%sCigarette Machines%s’ section.",
- "translation": ""
- },
- {
- "id": "Cigarette Machines",
- "message": "Cigarette Machines",
- "translation": ""
- },
- {
- "id": "In some countries where cigarette machines are legal, you can hunt through them as well. Unless you’re in Malta, you must verify your age on them by either sliding an ID card through a sensor or holding a debit card on an RFID scanner; you must do this for every cycle. Sometimes you must also select something to purchase, throw in less money than the cost, and then cancel the purchase. Note that most cigarette machines in Austria have a %s max change limit.",
- "message": "In some countries where cigarette machines are legal, you can hunt through them as well. Unless you’re in Malta, you must verify your age on them by either sliding an ID card through a sensor or holding a debit card on an RFID scanner; you must do this for every cycle. Sometimes you must also select something to purchase, throw in less money than the cost, and then cancel the purchase. Note that most cigarette machines in Austria have a %s max change limit.",
- "translation": ""
- },
- {
- "id": "For RFID scanner machines it helps to wear a glove and slide a debit card into the back of it so you can easily use both hands and don’t have to fumble with a card and coins.",
- "message": "For RFID scanner machines it helps to wear a glove and slide a debit card into the back of it so you can easily use both hands and don’t have to fumble with a card and coins.",
- "translation": ""
- },
- {
- "id": "On this section of the site you can find everything there is to know about collecting Euro coins. If this is a hobby that interests you, join the Discord server linked at the top of the page!",
- "message": "On this section of the site you can find everything there is to know about collecting Euro coins. If this is a hobby that interests you, join the Discord server linked at the top of the page!",
- "translation": ""
- },
- {
- "id": "Learn about collecting coins from coin rolls!",
- "message": "Learn about collecting coins from coin rolls!",
- "translation": ""
- },
- {
- "id": "Learn about the different methods to storing your collection!",
- "message": "Learn about the different methods to storing your collection!",
- "translation": ""
- },
- {
- "id": "Shop Hunting",
- "message": "Shop Hunting",
- "translation": ""
- },
- {
- "id": "Learn about how to collect coins from shop-keepers and other people who deal in cash!",
- "message": "Learn about how to collect coins from shop-keepers and other people who deal in cash!",
- "translation": ""
- },
- {
- "id": "Vending Machine Hunting",
- "message": "Vending Machine Hunting",
- "translation": ""
- },
- {
- "id": "Learn about collecting coins from vending machines!",
- "message": "Learn about collecting coins from vending machines!",
- "translation": ""
- },
- {
- "id": "The Euro Cash Compendium",
- "message": "The Euro Cash Compendium",
- "translation": ""
- },
- {
- "id": "United in",
- "message": "United in",
- "translation": ""
- },
- {
- "id": "diversity",
- "message": "diversity",
- "translation": ""
- },
- {
- "id": "cash",
- "message": "cash",
- "translation": ""
- },
- {
- "id": "Welcome to the Euro Cash Compendium. This sites aims to be a resource for you to discover everything there is to know about the coins and banknotes of the Euro, a currency that spans 26 countries and 350 million people. We also have dedicated sections of the site for collectors.",
- "message": "Welcome to the Euro Cash Compendium. This sites aims to be a resource for you to discover everything there is to know about the coins and banknotes of the Euro, a currency that spans 26 countries and 350 million people. We also have dedicated sections of the site for collectors.",
- "translation": ""
- },
- {
- "id": "Euro Cash Jargon",
- "message": "Euro Cash Jargon",
- "translation": ""
- },
- {
- "id": "Both on this website and in other euro-cash-related forums there are many terms you will come across that you may not immediately understand. This page will hopefully get you up to speed with the most important and frequently-used terminology.",
- "message": "Both on this website and in other euro-cash-related forums there are many terms you will come across that you may not immediately understand. This page will hopefully get you up to speed with the most important and frequently-used terminology.",
- "translation": ""
- },
- {
- "id": "All terms defined below can be used as clickable links which highlight the selected term. It is recommended to use these links when sharing this page with others, so that the relevant terms are highlighted.",
- "message": "All terms defined below can be used as clickable links which highlight the selected term. It is recommended to use these links when sharing this page with others, so that the relevant terms are highlighted.",
- "translation": ""
- },
- {
- "id": "General Terms",
- "message": "General Terms",
- "translation": ""
- },
- {
- "id": "AU coins are coins that are in extremely good condition as a result of limited use in circulation. Unlike the term ‘UNC’, this term is a description of the coins quality, not its usage. AU coins often appear to retain most of their original luster as well as possessing little-to-no scratches or other forms of post-mint damage (PMD).",
- "message": "AU coins are coins that are in extremely good condition as a result of limited use in circulation. Unlike the term ‘UNC’, this term is a description of the coins quality, not its usage. AU coins often appear to retain most of their original luster as well as possessing little-to-no scratches or other forms of post-mint damage (PMD).",
- "translation": ""
- },
- {
- "id": "BU is a general term to refer to coins from coincards and -sets. These are different from UNC coins in that they are typically handled with more care during the minting process and are struck with higher-quality dies than the coins minted for coin rolls resulting in a higher-quality end product. You may also see these coins referred to by the French term ‘fleur de coin’.",
- "message": "BU is a general term to refer to coins from coincards and -sets. These are different from UNC coins in that they are typically handled with more care during the minting process and are struck with higher-quality dies than the coins minted for coin rolls resulting in a higher-quality end product. You may also see these coins referred to by the French term ‘fleur de coin’.",
- "translation": ""
- },
- {
- "id": "NIFC coins are coins minted without the intention of being put into general circulation. These coins are typically minted with the purpose of being put into coincards or coin-sets to be sold to collectors. Occasionally they are also handed out to collectors for face value at banks.",
- "message": "NIFC coins are coins minted without the intention of being put into general circulation. These coins are typically minted with the purpose of being put into coincards or coin-sets to be sold to collectors. Occasionally they are also handed out to collectors for face value at banks.",
- "translation": ""
- },
- {
- "id": "While uncommon, NIFC coins are occasionally found in circulation. This can happen for a variety of reasons such as someone depositing their coin collection (known as a ‘collection dump’), or a collector’s child spending their rare coins on an ice cream. Some coin mints have also been known to put NIFC coins that have gone unsold for multiple years into circulation.",
- "message": "While uncommon, NIFC coins are occasionally found in circulation. This can happen for a variety of reasons such as someone depositing their coin collection (known as a ‘collection dump’), or a collector’s child spending their rare coins on an ice cream. Some coin mints have also been known to put NIFC coins that have gone unsold for multiple years into circulation.",
- "translation": ""
- },
- {
- "id": "Post-mint damage is any damage that a coin has sustained outside of the minting process, such as through being dropped on the ground, hit against a table, etc.",
- "message": "Post-mint damage is any damage that a coin has sustained outside of the minting process, such as through being dropped on the ground, hit against a table, etc.",
- "translation": ""
- },
- {
- "id": "Uncirculated coins are coins that have never been used in a monetary exchange. The term ‘UNC’ is often mistakenly used to refer to coins in very good condition, but this is incorrect. A coin in poor condition that has never been circulated is still considered an ‘UNC’ coin.",
- "message": "Uncirculated coins are coins that have never been used in a monetary exchange. The term ‘UNC’ is often mistakenly used to refer to coins in very good condition, but this is incorrect. A coin in poor condition that has never been circulated is still considered an ‘UNC’ coin.",
- "translation": ""
- },
- {
- "id": "Collector-Specific Terms",
- "message": "Collector-Specific Terms",
- "translation": ""
- },
- {
- "id": "Coin roll hunting is a general term for the activity of searching through coin rolls and -bags to find coins for a collection. Coin rolls and bags are often obtained at banks or coin roll machines.",
- "message": "Coin roll hunting is a general term for the activity of searching through coin rolls and -bags to find coins for a collection. Coin rolls and bags are often obtained at banks or coin roll machines.",
- "translation": ""
- },
- {
- "id": "Select Your Language",
- "message": "Select Your Language",
- "translation": ""
- },
- {
- "id": "Select your preferred language to use on the site.",
- "message": "Select your preferred language to use on the site.",
- "translation": ""
- },
- {
- "id": "Eurozone Languages",
- "message": "Eurozone Languages",
- "translation": ""
- },
- {
- "id": "Other Languages",
- "message": "Other Languages",
- "translation": ""
- }
- ]
-} \ No newline at end of file
diff --git a/src/rosetta/el/messages.gotext.json b/src/rosetta/el/messages.gotext.json
deleted file mode 100644
index 7e035ec..0000000
--- a/src/rosetta/el/messages.gotext.json
+++ /dev/null
@@ -1,1310 +0,0 @@
-{
- "language": "el",
- "messages": [
- {
- "id": "Andorra",
- "message": "Andorra",
- "translation": ""
- },
- {
- "id": "Austria",
- "message": "Austria",
- "translation": ""
- },
- {
- "id": "Belgium",
- "message": "Belgium",
- "translation": ""
- },
- {
- "id": "Cyprus",
- "message": "Cyprus",
- "translation": ""
- },
- {
- "id": "Germany",
- "message": "Germany",
- "translation": ""
- },
- {
- "id": "Estonia",
- "message": "Estonia",
- "translation": ""
- },
- {
- "id": "Spain",
- "message": "Spain",
- "translation": ""
- },
- {
- "id": "Finland",
- "message": "Finland",
- "translation": ""
- },
- {
- "id": "France",
- "message": "France",
- "translation": ""
- },
- {
- "id": "Greece",
- "message": "Greece",
- "translation": ""
- },
- {
- "id": "Croatia",
- "message": "Croatia",
- "translation": ""
- },
- {
- "id": "Ireland",
- "message": "Ireland",
- "translation": ""
- },
- {
- "id": "Italy",
- "message": "Italy",
- "translation": ""
- },
- {
- "id": "Lithuania",
- "message": "Lithuania",
- "translation": ""
- },
- {
- "id": "Luxembourg",
- "message": "Luxembourg",
- "translation": ""
- },
- {
- "id": "Latvia",
- "message": "Latvia",
- "translation": ""
- },
- {
- "id": "Monaco",
- "message": "Monaco",
- "translation": ""
- },
- {
- "id": "Malta",
- "message": "Malta",
- "translation": ""
- },
- {
- "id": "Netherlands",
- "message": "Netherlands",
- "translation": ""
- },
- {
- "id": "Portugal",
- "message": "Portugal",
- "translation": ""
- },
- {
- "id": "Slovenia",
- "message": "Slovenia",
- "translation": ""
- },
- {
- "id": "Slovakia",
- "message": "Slovakia",
- "translation": ""
- },
- {
- "id": "San Marino",
- "message": "San Marino",
- "translation": ""
- },
- {
- "id": "Vatican City",
- "message": "Vatican City",
- "translation": ""
- },
- {
- "id": "Page Not Found",
- "message": "Page Not Found",
- "translation": ""
- },
- {
- "id": "The page you were looking for does not exist. If you believe this is a mistake then don’t hesitate to contact @onetruemangoman on Discord or email us at %s.",
- "message": "The page you were looking for does not exist. If you believe this is a mistake then don’t hesitate to contact @onetruemangoman on Discord or email us at %s.",
- "translation": ""
- },
- {
- "id": "Euro Cash",
- "message": "Euro Cash",
- "translation": ""
- },
- {
- "id": "Found a mistake or want to contribute missing information?",
- "message": "Found a mistake or want to contribute missing information?",
- "translation": ""
- },
- {
- "id": "Feel free to contact us!",
- "message": "Feel free to contact us!",
- "translation": ""
- },
- {
- "id": "If you’re seeing this page, it means that something went wrong on our end that we need to fix. Our team has been notified of this error, and we apologise for the inconvenience.",
- "message": "If you’re seeing this page, it means that something went wrong on our end that we need to fix. Our team has been notified of this error, and we apologise for the inconvenience.",
- "translation": ""
- },
- {
- "id": "If this issue persists, don’t hesitate to contact @onetruemangoman on Discord or to email us at %s.",
- "message": "If this issue persists, don’t hesitate to contact @onetruemangoman on Discord or to email us at %s.",
- "translation": ""
- },
- {
- "id": "Home",
- "message": "Home",
- "translation": ""
- },
- {
- "id": "News",
- "message": "News",
- "translation": ""
- },
- {
- "id": "Coin Collecting",
- "message": "Coin Collecting",
- "translation": ""
- },
- {
- "id": "Coins",
- "message": "Coins",
- "translation": ""
- },
- {
- "id": "Banknotes",
- "message": "Banknotes",
- "translation": ""
- },
- {
- "id": "Jargon",
- "message": "Jargon",
- "translation": ""
- },
- {
- "id": "Discord",
- "message": "Discord",
- "translation": ""
- },
- {
- "id": "About",
- "message": "About",
- "translation": ""
- },
- {
- "id": "Language",
- "message": "Language",
- "translation": ""
- },
- {
- "id": "About Us",
- "message": "About Us",
- "translation": ""
- },
- {
- "id": "Open Source",
- "message": "Open Source",
- "translation": ""
- },
- {
- "id": "This website is an open project, and a collaboration between developers, translators, and researchers. All source code, data, images, and more for the website are open source and can be found %shere%s. This site is licensed under the BSD 0-Clause license giving you the full freedom to do whatever you would like with anyof the content on this site.",
- "message": "This website is an open project, and a collaboration between developers, translators, and researchers. All source code, data, images, and more for the website are open source and can be found %shere%s. This site is licensed under the BSD 0-Clause license giving you the full freedom to do whatever you would like with anyof the content on this site.",
- "translation": ""
- },
- {
- "id": "Contact Us",
- "message": "Contact Us",
- "translation": ""
- },
- {
- "id": "While we try to stay as up-to-date as possible and to fact check our information, it is always possible that we get something wrong, lack a translation, or are missing some piece of data you may have. In such a case don’t hesitate to contact us; we’ll try to get the site updated or fixed as soon as possible. You are always free to contribute via a git patch if you are more technically included, but if not you can always send an email to %s or contact ‘@onetruemangoman’ on Discord.",
- "message": "While we try to stay as up-to-date as possible and to fact check our information, it is always possible that we get something wrong, lack a translation, or are missing some piece of data you may have. In such a case don’t hesitate to contact us; we’ll try to get the site updated or fixed as soon as possible. You are always free to contribute via a git patch if you are more technically included, but if not you can always send an email to %s or contact ‘@onetruemangoman’ on Discord.",
- "translation": ""
- },
- {
- "id": "Special Thanks",
- "message": "Special Thanks",
- "translation": ""
- },
- {
- "id": "Development",
- "message": "Development",
- "translation": ""
- },
- {
- "id": "Research",
- "message": "Research",
- "translation": ""
- },
- {
- "id": "Translations",
- "message": "Translations",
- "translation": ""
- },
- {
- "id": "British- \u0026 American English",
- "message": "British- \u0026 American English",
- "translation": ""
- },
- {
- "id": "Icelandic",
- "message": "Icelandic",
- "translation": ""
- },
- {
- "id": "Andorran Euro Coin Designs",
- "message": "Andorran Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "On March of 2013 Andorra held a public design competition for all denominations except for the €2 denomination which the government pre-decided would bear the coat of arms of Andorra. Each set of denominations had a theme that participants had to center their designs around. These themes were:",
- "message": "On March of 2013 Andorra held a public design competition for all denominations except for the €2 denomination which the government pre-decided would bear the coat of arms of Andorra. Each set of denominations had a theme that participants had to center their designs around. These themes were:",
- "translation": ""
- },
- {
- "id": "%s, %s, and %s",
- "message": "%s, %s, and %s",
- "translation": ""
- },
- {
- "id": "Andorran landscapes, nature, fauna, and flora",
- "message": "Andorran landscapes, nature, fauna, and flora",
- "translation": ""
- },
- {
- "id": "Andorra’s Romanesque art",
- "message": "Andorra’s Romanesque art",
- "translation": ""
- },
- {
- "id": "Casa de la Vall",
- "message": "Casa de la Vall",
- "translation": ""
- },
- {
- "id": "The results of the design contest with a few modifications are what became the coins that entered circulation in 2014. While each set of denominations has its own design, all four designs prominently feature the country name ‘ANDORRA’ along the outer portion of the design with the year of issue written underneath.",
- "message": "The results of the design contest with a few modifications are what became the coins that entered circulation in 2014. While each set of denominations has its own design, all four designs prominently feature the country name ‘ANDORRA’ along the outer portion of the design with the year of issue written underneath.",
- "translation": ""
- },
- {
- "id": "The Andorran 1-, 2-, and 5 euro cent coins all feature the same design of a Pyrenean chamois in the center of the coin with a golden eagle flying above. Both animals are native to Andorra as well as the surrounding regions of France and Spain.",
- "message": "The Andorran 1-, 2-, and 5 euro cent coins all feature the same design of a Pyrenean chamois in the center of the coin with a golden eagle flying above. Both animals are native to Andorra as well as the surrounding regions of France and Spain.",
- "translation": ""
- },
- {
- "id": "The Andorran golden cents feature the Romanesque church of Santa Coloma. The church is the oldest in Andorra, dating back to the 9th century and is a UNESCO World Heritage site. Originally these coins were planned to depict an image of Christ, but that plan failed to go through after objections from the European Commission on grounds of religious neutrality on August 2013.",
- "message": "The Andorran golden cents feature the Romanesque church of Santa Coloma. The church is the oldest in Andorra, dating back to the 9th century and is a UNESCO World Heritage site. Originally these coins were planned to depict an image of Christ, but that plan failed to go through after objections from the European Commission on grounds of religious neutrality on August 2013.",
- "translation": ""
- },
- {
- "id": "The 1 Euro coin features the Case de la Vall: the former headquarters of the General Council of Andorra. It was constructed in 1580 as a manor and tower defense by the Busquets family.",
- "message": "The 1 Euro coin features the Case de la Vall: the former headquarters of the General Council of Andorra. It was constructed in 1580 as a manor and tower defense by the Busquets family.",
- "translation": ""
- },
- {
- "id": "Finally, the 2 Euro coin features the coat of arms of Andorra. The Andorran coat of arms is a grid of 4 other coats of arms which from top-to-bottom, left-to-right are:",
- "message": "Finally, the 2 Euro coin features the coat of arms of Andorra. The Andorran coat of arms is a grid of 4 other coats of arms which from top-to-bottom, left-to-right are:",
- "translation": ""
- },
- {
- "id": "The bottom of the coat of arms has the motto ‘%sVIRTVS VNITA FORTIOR%s’ (‘UNITED VIRTUE IS STRONGER’).",
- "message": "The bottom of the coat of arms has the motto ‘%sVIRTVS VNITA FORTIOR%s’ (‘UNITED VIRTUE IS STRONGER’).",
- "translation": ""
- },
- {
- "id": "Austrian Euro Coin Designs",
- "message": "Austrian Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "The Austrian euro coins can be grouped into three different themes. The bronze coins feature Austrian flowers, the gold coins feature Austrian architecture, and the bimetalic coins feature famous Austrian people. All coins also feature an Austrian flag as well as the coins denomination. These coins together with the %sGreek euro coins%s are the only coins that feature the denomination on both the common- and national-sides of the coin.",
- "message": "The Austrian euro coins can be grouped into three different themes. The bronze coins feature Austrian flowers, the gold coins feature Austrian architecture, and the bimetalic coins feature famous Austrian people. All coins also feature an Austrian flag as well as the coins denomination. These coins together with the %sGreek euro coins%s are the only coins that feature the denomination on both the common- and national-sides of the coin.",
- "translation": ""
- },
- {
- "id": "The bronze coins feature the Alpine gentian, -edelweiss, and -primrose respectively, and were chosen to symbolize the role that Austria played in the development of EU environmental policy.",
- "message": "The bronze coins feature the Alpine gentian, -edelweiss, and -primrose respectively, and were chosen to symbolize the role that Austria played in the development of EU environmental policy.",
- "translation": ""
- },
- {
- "id": "The €0.10 coin features St. Stephen’s Cathedral. It symbolises the Viennese Gothic architectural style dating to around the year 1160. The €0.20 coin features Belvedere Palace. This is an example of Baroque architecture and symbolises the national freedom and sovereignty of Austria. The final gold coin — the €0.50 coin — features the Secession Building: an exhibition hall in the Art Nouveau style.",
- "message": "The €0.10 coin features St. Stephen’s Cathedral. It symbolises the Viennese Gothic architectural style dating to around the year 1160. The €0.20 coin features Belvedere Palace. This is an example of Baroque architecture and symbolises the national freedom and sovereignty of Austria. The final gold coin — the €0.50 coin — features the Secession Building: an exhibition hall in the Art Nouveau style.",
- "translation": ""
- },
- {
- "id": "The two bimetallic coins feature the busts of the musical composer Wolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist and Nobel Peace Prize winner Bertha von Suttner.",
- "message": "The two bimetallic coins feature the busts of the musical composer Wolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist and Nobel Peace Prize winner Bertha von Suttner.",
- "translation": ""
- },
- {
- "id": "Belgian Euro Coin Designs",
- "message": "Belgian Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "Since 1999 Belgium has released three series of euro coins, which each series having a single design repeated on all denominations. Starting in 1999 the Belgian euro coins featured the portrait of King Albert II with the %sroyal monogram%s in the outer ring of the coins.",
- "message": "Since 1999 Belgium has released three series of euro coins, which each series having a single design repeated on all denominations. Starting in 1999 the Belgian euro coins featured the portrait of King Albert II with the %sroyal monogram%s in the outer ring of the coins.",
- "translation": ""
- },
- {
- "id": "In 2008 a second series of coins was released featuring a slightly-modified design in which the royal monogram was moved to the inner portion of the coin along with the year of mintage in order to comply with the European Commission’s guidelines. The country code ‘BE’ was also added to the design underneath the royal monogram.",
- "message": "In 2008 a second series of coins was released featuring a slightly-modified design in which the royal monogram was moved to the inner portion of the coin along with the year of mintage in order to comply with the European Commission’s guidelines. The country code ‘BE’ was also added to the design underneath the royal monogram.",
- "translation": ""
- },
- {
- "id": "After his accession to the throne Belgium began a third series of coins in 2014 featuring the portrait of King Philippe. As is customary with coins bearing the portraits of monarchs, the direction in which the portrait faces was flipped to face right instead of left.",
- "message": "After his accession to the throne Belgium began a third series of coins in 2014 featuring the portrait of King Philippe. As is customary with coins bearing the portraits of monarchs, the direction in which the portrait faces was flipped to face right instead of left.",
- "translation": ""
- },
- {
- "id": "Croatian Euro Coin Designs",
- "message": "Croatian Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "The Croatian euro coins feature four different themes, with each design featuring the Croatian checkerboard and the countries name in Croatian (‘%sHRVATSKA%s’). All designs were selected after voting in a public design competition.",
- "message": "The Croatian euro coins feature four different themes, with each design featuring the Croatian checkerboard and the countries name in Croatian (‘%sHRVATSKA%s’). All designs were selected after voting in a public design competition.",
- "translation": ""
- },
- {
- "id": "The 1-, 2-, and 5 euro cent coins were designed by Maja Škripelj and feature a motif of the letters ‘HR’ in the %sGlagolitic script%s — an old Slavic script that saw use in Croatia up until the 19th century — with ‘HR’ representing Croatia’s country code.",
- "message": "The 1-, 2-, and 5 euro cent coins were designed by Maja Škripelj and feature a motif of the letters ‘HR’ in the %sGlagolitic script%s — an old Slavic script that saw use in Croatia up until the 19th century — with ‘HR’ representing Croatia’s country code.",
- "translation": ""
- },
- {
- "id": "The 10-, 20-, and 50 euro cent coins were designed by Ivan Domagoj Račić and feature the portrait of the inventor and engineer %sNikola Tesla%s. The design of these coins caused controversy when they were first announced with the National Bank of Serbia claiming that it would be an appropriation of the cultural and scientific heritage of the Serbian people to feature the portrait of someone who ‘declared himself to be Serbian by origin’.",
- "message": "The 10-, 20-, and 50 euro cent coins were designed by Ivan Domagoj Račić and feature the portrait of the inventor and engineer %sNikola Tesla%s. The design of these coins caused controversy when they were first announced with the National Bank of Serbia claiming that it would be an appropriation of the cultural and scientific heritage of the Serbian people to feature the portrait of someone who ‘declared himself to be Serbian by origin’.",
- "translation": ""
- },
- {
- "id": "The 1 euro coin was designed by Jagor Šunde, David Čemeljić and Fran Zekan and features a marten. The marten is the semi-official national animal of Croatia and the Kuna — their pre-Euro currency — was named after the marten (‘%skuna zlatica%s’ in Croatian).",
- "message": "The 1 euro coin was designed by Jagor Šunde, David Čemeljić and Fran Zekan and features a marten. The marten is the semi-official national animal of Croatia and the Kuna — their pre-Euro currency — was named after the marten (‘%skuna zlatica%s’ in Croatian).",
- "translation": ""
- },
- {
- "id": "The 2 euro coin was designed by Ivan Šivak and features the map of Croatia. The coin also has an edge-inscription that reads ‘%sO LIJEPA O DRAGA O SLATKA SLOBODO%s’ (‘OH BEAUTIFUL, OH DEAR, OH SWEET FREEDOM’) which is a line from the play %sDubravka%s by Ivan Gundulić.",
- "message": "The 2 euro coin was designed by Ivan Šivak and features the map of Croatia. The coin also has an edge-inscription that reads ‘%sO LIJEPA O DRAGA O SLATKA SLOBODO%s’ (‘OH BEAUTIFUL, OH DEAR, OH SWEET FREEDOM’) which is a line from the play %sDubravka%s by Ivan Gundulić.",
- "translation": ""
- },
- {
- "id": "Dutch Euro Coin Designs",
- "message": "Dutch Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "From the years 1999–2013 all Dutch euro coins featured the portrait of Queen Beatrix of the Netherlands. After her abdication from the throne in 2013 the designs of all denominations were changed to feature the portrait of the new King Willem-Alexander. After her abdication the direction in which the monarchs portrait faced was flipped; a tradition dating back to the earliest coins of the Kingdom of the Netherlands.",
- "message": "From the years 1999–2013 all Dutch euro coins featured the portrait of Queen Beatrix of the Netherlands. After her abdication from the throne in 2013 the designs of all denominations were changed to feature the portrait of the new King Willem-Alexander. After her abdication the direction in which the monarchs portrait faced was flipped; a tradition dating back to the earliest coins of the Kingdom of the Netherlands.",
- "translation": ""
- },
- {
- "id": "Coins featuring both monarchs contain text reading ‘%sBEATRIX KONINGIN DER NEDERLANDEN%s’ (‘BEATRIX QUEEN OF THE NETHERLANDS’) and ‘%sWillem-Alexander Koning der Nederlanden%s’ (‘Willem-Alexander King of the Netherlands’) respectively. The €2 coins also feature an edge-inscription reading ‘%sGOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆%s’ (‘GOD ⋆ IS ⋆ WITH ⋆ US ⋆’).",
- "message": "Coins featuring both monarchs contain text reading ‘%sBEATRIX KONINGIN DER NEDERLANDEN%s’ (‘BEATRIX QUEEN OF THE NETHERLANDS’) and ‘%sWillem-Alexander Koning der Nederlanden%s’ (‘Willem-Alexander King of the Netherlands’) respectively. The €2 coins also feature an edge-inscription reading ‘%sGOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆%s’ (‘GOD ⋆ IS ⋆ WITH ⋆ US ⋆’).",
- "translation": ""
- },
- {
- "id": "The €1 and €2 coins featuring King Willem-Alexander were minted with a much lower %srelief%s than most euro coins of the same denomination. As a result it is not uncommon for these coins to appear worn after little use in circulation.",
- "message": "The €1 and €2 coins featuring King Willem-Alexander were minted with a much lower %srelief%s than most euro coins of the same denomination. As a result it is not uncommon for these coins to appear worn after little use in circulation.",
- "translation": ""
- },
- {
- "id": "Euro Coin Designs",
- "message": "Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "Here you’ll be able to view all the coin designs for each country in the Eurozone. This section of the site doesn’t include minor varieties such as different mintmarks or errors; those are on the %svarieties%s page.",
- "message": "Here you’ll be able to view all the coin designs for each country in the Eurozone. This section of the site doesn’t include minor varieties such as different mintmarks or errors; those are on the %svarieties%s page.",
- "translation": ""
- },
- {
- "id": "Euro Coin Mintages",
- "message": "Euro Coin Mintages",
- "translation": ""
- },
- {
- "id": "Here you’ll be able to view all the known mintages for all coins. You’ll also be able to filter on country, denomination, etc. If you have any mintage data that’s missing from our site, feel free to contact us.",
- "message": "Here you’ll be able to view all the known mintages for all coins. You’ll also be able to filter on country, denomination, etc. If you have any mintage data that’s missing from our site, feel free to contact us.",
- "translation": ""
- },
- {
- "id": "Additional Notes",
- "message": "Additional Notes",
- "translation": ""
- },
- {
- "id": "Most coins from the years 2003–2016 are listed as NIFC coins while other popular sources such as Numista claim they were minted for circulation. For more information on why others are wrong, %sclick here%s.",
- "message": "Most coins from the years 2003–2016 are listed as NIFC coins while other popular sources such as Numista claim they were minted for circulation. For more information on why others are wrong, %sclick here%s.",
- "translation": ""
- },
- {
- "id": "In 2003 Numista calculated a total of %d coins issued for coin sets per denomination. Our own calculations found only %d. Numista also forgot to include the many hundred thousand coins from the coin roll sets that were produced.",
- "message": "In 2003 Numista calculated a total of %d coins issued for coin sets per denomination. Our own calculations found only %d. Numista also forgot to include the many hundred thousand coins from the coin roll sets that were produced.",
- "translation": ""
- },
- {
- "id": "Country",
- "message": "Country",
- "translation": ""
- },
- {
- "id": "Filter",
- "message": "Filter",
- "translation": ""
- },
- {
- "id": "Standard Issue Coins",
- "message": "Standard Issue Coins",
- "translation": ""
- },
- {
- "id": "Year",
- "message": "Year",
- "translation": ""
- },
- {
- "id": "Unknown",
- "message": "Unknown",
- "translation": ""
- },
- {
- "id": "Commemorative Coins",
- "message": "Commemorative Coins",
- "translation": ""
- },
- {
- "id": "Commemorated Issue",
- "message": "Commemorated Issue",
- "translation": ""
- },
- {
- "id": "Mintage",
- "message": "Mintage",
- "translation": ""
- },
- {
- "id": "Euro Coins",
- "message": "Euro Coins",
- "translation": ""
- },
- {
- "id": "On this section of the site you can find everything there is to know about the coins of the Eurozone.",
- "message": "On this section of the site you can find everything there is to know about the coins of the Eurozone.",
- "translation": ""
- },
- {
- "id": "Designs",
- "message": "Designs",
- "translation": ""
- },
- {
- "id": "View the 600+ different Euro-coin designs!",
- "message": "View the 600+ different Euro-coin designs!",
- "translation": ""
- },
- {
- "id": "Mintages",
- "message": "Mintages",
- "translation": ""
- },
- {
- "id": "View the mintage figures of all the Euro coins!",
- "message": "View the mintage figures of all the Euro coins!",
- "translation": ""
- },
- {
- "id": "Varieties",
- "message": "Varieties",
- "translation": ""
- },
- {
- "id": "View all the known Euro varieties!",
- "message": "View all the known Euro varieties!",
- "translation": ""
- },
- {
- "id": "Coin Roll Hunting",
- "message": "Coin Roll Hunting",
- "translation": ""
- },
- {
- "id": "What is Coin Roll Hunting?",
- "message": "What is Coin Roll Hunting?",
- "translation": ""
- },
- {
- "id": "Coin roll hunting is a popular method of coin collecting in which you withdrawal cash from your bank in the form of coins which you then search through to find new additions to your collection. Once you’ve searched through all your coins, you will typically deposit your left over coins at the bank and withdrawal new coins.",
- "message": "Coin roll hunting is a popular method of coin collecting in which you withdrawal cash from your bank in the form of coins which you then search through to find new additions to your collection. Once you’ve searched through all your coins, you will typically deposit your left over coins at the bank and withdrawal new coins.",
- "translation": ""
- },
- {
- "id": "This type of coin collecting is often called ‘Coin Roll Hunting’ due to the fact that coins are often withdrawn in paper-wrapped rolls. You may however find that your coins come in plastic bags instead (common in countries like Ireland).",
- "message": "This type of coin collecting is often called ‘Coin Roll Hunting’ due to the fact that coins are often withdrawn in paper-wrapped rolls. You may however find that your coins come in plastic bags instead (common in countries like Ireland).",
- "translation": ""
- },
- {
- "id": "Depending on your bank and branch, the process of obtaining coins may differ. Some banks require you speak to a teller, others have coin machines. Some banks may also require that you are a customer or even to have a business account. If you aren’t sure about if you can get coins we suggest you contact your bank, although further down this page we also have information about the withdrawal of coins in various countries and major banks.",
- "message": "Depending on your bank and branch, the process of obtaining coins may differ. Some banks require you speak to a teller, others have coin machines. Some banks may also require that you are a customer or even to have a business account. If you aren’t sure about if you can get coins we suggest you contact your bank, although further down this page we also have information about the withdrawal of coins in various countries and major banks.",
- "translation": ""
- },
- {
- "id": "Getting Started",
- "message": "Getting Started",
- "translation": ""
- },
- {
- "id": "To get started with coin roll hunting you should first contact your bank or check their website to find details regarding coin withdrawal. You will then typically need to go to the bank to pick up your coins. Depending on your bank you may be able to withdrawal coins from a machine, although often you can pick up your coins from the banks tellers. You will also often need to pay a small fee for each roll, although some banks don’t charge fees.",
- "message": "To get started with coin roll hunting you should first contact your bank or check their website to find details regarding coin withdrawal. You will then typically need to go to the bank to pick up your coins. Depending on your bank you may be able to withdrawal coins from a machine, although often you can pick up your coins from the banks tellers. You will also often need to pay a small fee for each roll, although some banks don’t charge fees.",
- "translation": ""
- },
- {
- "id": "It is also important to find details regarding the deposit of coins. Depositing coins often also requires the payment of a fee — one which is typically more expensive than the withdrawal fees. If depositing your coins is too expensive you can always exchange your left over coins at shops for banknotes. It is often cheaper (or even free) to deposit banknotes.",
- "message": "It is also important to find details regarding the deposit of coins. Depositing coins often also requires the payment of a fee — one which is typically more expensive than the withdrawal fees. If depositing your coins is too expensive you can always exchange your left over coins at shops for banknotes. It is often cheaper (or even free) to deposit banknotes.",
- "translation": ""
- },
- {
- "id": "In some countries such as Austria it is even common to be able to withdrawal new coins from your account by exchanging the left over coins you already have.",
- "message": "In some countries such as Austria it is even common to be able to withdrawal new coins from your account by exchanging the left over coins you already have.",
- "translation": ""
- },
- {
- "id": "Country-Specific Details",
- "message": "Country-Specific Details",
- "translation": ""
- },
- {
- "id": "Below you can find all sorts of country-specific information we have regarding obtaining coin rolls. We lack a lot of information for many of the countries, so if you have any additional information such as your banks fees, the availability of coin roll machines, etc. feel free to contact us! You can find our contact information %shere%s.",
- "message": "Below you can find all sorts of country-specific information we have regarding obtaining coin rolls. We lack a lot of information for many of the countries, so if you have any additional information such as your banks fees, the availability of coin roll machines, etc. feel free to contact us! You can find our contact information %shere%s.",
- "translation": ""
- },
- {
- "id": "Be aware of the face that the information below is prone to being outdated, and as such may not reflect the current reality.",
- "message": "Be aware of the face that the information below is prone to being outdated, and as such may not reflect the current reality.",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained from Andbank, Crèdit Andorrà, and MoraBanc. All three of these banks require that you are a customer to get rolls. There have however been reports of individuals managing to get rolls without any fees and without being a customer by simply asking kindly at the bank.",
- "message": "Coin rolls can be obtained from Andbank, Crèdit Andorrà, and MoraBanc. All three of these banks require that you are a customer to get rolls. There have however been reports of individuals managing to get rolls without any fees and without being a customer by simply asking kindly at the bank.",
- "translation": ""
- },
- {
- "id": "The Austrian National Bank does not distribute circulated rolls but sells rolls of commemorative coins at face value on release as well as uncirculated rolls for all denominations.",
- "message": "The Austrian National Bank does not distribute circulated rolls but sells rolls of commemorative coins at face value on release as well as uncirculated rolls for all denominations.",
- "translation": ""
- },
- {
- "id": "There is a fee of %s per roll. Rolls can be purchased with cash at machines. These machines are available to everyone, but not in all branches. Look for the ‘Münzrollengeber’ filter option %shere%s.",
- "message": "There is a fee of %s per roll. Rolls can be purchased with cash at machines. These machines are available to everyone, but not in all branches. Look for the ‘Münzrollengeber’ filter option %shere%s.",
- "translation": ""
- },
- {
- "id": "There is a fee of %s per roll. You must be a customer to use machines to get rolls. Rolls have no fees when purchased at counters, but counters redirect you to machines if they work; counters accept cash. You must present an Erste Bank card to buy rolls from machines, but you can pay with cash.",
- "message": "There is a fee of %s per roll. You must be a customer to use machines to get rolls. Rolls have no fees when purchased at counters, but counters redirect you to machines if they work; counters accept cash. You must present an Erste Bank card to buy rolls from machines, but you can pay with cash.",
- "translation": ""
- },
- {
- "id": "Depositing coins is free for up to %s a day, at which point you pay 1%% for any additional deposited coins. You must also be a customer. Depositing coins is free for all Erste Bank customers at Dornbirner Sparkasse with no limit.",
- "message": "Depositing coins is free for up to %s a day, at which point you pay 1%% for any additional deposited coins. You must also be a customer. Depositing coins is free for all Erste Bank customers at Dornbirner Sparkasse with no limit.",
- "translation": ""
- },
- {
- "id": "There is a fee of %s per roll if you aren’t a customer, and %s otherwise. Coin deposits are free if you’re a customer.",
- "message": "There is a fee of %s per roll if you aren’t a customer, and %s otherwise. Coin deposits are free if you’re a customer.",
- "translation": ""
- },
- {
- "id": "Reportedly fee-less with no need of being a customer, but this is unconfirmed.",
- "message": "Reportedly fee-less with no need of being a customer, but this is unconfirmed.",
- "translation": ""
- },
- {
- "id": "There is a %s fee with no limit on the number of rolls.",
- "message": "There is a %s fee with no limit on the number of rolls.",
- "translation": ""
- },
- {
- "id": "Belgian Central Bank",
- "message": "Belgian Central Bank",
- "translation": ""
- },
- {
- "id": "You can visit the Belgian Central Bank in Brussels as an EU citizen. You can order coin rolls for no fee up to %s in value. They seem to distribute uncirculated coins (no commemoratives).",
- "message": "You can visit the Belgian Central Bank in Brussels as an EU citizen. You can order coin rolls for no fee up to %s in value. They seem to distribute uncirculated coins (no commemoratives).",
- "translation": ""
- },
- {
- "id": "Free for customers but getting coin rolls is still difficult sometimes. Non-customers cannot get rolls.",
- "message": "Free for customers but getting coin rolls is still difficult sometimes. Non-customers cannot get rolls.",
- "translation": ""
- },
- {
- "id": "Free for customers when you order through their online platform.",
- "message": "Free for customers when you order through their online platform.",
- "translation": ""
- },
- {
- "id": "Bank of Cyprus",
- "message": "Bank of Cyprus",
- "translation": ""
- },
- {
- "id": "At the Bank of Cyprus it is possible to buy bags of coins without being a customer, and without paying any additional fees. Depending on the branch you visit you may have coin roll machine available. Do note that the bags provided by the Bank of Cyprus are around twice as large as usual with %s bags containing 50 coins and the other denomination bags containing 100 coins.",
- "message": "At the Bank of Cyprus it is possible to buy bags of coins without being a customer, and without paying any additional fees. Depending on the branch you visit you may have coin roll machine available. Do note that the bags provided by the Bank of Cyprus are around twice as large as usual with %s bags containing 50 coins and the other denomination bags containing 100 coins.",
- "translation": ""
- },
- {
- "id": "Coin roll availability may vary across banks and branches, as well as the price. You must be a customer to purchase coin rolls unless specified otherwise.",
- "message": "Coin roll availability may vary across banks and branches, as well as the price. You must be a customer to purchase coin rolls unless specified otherwise.",
- "translation": ""
- },
- {
- "id": "German Federal Bank (Deutsche Bundesbank)",
- "message": "German Federal Bank (Deutsche Bundesbank)",
- "translation": ""
- },
- {
- "id": "You can obtain regular- and commemorative coins for face value including 5-, 10-, and 20 euro coins. You do not need to be a customer although depending on your branch you may need to make an appointment. The purchase of coins can only be done with cash.",
- "message": "You can obtain regular- and commemorative coins for face value including 5-, 10-, and 20 euro coins. You do not need to be a customer although depending on your branch you may need to make an appointment. The purchase of coins can only be done with cash.",
- "translation": ""
- },
- {
- "id": "Hand-rolled coin rolls can be obtained with no additional fees.",
- "message": "Hand-rolled coin rolls can be obtained with no additional fees.",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained for a fee of %s–%s per roll. The amount varies per branch.",
- "message": "Coin rolls can be obtained for a fee of %s–%s per roll. The amount varies per branch.",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained for a fee of %s per roll.",
- "message": "Coin rolls can be obtained for a fee of %s per roll.",
- "translation": ""
- },
- {
- "id": "Obtaining coin rolls in Estonia is typically quite difficult, and often expensive. You also often need to make an appointment in advance.",
- "message": "Obtaining coin rolls in Estonia is typically quite difficult, and often expensive. You also often need to make an appointment in advance.",
- "translation": ""
- },
- {
- "id": "Central Bank of Estonia Museum",
- "message": "Central Bank of Estonia Museum",
- "translation": ""
- },
- {
- "id": "You can purchase commemorative coins (even those released years ago) at face value. It is also an interesting museum to visit in general.",
- "message": "You can purchase commemorative coins (even those released years ago) at face value. It is also an interesting museum to visit in general.",
- "translation": ""
- },
- {
- "id": "Coin rolls are free but you must be a customer.",
- "message": "Coin rolls are free but you must be a customer.",
- "translation": ""
- },
- {
- "id": "Bank of Spain",
- "message": "Bank of Spain",
- "translation": ""
- },
- {
- "id": "You can purchase individual coins and commemorative coin rolls (even those of other countries). You can watch %shere%s to see how to do it.",
- "message": "You can purchase individual coins and commemorative coin rolls (even those of other countries). You can watch %shere%s to see how to do it.",
- "translation": ""
- },
- {
- "id": "Coin rolls have a fee of %s for 5 rolls. This seems to vary by region.",
- "message": "Coin rolls have a fee of %s for 5 rolls. This seems to vary by region.",
- "translation": ""
- },
- {
- "id": "Coin rolls have no fees.",
- "message": "Coin rolls have no fees.",
- "translation": ""
- },
- {
- "id": "La Caixa",
- "message": "La Caixa",
- "translation": ""
- },
- {
- "id": "Coin rolls have no fees and can be purchased with cash. You do not need to be a customer, although this needs to be re-verified.",
- "message": "Coin rolls have no fees and can be purchased with cash. You do not need to be a customer, although this needs to be re-verified.",
- "translation": ""
- },
- {
- "id": "Finland has no coin roll machines, but you can find vending machines or coin exchange machines (albeit they are rare).",
- "message": "Finland has no coin roll machines, but you can find vending machines or coin exchange machines (albeit they are rare).",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained with no fees.",
- "message": "Coin rolls can be obtained with no fees.",
- "translation": ""
- },
- {
- "id": "Bank of Finland",
- "message": "Bank of Finland",
- "translation": ""
- },
- {
- "id": "It is probably not possible to obtain coin rolls, but this is not confirmed.",
- "message": "It is probably not possible to obtain coin rolls, but this is not confirmed.",
- "translation": ""
- },
- {
- "id": "Coin roll machines are uncommon, only some banks have them and you need to be a customer. You may also need to order them in advance.",
- "message": "Coin roll machines are uncommon, only some banks have them and you need to be a customer. You may also need to order them in advance.",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained with no fee. You must be a customer.",
- "message": "Coin rolls can be obtained with no fee. You must be a customer.",
- "translation": ""
- },
- {
- "id": "and",
- "message": "and",
- "translation": ""
- },
- {
- "id": "Free coin rolls if you are a customer or %s per roll if you are not a customer. There are coin roll machines.",
- "message": "Free coin rolls if you are a customer or %s per roll if you are not a customer. There are coin roll machines.",
- "translation": ""
- },
- {
- "id": "There are coin roll machines but it is not yet known if you need to be a customer or if there are fees.",
- "message": "There are coin roll machines but it is not yet known if you need to be a customer or if there are fees.",
- "translation": ""
- },
- {
- "id": "Bank of Greece (Τράπεζα της Ελλάδος)",
- "message": "Bank of Greece (Τράπεζα της Ελλάδος)",
- "translation": ""
- },
- {
- "id": "Fee-less coin rolls for everyone (you will need to show ID). The latest commemorative coins are also sold for face value.",
- "message": "Fee-less coin rolls for everyone (you will need to show ID). The latest commemorative coins are also sold for face value.",
- "translation": ""
- },
- {
- "id": "Fee-less coin bags for everyone (no ID necessary). Smaller denominations are often not given out, and the coin bags you recieve are very large (there are reports of %s bags containing 250 coins).",
- "message": "Fee-less coin bags for everyone (no ID necessary). Smaller denominations are often not given out, and the coin bags you recieve are very large (there are reports of %s bags containing 250 coins).",
- "translation": ""
- },
- {
- "id": "In general, coin rolls are available at banks with a fee of %s per roll; rolls could potentially have no fee if you only need a few.",
- "message": "In general, coin rolls are available at banks with a fee of %s per roll; rolls could potentially have no fee if you only need a few.",
- "translation": ""
- },
- {
- "id": "There are coin roll machines but it is unknown if you need to be a customer or if there are additional fees.",
- "message": "There are coin roll machines but it is unknown if you need to be a customer or if there are additional fees.",
- "translation": ""
- },
- {
- "id": "Bank of Italy",
- "message": "Bank of Italy",
- "translation": ""
- },
- {
- "id": "Coin rolls are available to everyone.",
- "message": "Coin rolls are available to everyone.",
- "translation": ""
- },
- {
- "id": "Works, but with very high fees (5%% of cost).",
- "message": "Works, but with very high fees (5%% of cost).",
- "translation": ""
- },
- {
- "id": "Fee of %s per roll of 2 euro coins.",
- "message": "Fee of %s per roll of 2 euro coins.",
- "translation": ""
- },
- {
- "id": "As far as we are aware, Lietuvos Bankas only distributes coin rolls to businesses.",
- "message": "As far as we are aware, Lietuvos Bankas only distributes coin rolls to businesses.",
- "translation": ""
- },
- {
- "id": "It may be worth checking out payout machines to exchange banknotes into coins.",
- "message": "It may be worth checking out payout machines to exchange banknotes into coins.",
- "translation": ""
- },
- {
- "id": "Luxembourgish Central Bank (Banque Centrale du Luxembourg)",
- "message": "Luxembourgish Central Bank (Banque Centrale du Luxembourg)",
- "translation": ""
- },
- {
- "id": "We currently have no information regarding regular coins, however their webshop sells commemorative coins (for a high premium, but better than most resellers). Commemorative coins are also available for purchase in-person.",
- "message": "We currently have no information regarding regular coins, however their webshop sells commemorative coins (for a high premium, but better than most resellers). Commemorative coins are also available for purchase in-person.",
- "translation": ""
- },
- {
- "id": "You should be able to get coin rolls with no additional fees.",
- "message": "You should be able to get coin rolls with no additional fees.",
- "translation": ""
- },
- {
- "id": "In general coin rolls are sold with a fee of %s per roll, but we’re lacking a lot of information.",
- "message": "In general coin rolls are sold with a fee of %s per roll, but we’re lacking a lot of information.",
- "translation": ""
- },
- {
- "id": "Bank of Valletta and HSBC Bank Malta",
- "message": "Bank of Valletta and HSBC Bank Malta",
- "translation": ""
- },
- {
- "id": "You can get rolls for a fee of %s per roll. You must order coin rolls through their online platform, and you must be a customer.",
- "message": "You can get rolls for a fee of %s per roll. You must order coin rolls through their online platform, and you must be a customer.",
- "translation": ""
- },
- {
- "id": "Banks in the Netherlands do not carry cash, and as such it’s not possible to obtain rolls from bank tellers. Obtaining coins from the Dutch Central Bank (De Nederlandsche Bank) is also not possible. If you want to obtain coin rolls you need to use a Geldmaat coin roll machine which can be found in specific branches of GAMMA and Karwei. Geldmaat offers a map on their website where you can search for branches with these machines; you can find that map %shere%s.",
- "message": "Banks in the Netherlands do not carry cash, and as such it’s not possible to obtain rolls from bank tellers. Obtaining coins from the Dutch Central Bank (De Nederlandsche Bank) is also not possible. If you want to obtain coin rolls you need to use a Geldmaat coin roll machine which can be found in specific branches of GAMMA and Karwei. Geldmaat offers a map on their website where you can search for branches with these machines; you can find that map %shere%s.",
- "translation": ""
- },
- {
- "id": "In order to be able to use a Geldmaat coin machine, you must be a customer of either ABN AMRO, ING, or Rabobank. You also cannot pay by cash, only card payments are allowed. All three banks charge a withdrawal fee for getting coin rolls, which are detailed in the list below.",
- "message": "In order to be able to use a Geldmaat coin machine, you must be a customer of either ABN AMRO, ING, or Rabobank. You also cannot pay by cash, only card payments are allowed. All three banks charge a withdrawal fee for getting coin rolls, which are detailed in the list below.",
- "translation": ""
- },
- {
- "id": "%s per roll.",
- "message": "%s per roll.",
- "translation": ""
- },
- {
- "id": "Base fee of %s + %s per roll.",
- "message": "Base fee of %s + %s per roll.",
- "translation": ""
- },
- {
- "id": "One- and two-cent coins have been removed from circulation and cannot be obtained.",
- "message": "One- and two-cent coins have been removed from circulation and cannot be obtained.",
- "translation": ""
- },
- {
- "id": "Coin bags are sold with no additional fees to bank customers.",
- "message": "Coin bags are sold with no additional fees to bank customers.",
- "translation": ""
- },
- {
- "id": "Bank of Portugal (Banco de Portugal)",
- "message": "Bank of Portugal (Banco de Portugal)",
- "translation": ""
- },
- {
- "id": "Coin bags are sold with no additional fees to everyone.",
- "message": "Coin bags are sold with no additional fees to everyone.",
- "translation": ""
- },
- {
- "id": "In general there is a %s fee for coin rolls.",
- "message": "In general there is a %s fee for coin rolls.",
- "translation": ""
- },
- {
- "id": "Bank of Slovenia (Banka Slovenije)",
- "message": "Bank of Slovenia (Banka Slovenije)",
- "translation": ""
- },
- {
- "id": "You can purchase commemorative coins for face value, and coin rolls are sold with no fees to everyone.",
- "message": "You can purchase commemorative coins for face value, and coin rolls are sold with no fees to everyone.",
- "translation": ""
- },
- {
- "id": "National Bank of Slovakia (Národná banka Slovenska)",
- "message": "National Bank of Slovakia (Národná banka Slovenska)",
- "translation": ""
- },
- {
- "id": "You may be able to get uncirculated rolls, but this is not yet confirmed.",
- "message": "You may be able to get uncirculated rolls, but this is not yet confirmed.",
- "translation": ""
- },
- {
- "id": "You can get an unlimited number of rolls for a %s fee. You must be a customer of the bank.",
- "message": "You can get an unlimited number of rolls for a %s fee. You must be a customer of the bank.",
- "translation": ""
- },
- {
- "id": "Ask the Pope nicely and he’ll probably give you some Vatican coins for free.",
- "message": "Ask the Pope nicely and he’ll probably give you some Vatican coins for free.",
- "translation": ""
- },
- {
- "id": "We currently have no information regarding coin roll hunting in %s.",
- "message": "We currently have no information regarding coin roll hunting in %s.",
- "translation": ""
- },
- {
- "id": "Coin Storage",
- "message": "Coin Storage",
- "translation": ""
- },
- {
- "id": "There are many different methods of storing your collecting, each with their own benefits and drawbacks. This page will describe the most common methods collectors use to store their coins, as well as the pros and cons of each method.",
- "message": "There are many different methods of storing your collecting, each with their own benefits and drawbacks. This page will describe the most common methods collectors use to store their coins, as well as the pros and cons of each method.",
- "translation": ""
- },
- {
- "id": "Coin Albums",
- "message": "Coin Albums",
- "translation": ""
- },
- {
- "id": "Coin albums are one of the most popular ways of storing coins. In a coin album you will have multiple coin sheets. These sheets are plastic pages with slots that you can put your coin in to keep them protected. When searching for sheets for your album it is very important to ensure that they do not contain any PVC, which will damage your coins. Some albums will come with sheets already included.",
- "message": "Coin albums are one of the most popular ways of storing coins. In a coin album you will have multiple coin sheets. These sheets are plastic pages with slots that you can put your coin in to keep them protected. When searching for sheets for your album it is very important to ensure that they do not contain any PVC, which will damage your coins. Some albums will come with sheets already included.",
- "translation": ""
- },
- {
- "id": "Albums can be an affordable way to store your coins, but higher-end albums can be a bit expensive. Also remember to always ensure that your albums do not contain any PVC!",
- "message": "Albums can be an affordable way to store your coins, but higher-end albums can be a bit expensive. Also remember to always ensure that your albums do not contain any PVC!",
- "translation": ""
- },
- {
- "id": "Coin Boxes",
- "message": "Coin Boxes",
- "translation": ""
- },
- {
- "id": "Coin boxes are to many people the most aesthetic way to store your coins. A coin box is comprised of various layers which can be stacked ontop of each other. Each layer has various holes where you can insert your coins. Typically you are meant to store your coins in a layer encased in a coin capsule.",
- "message": "Coin boxes are to many people the most aesthetic way to store your coins. A coin box is comprised of various layers which can be stacked ontop of each other. Each layer has various holes where you can insert your coins. Typically you are meant to store your coins in a layer encased in a coin capsule.",
- "translation": ""
- },
- {
- "id": "Boxes are quite space-inefficient and are one of the most expensive ways to store your coins, but at the same time they offer a great visual appeal.",
- "message": "Boxes are quite space-inefficient and are one of the most expensive ways to store your coins, but at the same time they offer a great visual appeal.",
- "translation": ""
- },
- {
- "id": "Coin Capsules",
- "message": "Coin Capsules",
- "translation": ""
- },
- {
- "id": "Coin capsules are plastic capsules you can put your coin in. They offer good protection to your coins, while still allowing you to view all parts of your coin easily, including the edge engravings and -inscriptions. Capsules are also far more durable than flips, and can be opened and closed repeatedly allowing for them to be reused. This isn’t really possible with flips.",
- "message": "Coin capsules are plastic capsules you can put your coin in. They offer good protection to your coins, while still allowing you to view all parts of your coin easily, including the edge engravings and -inscriptions. Capsules are also far more durable than flips, and can be opened and closed repeatedly allowing for them to be reused. This isn’t really possible with flips.",
- "translation": ""
- },
- {
- "id": "Capsules can be a bit pricey, but are reusable and are very durable. They also come in different sizes, so make sure you get the right size for your coins.",
- "message": "Capsules can be a bit pricey, but are reusable and are very durable. They also come in different sizes, so make sure you get the right size for your coins.",
- "translation": ""
- },
- {
- "id": "Coin Flips",
- "message": "Coin Flips",
- "translation": ""
- },
- {
- "id": "Coin flips, also known as ‘2x2’ flips by some Americans are small cardboard flips with a plastic covered hole in the middle for viewing. Most coin flips are stapled, meaning you put your coin in the flip and staple it shut. These kinds of flips are very cheap, and you can buy stacks of a few hundred for only a few euros. If you don’t like the staples though, you can also buy adhesive-flips that glue themselves shut. These flips are more expensive, but also look better than their stapled equivalents.",
- "message": "Coin flips, also known as ‘2x2’ flips by some Americans are small cardboard flips with a plastic covered hole in the middle for viewing. Most coin flips are stapled, meaning you put your coin in the flip and staple it shut. These kinds of flips are very cheap, and you can buy stacks of a few hundred for only a few euros. If you don’t like the staples though, you can also buy adhesive-flips that glue themselves shut. These flips are more expensive, but also look better than their stapled equivalents.",
- "translation": ""
- },
- {
- "id": "Coin slips are also pretty space efficient, and can be easily stacked in boxes for compact storage. Many collectors also like to write notes about their coins on the flips. There also exist special sheets for coin albums that allow you to put in flipped coins, but this is more expensive and less space-efficient than simply using flips or an album without flips.",
- "message": "Coin slips are also pretty space efficient, and can be easily stacked in boxes for compact storage. Many collectors also like to write notes about their coins on the flips. There also exist special sheets for coin albums that allow you to put in flipped coins, but this is more expensive and less space-efficient than simply using flips or an album without flips.",
- "translation": ""
- },
- {
- "id": "Coin Rolls",
- "message": "Coin Rolls",
- "translation": ""
- },
- {
- "id": "This is probably the most inexpensive way to store your coins. If you take good care of the paper when opening your coin rolls, you can simply reuse them for storage. Just roll your coins back up and put some rubber bands on the ends. You can also get reusable plastic rolls that can be opened and closed. You will need different rolls based on the denomination you want to store, but they are very space-efficient.",
- "message": "This is probably the most inexpensive way to store your coins. If you take good care of the paper when opening your coin rolls, you can simply reuse them for storage. Just roll your coins back up and put some rubber bands on the ends. You can also get reusable plastic rolls that can be opened and closed. You will need different rolls based on the denomination you want to store, but they are very space-efficient.",
- "translation": ""
- },
- {
- "id": "Examples",
- "message": "Examples",
- "translation": ""
- },
- {
- "id": "In case you’re looking for some inspiration on how to store your collections, here are some examples.",
- "message": "In case you’re looking for some inspiration on how to store your collections, here are some examples.",
- "translation": ""
- },
- {
- "id": "Euro Coin Collecting",
- "message": "Euro Coin Collecting",
- "translation": ""
- },
- {
- "id": "What is Vending Machine Hunting?",
- "message": "What is Vending Machine Hunting?",
- "translation": ""
- },
- {
- "id": "‘Vending machine hunting’ is a strategy of collecting coins whereby you continuously insert coins into a vending machine and cancel the transaction by pressing the return button. When the vending machine returns your coins to you, you will often get different coins from the ones you put in, and you can repeat this process until you’ve searched through every coin in the machine.",
- "message": "‘Vending machine hunting’ is a strategy of collecting coins whereby you continuously insert coins into a vending machine and cancel the transaction by pressing the return button. When the vending machine returns your coins to you, you will often get different coins from the ones you put in, and you can repeat this process until you’ve searched through every coin in the machine.",
- "translation": ""
- },
- {
- "id": "The Test Coins",
- "message": "The Test Coins",
- "translation": ""
- },
- {
- "id": "First, you want to make sure the vending machine you come across actually gives back change — sometimes they don’t! Throw in a 10 cent coin and press the return button. If it doesn’t give the coin back, you can move on to the next machine; there’s a high chance it won’t return higher denominations either. Next throw in a random 2 euro coin and press the return button. You should do this because vending machines may not return 2 euro coins, but rather 1 euro- or 50 cent coins instead. It’s better to find out immediately as opposed to later once you’ve already put in all of your 2 euro coins.",
- "message": "First, you want to make sure the vending machine you come across actually gives back change — sometimes they don’t! Throw in a 10 cent coin and press the return button. If it doesn’t give the coin back, you can move on to the next machine; there’s a high chance it won’t return higher denominations either. Next throw in a random 2 euro coin and press the return button. You should do this because vending machines may not return 2 euro coins, but rather 1 euro- or 50 cent coins instead. It’s better to find out immediately as opposed to later once you’ve already put in all of your 2 euro coins.",
- "translation": ""
- },
- {
- "id": "The Stopper",
- "message": "The Stopper",
- "translation": ""
- },
- {
- "id": "We want to be able to know when we’ve gone through all the coins in the vending machine. To do this, take out a coin and mark it with something (drawing on it with a Sharpie works well), then put it into the machine. Next time you get the same coin back, you know you’ve gone through everything.",
- "message": "We want to be able to know when we’ve gone through all the coins in the vending machine. To do this, take out a coin and mark it with something (drawing on it with a Sharpie works well), then put it into the machine. Next time you get the same coin back, you know you’ve gone through everything.",
- "translation": ""
- },
- {
- "id": "Rejected Stoppers and Coins",
- "message": "Rejected Stoppers and Coins",
- "translation": ""
- },
- {
- "id": "Sometimes you may throw a stopper in, but you hear a ‘clunk’ sound, as if the coin was dropped into a box (normally adding a coin should be silent after you throw it in). This means the coin was not added to the stack properly, and so it will not be returned. Pay attention to this noise, because you won’t be getting the stopper back! Throw in another marked coin instead until the machine accepts the coin.",
- "message": "Sometimes you may throw a stopper in, but you hear a ‘clunk’ sound, as if the coin was dropped into a box (normally adding a coin should be silent after you throw it in). This means the coin was not added to the stack properly, and so it will not be returned. Pay attention to this noise, because you won’t be getting the stopper back! Throw in another marked coin instead until the machine accepts the coin.",
- "translation": ""
- },
- {
- "id": "(Non-)Merging Machines",
- "message": "(Non-)Merging Machines",
- "translation": ""
- },
- {
- "id": "We generally identify between two main types of vending machines.",
- "message": "We generally identify between two main types of vending machines.",
- "translation": ""
- },
- {
- "id": "Merging",
- "message": "Merging",
- "translation": ""
- },
- {
- "id": "The vending machine merges change together. For example if you throw in five 50 cent coins, the machine returns either two 1 euro coins and one 50 cent coin or one 2 euro and one 50 cent coin. This usually means you can hunt 2 euro coins very quickly but other denominations only once at a time. A good tip is to throw in an odd number of euros and 80 cents if you want to search through all denominations.",
- "message": "The vending machine merges change together. For example if you throw in five 50 cent coins, the machine returns either two 1 euro coins and one 50 cent coin or one 2 euro and one 50 cent coin. This usually means you can hunt 2 euro coins very quickly but other denominations only once at a time. A good tip is to throw in an odd number of euros and 80 cents if you want to search through all denominations.",
- "translation": ""
- },
- {
- "id": "Non-Merging",
- "message": "Non-Merging",
- "translation": ""
- },
- {
- "id": "The vending machine does not merge change together. This means if you throw in five 50 cent coins it will return five 50 cent coins. This makes it very easy to hunt a large amount of a specific denomination.",
- "message": "The vending machine does not merge change together. This means if you throw in five 50 cent coins it will return five 50 cent coins. This makes it very easy to hunt a large amount of a specific denomination.",
- "translation": ""
- },
- {
- "id": "Limits",
- "message": "Limits",
- "translation": ""
- },
- {
- "id": "There are some limits to vending machine hunts which you need to be aware of.",
- "message": "There are some limits to vending machine hunts which you need to be aware of.",
- "translation": ""
- },
- {
- "id": "Maximum Input Limit",
- "message": "Maximum Input Limit",
- "translation": ""
- },
- {
- "id": "Some machines have a maximum amount you can throw in, and will reject anything higher. For example machines with a max limit of five euros will reject any additional coins if you throw in five euros. You can try to go above the limit if you throw in, say, %s and then another one- or two euro coin; the machine will probably accept it.",
- "message": "Some machines have a maximum amount you can throw in, and will reject anything higher. For example machines with a max limit of five euros will reject any additional coins if you throw in five euros. You can try to go above the limit if you throw in, say, %s and then another one- or two euro coin; the machine will probably accept it.",
- "translation": ""
- },
- {
- "id": "Maximum Change Limit",
- "message": "Maximum Change Limit",
- "translation": ""
- },
- {
- "id": "Some machines will either give back large amounts of change in bills or will not give back large amounts of change at all (usually cigarette machines). Read the labels on all machines carefully since these limits are usually written there.",
- "message": "Some machines will either give back large amounts of change in bills or will not give back large amounts of change at all (usually cigarette machines). Read the labels on all machines carefully since these limits are usually written there.",
- "translation": ""
- },
- {
- "id": "Even if no limits are listed, it’s still advised that you exercise caution: it is not uncommon for a vending machine to steal your money. In the case that a vending machine does steal your money, look for a label on the machine that contains a support number.",
- "message": "Even if no limits are listed, it’s still advised that you exercise caution: it is not uncommon for a vending machine to steal your money. In the case that a vending machine does steal your money, look for a label on the machine that contains a support number.",
- "translation": ""
- },
- {
- "id": "For information on Austrian cigarette machines, see the ‘%sCigarette Machines%s’ section.",
- "message": "For information on Austrian cigarette machines, see the ‘%sCigarette Machines%s’ section.",
- "translation": ""
- },
- {
- "id": "Cigarette Machines",
- "message": "Cigarette Machines",
- "translation": ""
- },
- {
- "id": "In some countries where cigarette machines are legal, you can hunt through them as well. Unless you’re in Malta, you must verify your age on them by either sliding an ID card through a sensor or holding a debit card on an RFID scanner; you must do this for every cycle. Sometimes you must also select something to purchase, throw in less money than the cost, and then cancel the purchase. Note that most cigarette machines in Austria have a %s max change limit.",
- "message": "In some countries where cigarette machines are legal, you can hunt through them as well. Unless you’re in Malta, you must verify your age on them by either sliding an ID card through a sensor or holding a debit card on an RFID scanner; you must do this for every cycle. Sometimes you must also select something to purchase, throw in less money than the cost, and then cancel the purchase. Note that most cigarette machines in Austria have a %s max change limit.",
- "translation": ""
- },
- {
- "id": "For RFID scanner machines it helps to wear a glove and slide a debit card into the back of it so you can easily use both hands and don’t have to fumble with a card and coins.",
- "message": "For RFID scanner machines it helps to wear a glove and slide a debit card into the back of it so you can easily use both hands and don’t have to fumble with a card and coins.",
- "translation": ""
- },
- {
- "id": "On this section of the site you can find everything there is to know about collecting Euro coins. If this is a hobby that interests you, join the Discord server linked at the top of the page!",
- "message": "On this section of the site you can find everything there is to know about collecting Euro coins. If this is a hobby that interests you, join the Discord server linked at the top of the page!",
- "translation": ""
- },
- {
- "id": "Learn about collecting coins from coin rolls!",
- "message": "Learn about collecting coins from coin rolls!",
- "translation": ""
- },
- {
- "id": "Learn about the different methods to storing your collection!",
- "message": "Learn about the different methods to storing your collection!",
- "translation": ""
- },
- {
- "id": "Shop Hunting",
- "message": "Shop Hunting",
- "translation": ""
- },
- {
- "id": "Learn about how to collect coins from shop-keepers and other people who deal in cash!",
- "message": "Learn about how to collect coins from shop-keepers and other people who deal in cash!",
- "translation": ""
- },
- {
- "id": "Vending Machine Hunting",
- "message": "Vending Machine Hunting",
- "translation": ""
- },
- {
- "id": "Learn about collecting coins from vending machines!",
- "message": "Learn about collecting coins from vending machines!",
- "translation": ""
- },
- {
- "id": "The Euro Cash Compendium",
- "message": "The Euro Cash Compendium",
- "translation": ""
- },
- {
- "id": "United in",
- "message": "United in",
- "translation": ""
- },
- {
- "id": "diversity",
- "message": "diversity",
- "translation": ""
- },
- {
- "id": "cash",
- "message": "cash",
- "translation": ""
- },
- {
- "id": "Welcome to the Euro Cash Compendium. This sites aims to be a resource for you to discover everything there is to know about the coins and banknotes of the Euro, a currency that spans 26 countries and 350 million people. We also have dedicated sections of the site for collectors.",
- "message": "Welcome to the Euro Cash Compendium. This sites aims to be a resource for you to discover everything there is to know about the coins and banknotes of the Euro, a currency that spans 26 countries and 350 million people. We also have dedicated sections of the site for collectors.",
- "translation": ""
- },
- {
- "id": "Euro Cash Jargon",
- "message": "Euro Cash Jargon",
- "translation": ""
- },
- {
- "id": "Both on this website and in other euro-cash-related forums there are many terms you will come across that you may not immediately understand. This page will hopefully get you up to speed with the most important and frequently-used terminology.",
- "message": "Both on this website and in other euro-cash-related forums there are many terms you will come across that you may not immediately understand. This page will hopefully get you up to speed with the most important and frequently-used terminology.",
- "translation": ""
- },
- {
- "id": "All terms defined below can be used as clickable links which highlight the selected term. It is recommended to use these links when sharing this page with others, so that the relevant terms are highlighted.",
- "message": "All terms defined below can be used as clickable links which highlight the selected term. It is recommended to use these links when sharing this page with others, so that the relevant terms are highlighted.",
- "translation": ""
- },
- {
- "id": "General Terms",
- "message": "General Terms",
- "translation": ""
- },
- {
- "id": "AU coins are coins that are in extremely good condition as a result of limited use in circulation. Unlike the term ‘UNC’, this term is a description of the coins quality, not its usage. AU coins often appear to retain most of their original luster as well as possessing little-to-no scratches or other forms of post-mint damage (PMD).",
- "message": "AU coins are coins that are in extremely good condition as a result of limited use in circulation. Unlike the term ‘UNC’, this term is a description of the coins quality, not its usage. AU coins often appear to retain most of their original luster as well as possessing little-to-no scratches or other forms of post-mint damage (PMD).",
- "translation": ""
- },
- {
- "id": "BU is a general term to refer to coins from coincards and -sets. These are different from UNC coins in that they are typically handled with more care during the minting process and are struck with higher-quality dies than the coins minted for coin rolls resulting in a higher-quality end product. You may also see these coins referred to by the French term ‘fleur de coin’.",
- "message": "BU is a general term to refer to coins from coincards and -sets. These are different from UNC coins in that they are typically handled with more care during the minting process and are struck with higher-quality dies than the coins minted for coin rolls resulting in a higher-quality end product. You may also see these coins referred to by the French term ‘fleur de coin’.",
- "translation": ""
- },
- {
- "id": "NIFC coins are coins minted without the intention of being put into general circulation. These coins are typically minted with the purpose of being put into coincards or coin-sets to be sold to collectors. Occasionally they are also handed out to collectors for face value at banks.",
- "message": "NIFC coins are coins minted without the intention of being put into general circulation. These coins are typically minted with the purpose of being put into coincards or coin-sets to be sold to collectors. Occasionally they are also handed out to collectors for face value at banks.",
- "translation": ""
- },
- {
- "id": "While uncommon, NIFC coins are occasionally found in circulation. This can happen for a variety of reasons such as someone depositing their coin collection (known as a ‘collection dump’), or a collector’s child spending their rare coins on an ice cream. Some coin mints have also been known to put NIFC coins that have gone unsold for multiple years into circulation.",
- "message": "While uncommon, NIFC coins are occasionally found in circulation. This can happen for a variety of reasons such as someone depositing their coin collection (known as a ‘collection dump’), or a collector’s child spending their rare coins on an ice cream. Some coin mints have also been known to put NIFC coins that have gone unsold for multiple years into circulation.",
- "translation": ""
- },
- {
- "id": "Post-mint damage is any damage that a coin has sustained outside of the minting process, such as through being dropped on the ground, hit against a table, etc.",
- "message": "Post-mint damage is any damage that a coin has sustained outside of the minting process, such as through being dropped on the ground, hit against a table, etc.",
- "translation": ""
- },
- {
- "id": "Uncirculated coins are coins that have never been used in a monetary exchange. The term ‘UNC’ is often mistakenly used to refer to coins in very good condition, but this is incorrect. A coin in poor condition that has never been circulated is still considered an ‘UNC’ coin.",
- "message": "Uncirculated coins are coins that have never been used in a monetary exchange. The term ‘UNC’ is often mistakenly used to refer to coins in very good condition, but this is incorrect. A coin in poor condition that has never been circulated is still considered an ‘UNC’ coin.",
- "translation": ""
- },
- {
- "id": "Collector-Specific Terms",
- "message": "Collector-Specific Terms",
- "translation": ""
- },
- {
- "id": "Coin roll hunting is a general term for the activity of searching through coin rolls and -bags to find coins for a collection. Coin rolls and bags are often obtained at banks or coin roll machines.",
- "message": "Coin roll hunting is a general term for the activity of searching through coin rolls and -bags to find coins for a collection. Coin rolls and bags are often obtained at banks or coin roll machines.",
- "translation": ""
- },
- {
- "id": "Select Your Language",
- "message": "Select Your Language",
- "translation": ""
- },
- {
- "id": "Select your preferred language to use on the site.",
- "message": "Select your preferred language to use on the site.",
- "translation": ""
- },
- {
- "id": "Eurozone Languages",
- "message": "Eurozone Languages",
- "translation": ""
- },
- {
- "id": "Other Languages",
- "message": "Other Languages",
- "translation": ""
- }
- ]
-} \ No newline at end of file
diff --git a/src/rosetta/en/messages.gotext.json b/src/rosetta/en/messages.gotext.json
deleted file mode 100644
index b9ee316..0000000
--- a/src/rosetta/en/messages.gotext.json
+++ /dev/null
@@ -1,1832 +0,0 @@
-{
- "language": "en",
- "messages": [
- {
- "id": "Andorra",
- "message": "Andorra",
- "translation": "Andorra",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Austria",
- "message": "Austria",
- "translation": "Austria",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Belgium",
- "message": "Belgium",
- "translation": "Belgium",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Cyprus",
- "message": "Cyprus",
- "translation": "Cyprus",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Germany",
- "message": "Germany",
- "translation": "Germany",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Estonia",
- "message": "Estonia",
- "translation": "Estonia",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Spain",
- "message": "Spain",
- "translation": "Spain",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Finland",
- "message": "Finland",
- "translation": "Finland",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "France",
- "message": "France",
- "translation": "France",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Greece",
- "message": "Greece",
- "translation": "Greece",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Croatia",
- "message": "Croatia",
- "translation": "Croatia",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Ireland",
- "message": "Ireland",
- "translation": "Ireland",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Italy",
- "message": "Italy",
- "translation": "Italy",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Lithuania",
- "message": "Lithuania",
- "translation": "Lithuania",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Luxembourg",
- "message": "Luxembourg",
- "translation": "Luxembourg",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Latvia",
- "message": "Latvia",
- "translation": "Latvia",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Monaco",
- "message": "Monaco",
- "translation": "Monaco",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Malta",
- "message": "Malta",
- "translation": "Malta",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Netherlands",
- "message": "Netherlands",
- "translation": "Netherlands",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Portugal",
- "message": "Portugal",
- "translation": "Portugal",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Slovenia",
- "message": "Slovenia",
- "translation": "Slovenia",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Slovakia",
- "message": "Slovakia",
- "translation": "Slovakia",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "San Marino",
- "message": "San Marino",
- "translation": "San Marino",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Vatican City",
- "message": "Vatican City",
- "translation": "Vatican City",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Page Not Found",
- "message": "Page Not Found",
- "translation": "Page Not Found",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The page you were looking for does not exist. If you believe this is a mistake then don’t hesitate to contact @onetruemangoman on Discord or email us at %s.",
- "message": "The page you were looking for does not exist. If you believe this is a mistake then don’t hesitate to contact @onetruemangoman on Discord or email us at %s.",
- "translation": "The page you were looking for does not exist. If you believe this is a mistake then don’t hesitate to contact @onetruemangoman on Discord or email us at %s.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Euro Cash",
- "message": "Euro Cash",
- "translation": "Euro Cash",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Found a mistake or want to contribute missing information?",
- "message": "Found a mistake or want to contribute missing information?",
- "translation": "Found a mistake or want to contribute missing information?",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Feel free to contact us!",
- "message": "Feel free to contact us!",
- "translation": "Feel free to contact us!",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "If you’re seeing this page, it means that something went wrong on our end that we need to fix. Our team has been notified of this error, and we apologise for the inconvenience.",
- "message": "If you’re seeing this page, it means that something went wrong on our end that we need to fix. Our team has been notified of this error, and we apologise for the inconvenience.",
- "translation": "If you’re seeing this page, it means that something went wrong on our end that we need to fix. Our team has been notified of this error, and we apologise for the inconvenience.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "If this issue persists, don’t hesitate to contact @onetruemangoman on Discord or to email us at %s.",
- "message": "If this issue persists, don’t hesitate to contact @onetruemangoman on Discord or to email us at %s.",
- "translation": "If this issue persists, don’t hesitate to contact @onetruemangoman on Discord or to email us at %s.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Home",
- "message": "Home",
- "translation": "Home",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "News",
- "message": "News",
- "translation": "News",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin Collecting",
- "message": "Coin Collecting",
- "translation": "Coin Collecting",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coins",
- "message": "Coins",
- "translation": "Coins",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Banknotes",
- "message": "Banknotes",
- "translation": "Banknotes",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Jargon",
- "message": "Jargon",
- "translation": "Jargon",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Discord",
- "message": "Discord",
- "translation": "Discord",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "About",
- "message": "About",
- "translation": "About",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Language",
- "message": "Language",
- "translation": "Language",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "About Us",
- "message": "About Us",
- "translation": "About Us",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Open Source",
- "message": "Open Source",
- "translation": "Open Source",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "This website is an open project, and a collaboration between developers, translators, and researchers. All source code, data, images, and more for the website are open source and can be found %shere%s. This site is licensed under the BSD 0-Clause license giving you the full freedom to do whatever you would like with anyof the content on this site.",
- "message": "This website is an open project, and a collaboration between developers, translators, and researchers. All source code, data, images, and more for the website are open source and can be found %shere%s. This site is licensed under the BSD 0-Clause license giving you the full freedom to do whatever you would like with anyof the content on this site.",
- "translation": "This website is an open project, and a collaboration between developers, translators, and researchers. All source code, data, images, and more for the website are open source and can be found %shere%s. This site is licensed under the BSD 0-Clause license giving you the full freedom to do whatever you would like with anyof the content on this site.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Contact Us",
- "message": "Contact Us",
- "translation": "Contact Us",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "While we try to stay as up-to-date as possible and to fact check our information, it is always possible that we get something wrong, lack a translation, or are missing some piece of data you may have. In such a case don’t hesitate to contact us; we’ll try to get the site updated or fixed as soon as possible. You are always free to contribute via a git patch if you are more technically included, but if not you can always send an email to %s or contact ‘@onetruemangoman’ on Discord.",
- "message": "While we try to stay as up-to-date as possible and to fact check our information, it is always possible that we get something wrong, lack a translation, or are missing some piece of data you may have. In such a case don’t hesitate to contact us; we’ll try to get the site updated or fixed as soon as possible. You are always free to contribute via a git patch if you are more technically included, but if not you can always send an email to %s or contact ‘@onetruemangoman’ on Discord.",
- "translation": "While we try to stay as up-to-date as possible and to fact check our information, it is always possible that we get something wrong, lack a translation, or are missing some piece of data you may have. In such a case don’t hesitate to contact us; we’ll try to get the site updated or fixed as soon as possible. You are always free to contribute via a git patch if you are more technically included, but if not you can always send an email to %s or contact ‘@onetruemangoman’ on Discord.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Special Thanks",
- "message": "Special Thanks",
- "translation": "Special Thanks",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Development",
- "message": "Development",
- "translation": "Development",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Research",
- "message": "Research",
- "translation": "Research",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Translations",
- "message": "Translations",
- "translation": "Translations",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "British- \u0026 American English",
- "message": "British- \u0026 American English",
- "translation": "British- \u0026 American English",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Icelandic",
- "message": "Icelandic",
- "translation": "Icelandic",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Andorran Euro Coin Designs",
- "message": "Andorran Euro Coin Designs",
- "translation": "Andorran Euro Coin Designs",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "On March of 2013 Andorra held a public design competition for all denominations except for the €2 denomination which the government pre-decided would bear the coat of arms of Andorra. Each set of denominations had a theme that participants had to center their designs around. These themes were:",
- "message": "On March of 2013 Andorra held a public design competition for all denominations except for the €2 denomination which the government pre-decided would bear the coat of arms of Andorra. Each set of denominations had a theme that participants had to center their designs around. These themes were:",
- "translation": "On March of 2013 Andorra held a public design competition for all denominations except for the €2 denomination which the government pre-decided would bear the coat of arms of Andorra. Each set of denominations had a theme that participants had to center their designs around. These themes were:",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "%s, %s, and %s",
- "message": "%s, %s, and %s",
- "translation": "%s, %s, and %s",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Andorran landscapes, nature, fauna, and flora",
- "message": "Andorran landscapes, nature, fauna, and flora",
- "translation": "Andorran landscapes, nature, fauna, and flora",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Andorra’s Romanesque art",
- "message": "Andorra’s Romanesque art",
- "translation": "Andorra’s Romanesque art",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Casa de la Vall",
- "message": "Casa de la Vall",
- "translation": "Casa de la Vall",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The results of the design contest with a few modifications are what became the coins that entered circulation in 2014. While each set of denominations has its own design, all four designs prominently feature the country name ‘ANDORRA’ along the outer portion of the design with the year of issue written underneath.",
- "message": "The results of the design contest with a few modifications are what became the coins that entered circulation in 2014. While each set of denominations has its own design, all four designs prominently feature the country name ‘ANDORRA’ along the outer portion of the design with the year of issue written underneath.",
- "translation": "The results of the design contest with a few modifications are what became the coins that entered circulation in 2014. While each set of denominations has its own design, all four designs prominently feature the country name ‘ANDORRA’ along the outer portion of the design with the year of issue written underneath.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The Andorran 1-, 2-, and 5 euro cent coins all feature the same design of a Pyrenean chamois in the center of the coin with a golden eagle flying above. Both animals are native to Andorra as well as the surrounding regions of France and Spain.",
- "message": "The Andorran 1-, 2-, and 5 euro cent coins all feature the same design of a Pyrenean chamois in the center of the coin with a golden eagle flying above. Both animals are native to Andorra as well as the surrounding regions of France and Spain.",
- "translation": "The Andorran 1-, 2-, and 5 euro cent coins all feature the same design of a Pyrenean chamois in the center of the coin with a golden eagle flying above. Both animals are native to Andorra as well as the surrounding regions of France and Spain.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The Andorran golden cents feature the Romanesque church of Santa Coloma. The church is the oldest in Andorra, dating back to the 9th century and is a UNESCO World Heritage site. Originally these coins were planned to depict an image of Christ, but that plan failed to go through after objections from the European Commission on grounds of religious neutrality on August 2013.",
- "message": "The Andorran golden cents feature the Romanesque church of Santa Coloma. The church is the oldest in Andorra, dating back to the 9th century and is a UNESCO World Heritage site. Originally these coins were planned to depict an image of Christ, but that plan failed to go through after objections from the European Commission on grounds of religious neutrality on August 2013.",
- "translation": "The Andorran golden cents feature the Romanesque church of Santa Coloma. The church is the oldest in Andorra, dating back to the 9th century and is a UNESCO World Heritage site. Originally these coins were planned to depict an image of Christ, but that plan failed to go through after objections from the European Commission on grounds of religious neutrality on August 2013.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The 1 Euro coin features the Case de la Vall: the former headquarters of the General Council of Andorra. It was constructed in 1580 as a manor and tower defense by the Busquets family.",
- "message": "The 1 Euro coin features the Case de la Vall: the former headquarters of the General Council of Andorra. It was constructed in 1580 as a manor and tower defense by the Busquets family.",
- "translation": "The 1 Euro coin features the Case de la Vall: the former headquarters of the General Council of Andorra. It was constructed in 1580 as a manor and tower defense by the Busquets family.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Finally, the 2 Euro coin features the coat of arms of Andorra. The Andorran coat of arms is a grid of 4 other coats of arms which from top-to-bottom, left-to-right are:",
- "message": "Finally, the 2 Euro coin features the coat of arms of Andorra. The Andorran coat of arms is a grid of 4 other coats of arms which from top-to-bottom, left-to-right are:",
- "translation": "Finally, the 2 Euro coin features the coat of arms of Andorra. The Andorran coat of arms is a grid of 4 other coats of arms which from top-to-bottom, left-to-right are:",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The bottom of the coat of arms has the motto ‘%sVIRTVS VNITA FORTIOR%s’ (‘UNITED VIRTUE IS STRONGER’).",
- "message": "The bottom of the coat of arms has the motto ‘%sVIRTVS VNITA FORTIOR%s’ (‘UNITED VIRTUE IS STRONGER’).",
- "translation": "The bottom of the coat of arms has the motto ‘%sVIRTVS VNITA FORTIOR%s’ (‘UNITED VIRTUE IS STRONGER’).",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Austrian Euro Coin Designs",
- "message": "Austrian Euro Coin Designs",
- "translation": "Austrian Euro Coin Designs",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The Austrian euro coins can be grouped into three different themes. The bronze coins feature Austrian flowers, the gold coins feature Austrian architecture, and the bimetalic coins feature famous Austrian people. All coins also feature an Austrian flag as well as the coins denomination. These coins together with the %sGreek euro coins%s are the only coins that feature the denomination on both the common- and national-sides of the coin.",
- "message": "The Austrian euro coins can be grouped into three different themes. The bronze coins feature Austrian flowers, the gold coins feature Austrian architecture, and the bimetalic coins feature famous Austrian people. All coins also feature an Austrian flag as well as the coins denomination. These coins together with the %sGreek euro coins%s are the only coins that feature the denomination on both the common- and national-sides of the coin.",
- "translation": "The Austrian euro coins can be grouped into three different themes. The bronze coins feature Austrian flowers, the gold coins feature Austrian architecture, and the bimetalic coins feature famous Austrian people. All coins also feature an Austrian flag as well as the coins denomination. These coins together with the %sGreek euro coins%s are the only coins that feature the denomination on both the common- and national-sides of the coin.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The bronze coins feature the Alpine gentian, -edelweiss, and -primrose respectively, and were chosen to symbolize the role that Austria played in the development of EU environmental policy.",
- "message": "The bronze coins feature the Alpine gentian, -edelweiss, and -primrose respectively, and were chosen to symbolize the role that Austria played in the development of EU environmental policy.",
- "translation": "The bronze coins feature the Alpine gentian, -edelweiss, and -primrose respectively, and were chosen to symbolize the role that Austria played in the development of EU environmental policy.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The €0.10 coin features St. Stephen’s Cathedral. It symbolises the Viennese Gothic architectural style dating to around the year 1160. The €0.20 coin features Belvedere Palace. This is an example of Baroque architecture and symbolises the national freedom and sovereignty of Austria. The final gold coin — the €0.50 coin — features the Secession Building: an exhibition hall in the Art Nouveau style.",
- "message": "The €0.10 coin features St. Stephen’s Cathedral. It symbolises the Viennese Gothic architectural style dating to around the year 1160. The €0.20 coin features Belvedere Palace. This is an example of Baroque architecture and symbolises the national freedom and sovereignty of Austria. The final gold coin — the €0.50 coin — features the Secession Building: an exhibition hall in the Art Nouveau style.",
- "translation": "The €0.10 coin features St. Stephen’s Cathedral. It symbolises the Viennese Gothic architectural style dating to around the year 1160. The €0.20 coin features Belvedere Palace. This is an example of Baroque architecture and symbolises the national freedom and sovereignty of Austria. The final gold coin — the €0.50 coin — features the Secession Building: an exhibition hall in the Art Nouveau style.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The two bimetallic coins feature the busts of the musical composer Wolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist and Nobel Peace Prize winner Bertha von Suttner.",
- "message": "The two bimetallic coins feature the busts of the musical composer Wolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist and Nobel Peace Prize winner Bertha von Suttner.",
- "translation": "The two bimetallic coins feature the busts of the musical composer Wolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist and Nobel Peace Prize winner Bertha von Suttner.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Belgian Euro Coin Designs",
- "message": "Belgian Euro Coin Designs",
- "translation": "Belgian Euro Coin Designs",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Since 1999 Belgium has released three series of euro coins, which each series having a single design repeated on all denominations. Starting in 1999 the Belgian euro coins featured the portrait of King Albert II with the %sroyal monogram%s in the outer ring of the coins.",
- "message": "Since 1999 Belgium has released three series of euro coins, which each series having a single design repeated on all denominations. Starting in 1999 the Belgian euro coins featured the portrait of King Albert II with the %sroyal monogram%s in the outer ring of the coins.",
- "translation": "Since 1999 Belgium has released three series of euro coins, which each series having a single design repeated on all denominations. Starting in 1999 the Belgian euro coins featured the portrait of King Albert II with the %sroyal monogram%s in the outer ring of the coins.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "In 2008 a second series of coins was released featuring a slightly-modified design in which the royal monogram was moved to the inner portion of the coin along with the year of mintage in order to comply with the European Commission’s guidelines. The country code ‘BE’ was also added to the design underneath the royal monogram.",
- "message": "In 2008 a second series of coins was released featuring a slightly-modified design in which the royal monogram was moved to the inner portion of the coin along with the year of mintage in order to comply with the European Commission’s guidelines. The country code ‘BE’ was also added to the design underneath the royal monogram.",
- "translation": "In 2008 a second series of coins was released featuring a slightly-modified design in which the royal monogram was moved to the inner portion of the coin along with the year of mintage in order to comply with the European Commission’s guidelines. The country code ‘BE’ was also added to the design underneath the royal monogram.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "After his accession to the throne Belgium began a third series of coins in 2014 featuring the portrait of King Philippe. As is customary with coins bearing the portraits of monarchs, the direction in which the portrait faces was flipped to face right instead of left.",
- "message": "After his accession to the throne Belgium began a third series of coins in 2014 featuring the portrait of King Philippe. As is customary with coins bearing the portraits of monarchs, the direction in which the portrait faces was flipped to face right instead of left.",
- "translation": "After his accession to the throne Belgium began a third series of coins in 2014 featuring the portrait of King Philippe. As is customary with coins bearing the portraits of monarchs, the direction in which the portrait faces was flipped to face right instead of left.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Croatian Euro Coin Designs",
- "message": "Croatian Euro Coin Designs",
- "translation": "Croatian Euro Coin Designs",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The Croatian euro coins feature four different themes, with each design featuring the Croatian checkerboard and the countries name in Croatian (‘%sHRVATSKA%s’). All designs were selected after voting in a public design competition.",
- "message": "The Croatian euro coins feature four different themes, with each design featuring the Croatian checkerboard and the countries name in Croatian (‘%sHRVATSKA%s’). All designs were selected after voting in a public design competition.",
- "translation": "The Croatian euro coins feature four different themes, with each design featuring the Croatian checkerboard and the countries name in Croatian (‘%sHRVATSKA%s’). All designs were selected after voting in a public design competition.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The 1-, 2-, and 5 euro cent coins were designed by Maja Škripelj and feature a motif of the letters ‘HR’ in the %sGlagolitic script%s — an old Slavic script that saw use in Croatia up until the 19th century — with ‘HR’ representing Croatia’s country code.",
- "message": "The 1-, 2-, and 5 euro cent coins were designed by Maja Škripelj and feature a motif of the letters ‘HR’ in the %sGlagolitic script%s — an old Slavic script that saw use in Croatia up until the 19th century — with ‘HR’ representing Croatia’s country code.",
- "translation": "The 1-, 2-, and 5 euro cent coins were designed by Maja Škripelj and feature a motif of the letters ‘HR’ in the %sGlagolitic script%s — an old Slavic script that saw use in Croatia up until the 19th century — with ‘HR’ representing Croatia’s country code.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The 10-, 20-, and 50 euro cent coins were designed by Ivan Domagoj Račić and feature the portrait of the inventor and engineer %sNikola Tesla%s. The design of these coins caused controversy when they were first announced with the National Bank of Serbia claiming that it would be an appropriation of the cultural and scientific heritage of the Serbian people to feature the portrait of someone who ‘declared himself to be Serbian by origin’.",
- "message": "The 10-, 20-, and 50 euro cent coins were designed by Ivan Domagoj Račić and feature the portrait of the inventor and engineer %sNikola Tesla%s. The design of these coins caused controversy when they were first announced with the National Bank of Serbia claiming that it would be an appropriation of the cultural and scientific heritage of the Serbian people to feature the portrait of someone who ‘declared himself to be Serbian by origin’.",
- "translation": "The 10-, 20-, and 50 euro cent coins were designed by Ivan Domagoj Račić and feature the portrait of the inventor and engineer %sNikola Tesla%s. The design of these coins caused controversy when they were first announced with the National Bank of Serbia claiming that it would be an appropriation of the cultural and scientific heritage of the Serbian people to feature the portrait of someone who ‘declared himself to be Serbian by origin’.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The 1 euro coin was designed by Jagor Šunde, David Čemeljić and Fran Zekan and features a marten. The marten is the semi-official national animal of Croatia and the Kuna — their pre-Euro currency — was named after the marten (‘%skuna zlatica%s’ in Croatian).",
- "message": "The 1 euro coin was designed by Jagor Šunde, David Čemeljić and Fran Zekan and features a marten. The marten is the semi-official national animal of Croatia and the Kuna — their pre-Euro currency — was named after the marten (‘%skuna zlatica%s’ in Croatian).",
- "translation": "The 1 euro coin was designed by Jagor Šunde, David Čemeljić and Fran Zekan and features a marten. The marten is the semi-official national animal of Croatia and the Kuna — their pre-Euro currency — was named after the marten (‘%skuna zlatica%s’ in Croatian).",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The 2 euro coin was designed by Ivan Šivak and features the map of Croatia. The coin also has an edge-inscription that reads ‘%sO LIJEPA O DRAGA O SLATKA SLOBODO%s’ (‘OH BEAUTIFUL, OH DEAR, OH SWEET FREEDOM’) which is a line from the play %sDubravka%s by Ivan Gundulić.",
- "message": "The 2 euro coin was designed by Ivan Šivak and features the map of Croatia. The coin also has an edge-inscription that reads ‘%sO LIJEPA O DRAGA O SLATKA SLOBODO%s’ (‘OH BEAUTIFUL, OH DEAR, OH SWEET FREEDOM’) which is a line from the play %sDubravka%s by Ivan Gundulić.",
- "translation": "The 2 euro coin was designed by Ivan Šivak and features the map of Croatia. The coin also has an edge-inscription that reads ‘%sO LIJEPA O DRAGA O SLATKA SLOBODO%s’ (‘OH BEAUTIFUL, OH DEAR, OH SWEET FREEDOM’) which is a line from the play %sDubravka%s by Ivan Gundulić.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Dutch Euro Coin Designs",
- "message": "Dutch Euro Coin Designs",
- "translation": "Dutch Euro Coin Designs",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "From the years 1999–2013 all Dutch euro coins featured the portrait of Queen Beatrix of the Netherlands. After her abdication from the throne in 2013 the designs of all denominations were changed to feature the portrait of the new King Willem-Alexander. After her abdication the direction in which the monarchs portrait faced was flipped; a tradition dating back to the earliest coins of the Kingdom of the Netherlands.",
- "message": "From the years 1999–2013 all Dutch euro coins featured the portrait of Queen Beatrix of the Netherlands. After her abdication from the throne in 2013 the designs of all denominations were changed to feature the portrait of the new King Willem-Alexander. After her abdication the direction in which the monarchs portrait faced was flipped; a tradition dating back to the earliest coins of the Kingdom of the Netherlands.",
- "translation": "From the years 1999–2013 all Dutch euro coins featured the portrait of Queen Beatrix of the Netherlands. After her abdication from the throne in 2013 the designs of all denominations were changed to feature the portrait of the new King Willem-Alexander. After her abdication the direction in which the monarchs portrait faced was flipped; a tradition dating back to the earliest coins of the Kingdom of the Netherlands.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coins featuring both monarchs contain text reading ‘%sBEATRIX KONINGIN DER NEDERLANDEN%s’ (‘BEATRIX QUEEN OF THE NETHERLANDS’) and ‘%sWillem-Alexander Koning der Nederlanden%s’ (‘Willem-Alexander King of the Netherlands’) respectively. The €2 coins also feature an edge-inscription reading ‘%sGOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆%s’ (‘GOD ⋆ IS ⋆ WITH ⋆ US ⋆’).",
- "message": "Coins featuring both monarchs contain text reading ‘%sBEATRIX KONINGIN DER NEDERLANDEN%s’ (‘BEATRIX QUEEN OF THE NETHERLANDS’) and ‘%sWillem-Alexander Koning der Nederlanden%s’ (‘Willem-Alexander King of the Netherlands’) respectively. The €2 coins also feature an edge-inscription reading ‘%sGOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆%s’ (‘GOD ⋆ IS ⋆ WITH ⋆ US ⋆’).",
- "translation": "Coins featuring both monarchs contain text reading ‘%sBEATRIX KONINGIN DER NEDERLANDEN%s’ (‘BEATRIX QUEEN OF THE NETHERLANDS’) and ‘%sWillem-Alexander Koning der Nederlanden%s’ (‘Willem-Alexander King of the Netherlands’) respectively. The €2 coins also feature an edge-inscription reading ‘%sGOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆%s’ (‘GOD ⋆ IS ⋆ WITH ⋆ US ⋆’).",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The €1 and €2 coins featuring King Willem-Alexander were minted with a much lower %srelief%s than most euro coins of the same denomination. As a result it is not uncommon for these coins to appear worn after little use in circulation.",
- "message": "The €1 and €2 coins featuring King Willem-Alexander were minted with a much lower %srelief%s than most euro coins of the same denomination. As a result it is not uncommon for these coins to appear worn after little use in circulation.",
- "translation": "The €1 and €2 coins featuring King Willem-Alexander were minted with a much lower %srelief%s than most euro coins of the same denomination. As a result it is not uncommon for these coins to appear worn after little use in circulation.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Euro Coin Designs",
- "message": "Euro Coin Designs",
- "translation": "Euro Coin Designs",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Here you’ll be able to view all the coin designs for each country in the Eurozone. This section of the site doesn’t include minor varieties such as different mintmarks or errors; those are on the %svarieties%s page.",
- "message": "Here you’ll be able to view all the coin designs for each country in the Eurozone. This section of the site doesn’t include minor varieties such as different mintmarks or errors; those are on the %svarieties%s page.",
- "translation": "Here you’ll be able to view all the coin designs for each country in the Eurozone. This section of the site doesn’t include minor varieties such as different mintmarks or errors; those are on the %svarieties%s page.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Euro Coin Mintages",
- "message": "Euro Coin Mintages",
- "translation": "Euro Coin Mintages",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Here you’ll be able to view all the known mintages for all coins. You’ll also be able to filter on country, denomination, etc. If you have any mintage data that’s missing from our site, feel free to contact us.",
- "message": "Here you’ll be able to view all the known mintages for all coins. You’ll also be able to filter on country, denomination, etc. If you have any mintage data that’s missing from our site, feel free to contact us.",
- "translation": "Here you’ll be able to view all the known mintages for all coins. You’ll also be able to filter on country, denomination, etc. If you have any mintage data that’s missing from our site, feel free to contact us.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Additional Notes",
- "message": "Additional Notes",
- "translation": "Additional Notes",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Most coins from the years 2003–2016 are listed as NIFC coins while other popular sources such as Numista claim they were minted for circulation. For more information on why others are wrong, %sclick here%s.",
- "message": "Most coins from the years 2003–2016 are listed as NIFC coins while other popular sources such as Numista claim they were minted for circulation. For more information on why others are wrong, %sclick here%s.",
- "translation": "Most coins from the years 2003–2016 are listed as NIFC coins while other popular sources such as Numista claim they were minted for circulation. For more information on why others are wrong, %sclick here%s.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "In 2003 Numista calculated a total of %d coins issued for coin sets per denomination. Our own calculations found only %d. Numista also forgot to include the many hundred thousand coins from the coin roll sets that were produced.",
- "message": "In 2003 Numista calculated a total of %d coins issued for coin sets per denomination. Our own calculations found only %d. Numista also forgot to include the many hundred thousand coins from the coin roll sets that were produced.",
- "translation": "In 2003 Numista calculated a total of %d coins issued for coin sets per denomination. Our own calculations found only %d. Numista also forgot to include the many hundred thousand coins from the coin roll sets that were produced.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Country",
- "message": "Country",
- "translation": "Country",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Filter",
- "message": "Filter",
- "translation": "Filter",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Standard Issue Coins",
- "message": "Standard Issue Coins",
- "translation": "Standard Issue Coins",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Year",
- "message": "Year",
- "translation": "Year",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Unknown",
- "message": "Unknown",
- "translation": "Unknown",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Commemorative Coins",
- "message": "Commemorative Coins",
- "translation": "Commemorative Coins",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Commemorated Issue",
- "message": "Commemorated Issue",
- "translation": "Commemorated Issue",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Mintage",
- "message": "Mintage",
- "translation": "Mintage",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Euro Coins",
- "message": "Euro Coins",
- "translation": "Euro Coins",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "On this section of the site you can find everything there is to know about the coins of the Eurozone.",
- "message": "On this section of the site you can find everything there is to know about the coins of the Eurozone.",
- "translation": "On this section of the site you can find everything there is to know about the coins of the Eurozone.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Designs",
- "message": "Designs",
- "translation": "Designs",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "View the 600+ different Euro-coin designs!",
- "message": "View the 600+ different Euro-coin designs!",
- "translation": "View the 600+ different Euro-coin designs!",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Mintages",
- "message": "Mintages",
- "translation": "Mintages",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "View the mintage figures of all the Euro coins!",
- "message": "View the mintage figures of all the Euro coins!",
- "translation": "View the mintage figures of all the Euro coins!",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Varieties",
- "message": "Varieties",
- "translation": "Varieties",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "View all the known Euro varieties!",
- "message": "View all the known Euro varieties!",
- "translation": "View all the known Euro varieties!",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin Roll Hunting",
- "message": "Coin Roll Hunting",
- "translation": "Coin Roll Hunting",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "What is Coin Roll Hunting?",
- "message": "What is Coin Roll Hunting?",
- "translation": "What is Coin Roll Hunting?",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin roll hunting is a popular method of coin collecting in which you withdrawal cash from your bank in the form of coins which you then search through to find new additions to your collection. Once you’ve searched through all your coins, you will typically deposit your left over coins at the bank and withdrawal new coins.",
- "message": "Coin roll hunting is a popular method of coin collecting in which you withdrawal cash from your bank in the form of coins which you then search through to find new additions to your collection. Once you’ve searched through all your coins, you will typically deposit your left over coins at the bank and withdrawal new coins.",
- "translation": "Coin roll hunting is a popular method of coin collecting in which you withdrawal cash from your bank in the form of coins which you then search through to find new additions to your collection. Once you’ve searched through all your coins, you will typically deposit your left over coins at the bank and withdrawal new coins.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "This type of coin collecting is often called ‘Coin Roll Hunting’ due to the fact that coins are often withdrawn in paper-wrapped rolls. You may however find that your coins come in plastic bags instead (common in countries like Ireland).",
- "message": "This type of coin collecting is often called ‘Coin Roll Hunting’ due to the fact that coins are often withdrawn in paper-wrapped rolls. You may however find that your coins come in plastic bags instead (common in countries like Ireland).",
- "translation": "This type of coin collecting is often called ‘Coin Roll Hunting’ due to the fact that coins are often withdrawn in paper-wrapped rolls. You may however find that your coins come in plastic bags instead (common in countries like Ireland).",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Depending on your bank and branch, the process of obtaining coins may differ. Some banks require you speak to a teller, others have coin machines. Some banks may also require that you are a customer or even to have a business account. If you aren’t sure about if you can get coins we suggest you contact your bank, although further down this page we also have information about the withdrawal of coins in various countries and major banks.",
- "message": "Depending on your bank and branch, the process of obtaining coins may differ. Some banks require you speak to a teller, others have coin machines. Some banks may also require that you are a customer or even to have a business account. If you aren’t sure about if you can get coins we suggest you contact your bank, although further down this page we also have information about the withdrawal of coins in various countries and major banks.",
- "translation": "Depending on your bank and branch, the process of obtaining coins may differ. Some banks require you speak to a teller, others have coin machines. Some banks may also require that you are a customer or even to have a business account. If you aren’t sure about if you can get coins we suggest you contact your bank, although further down this page we also have information about the withdrawal of coins in various countries and major banks.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Getting Started",
- "message": "Getting Started",
- "translation": "Getting Started",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "To get started with coin roll hunting you should first contact your bank or check their website to find details regarding coin withdrawal. You will then typically need to go to the bank to pick up your coins. Depending on your bank you may be able to withdrawal coins from a machine, although often you can pick up your coins from the banks tellers. You will also often need to pay a small fee for each roll, although some banks don’t charge fees.",
- "message": "To get started with coin roll hunting you should first contact your bank or check their website to find details regarding coin withdrawal. You will then typically need to go to the bank to pick up your coins. Depending on your bank you may be able to withdrawal coins from a machine, although often you can pick up your coins from the banks tellers. You will also often need to pay a small fee for each roll, although some banks don’t charge fees.",
- "translation": "To get started with coin roll hunting you should first contact your bank or check their website to find details regarding coin withdrawal. You will then typically need to go to the bank to pick up your coins. Depending on your bank you may be able to withdrawal coins from a machine, although often you can pick up your coins from the banks tellers. You will also often need to pay a small fee for each roll, although some banks don’t charge fees.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "It is also important to find details regarding the deposit of coins. Depositing coins often also requires the payment of a fee — one which is typically more expensive than the withdrawal fees. If depositing your coins is too expensive you can always exchange your left over coins at shops for banknotes. It is often cheaper (or even free) to deposit banknotes.",
- "message": "It is also important to find details regarding the deposit of coins. Depositing coins often also requires the payment of a fee — one which is typically more expensive than the withdrawal fees. If depositing your coins is too expensive you can always exchange your left over coins at shops for banknotes. It is often cheaper (or even free) to deposit banknotes.",
- "translation": "It is also important to find details regarding the deposit of coins. Depositing coins often also requires the payment of a fee — one which is typically more expensive than the withdrawal fees. If depositing your coins is too expensive you can always exchange your left over coins at shops for banknotes. It is often cheaper (or even free) to deposit banknotes.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "In some countries such as Austria it is even common to be able to withdrawal new coins from your account by exchanging the left over coins you already have.",
- "message": "In some countries such as Austria it is even common to be able to withdrawal new coins from your account by exchanging the left over coins you already have.",
- "translation": "In some countries such as Austria it is even common to be able to withdrawal new coins from your account by exchanging the left over coins you already have.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Country-Specific Details",
- "message": "Country-Specific Details",
- "translation": "Country-Specific Details",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Below you can find all sorts of country-specific information we have regarding obtaining coin rolls. We lack a lot of information for many of the countries, so if you have any additional information such as your banks fees, the availability of coin roll machines, etc. feel free to contact us! You can find our contact information %shere%s.",
- "message": "Below you can find all sorts of country-specific information we have regarding obtaining coin rolls. We lack a lot of information for many of the countries, so if you have any additional information such as your banks fees, the availability of coin roll machines, etc. feel free to contact us! You can find our contact information %shere%s.",
- "translation": "Below you can find all sorts of country-specific information we have regarding obtaining coin rolls. We lack a lot of information for many of the countries, so if you have any additional information such as your banks fees, the availability of coin roll machines, etc. feel free to contact us! You can find our contact information %shere%s.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Be aware of the face that the information below is prone to being outdated, and as such may not reflect the current reality.",
- "message": "Be aware of the face that the information below is prone to being outdated, and as such may not reflect the current reality.",
- "translation": "Be aware of the face that the information below is prone to being outdated, and as such may not reflect the current reality.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin rolls can be obtained from Andbank, Crèdit Andorrà, and MoraBanc. All three of these banks require that you are a customer to get rolls. There have however been reports of individuals managing to get rolls without any fees and without being a customer by simply asking kindly at the bank.",
- "message": "Coin rolls can be obtained from Andbank, Crèdit Andorrà, and MoraBanc. All three of these banks require that you are a customer to get rolls. There have however been reports of individuals managing to get rolls without any fees and without being a customer by simply asking kindly at the bank.",
- "translation": "Coin rolls can be obtained from Andbank, Crèdit Andorrà, and MoraBanc. All three of these banks require that you are a customer to get rolls. There have however been reports of individuals managing to get rolls without any fees and without being a customer by simply asking kindly at the bank.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The Austrian National Bank does not distribute circulated rolls but sells rolls of commemorative coins at face value on release as well as uncirculated rolls for all denominations.",
- "message": "The Austrian National Bank does not distribute circulated rolls but sells rolls of commemorative coins at face value on release as well as uncirculated rolls for all denominations.",
- "translation": "The Austrian National Bank does not distribute circulated rolls but sells rolls of commemorative coins at face value on release as well as uncirculated rolls for all denominations.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "There is a fee of %s per roll. Rolls can be purchased with cash at machines. These machines are available to everyone, but not in all branches. Look for the ‘Münzrollengeber’ filter option %shere%s.",
- "message": "There is a fee of %s per roll. Rolls can be purchased with cash at machines. These machines are available to everyone, but not in all branches. Look for the ‘Münzrollengeber’ filter option %shere%s.",
- "translation": "There is a fee of %s per roll. Rolls can be purchased with cash at machines. These machines are available to everyone, but not in all branches. Look for the ‘Münzrollengeber’ filter option %shere%s.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "There is a fee of %s per roll. You must be a customer to use machines to get rolls. Rolls have no fees when purchased at counters, but counters redirect you to machines if they work; counters accept cash. You must present an Erste Bank card to buy rolls from machines, but you can pay with cash.",
- "message": "There is a fee of %s per roll. You must be a customer to use machines to get rolls. Rolls have no fees when purchased at counters, but counters redirect you to machines if they work; counters accept cash. You must present an Erste Bank card to buy rolls from machines, but you can pay with cash.",
- "translation": "There is a fee of %s per roll. You must be a customer to use machines to get rolls. Rolls have no fees when purchased at counters, but counters redirect you to machines if they work; counters accept cash. You must present an Erste Bank card to buy rolls from machines, but you can pay with cash.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Depositing coins is free for up to %s a day, at which point you pay 1%% for any additional deposited coins. You must also be a customer. Depositing coins is free for all Erste Bank customers at Dornbirner Sparkasse with no limit.",
- "message": "Depositing coins is free for up to %s a day, at which point you pay 1%% for any additional deposited coins. You must also be a customer. Depositing coins is free for all Erste Bank customers at Dornbirner Sparkasse with no limit.",
- "translation": "Depositing coins is free for up to %s a day, at which point you pay 1%% for any additional deposited coins. You must also be a customer. Depositing coins is free for all Erste Bank customers at Dornbirner Sparkasse with no limit.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "There is a fee of %s per roll if you aren’t a customer, and %s otherwise. Coin deposits are free if you’re a customer.",
- "message": "There is a fee of %s per roll if you aren’t a customer, and %s otherwise. Coin deposits are free if you’re a customer.",
- "translation": "There is a fee of %s per roll if you aren’t a customer, and %s otherwise. Coin deposits are free if you’re a customer.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Reportedly fee-less with no need of being a customer, but this is unconfirmed.",
- "message": "Reportedly fee-less with no need of being a customer, but this is unconfirmed.",
- "translation": "Reportedly fee-less with no need of being a customer, but this is unconfirmed.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "There is a %s fee with no limit on the number of rolls.",
- "message": "There is a %s fee with no limit on the number of rolls.",
- "translation": "There is a %s fee with no limit on the number of rolls.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Belgian Central Bank",
- "message": "Belgian Central Bank",
- "translation": "Belgian Central Bank",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "You can visit the Belgian Central Bank in Brussels as an EU citizen. You can order coin rolls for no fee up to %s in value. They seem to distribute uncirculated coins (no commemoratives).",
- "message": "You can visit the Belgian Central Bank in Brussels as an EU citizen. You can order coin rolls for no fee up to %s in value. They seem to distribute uncirculated coins (no commemoratives).",
- "translation": "You can visit the Belgian Central Bank in Brussels as an EU citizen. You can order coin rolls for no fee up to %s in value. They seem to distribute uncirculated coins (no commemoratives).",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Free for customers but getting coin rolls is still difficult sometimes. Non-customers cannot get rolls.",
- "message": "Free for customers but getting coin rolls is still difficult sometimes. Non-customers cannot get rolls.",
- "translation": "Free for customers but getting coin rolls is still difficult sometimes. Non-customers cannot get rolls.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Free for customers when you order through their online platform.",
- "message": "Free for customers when you order through their online platform.",
- "translation": "Free for customers when you order through their online platform.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Bank of Cyprus",
- "message": "Bank of Cyprus",
- "translation": "Bank of Cyprus",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "At the Bank of Cyprus it is possible to buy bags of coins without being a customer, and without paying any additional fees. Depending on the branch you visit you may have coin roll machine available. Do note that the bags provided by the Bank of Cyprus are around twice as large as usual with %s bags containing 50 coins and the other denomination bags containing 100 coins.",
- "message": "At the Bank of Cyprus it is possible to buy bags of coins without being a customer, and without paying any additional fees. Depending on the branch you visit you may have coin roll machine available. Do note that the bags provided by the Bank of Cyprus are around twice as large as usual with %s bags containing 50 coins and the other denomination bags containing 100 coins.",
- "translation": "At the Bank of Cyprus it is possible to buy bags of coins without being a customer, and without paying any additional fees. Depending on the branch you visit you may have coin roll machine available. Do note that the bags provided by the Bank of Cyprus are around twice as large as usual with %s bags containing 50 coins and the other denomination bags containing 100 coins.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin roll availability may vary across banks and branches, as well as the price. You must be a customer to purchase coin rolls unless specified otherwise.",
- "message": "Coin roll availability may vary across banks and branches, as well as the price. You must be a customer to purchase coin rolls unless specified otherwise.",
- "translation": "Coin roll availability may vary across banks and branches, as well as the price. You must be a customer to purchase coin rolls unless specified otherwise.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "German Federal Bank (Deutsche Bundesbank)",
- "message": "German Federal Bank (Deutsche Bundesbank)",
- "translation": "German Federal Bank (Deutsche Bundesbank)",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "You can obtain regular- and commemorative coins for face value including 5-, 10-, and 20 euro coins. You do not need to be a customer although depending on your branch you may need to make an appointment. The purchase of coins can only be done with cash.",
- "message": "You can obtain regular- and commemorative coins for face value including 5-, 10-, and 20 euro coins. You do not need to be a customer although depending on your branch you may need to make an appointment. The purchase of coins can only be done with cash.",
- "translation": "You can obtain regular- and commemorative coins for face value including 5-, 10-, and 20 euro coins. You do not need to be a customer although depending on your branch you may need to make an appointment. The purchase of coins can only be done with cash.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Hand-rolled coin rolls can be obtained with no additional fees.",
- "message": "Hand-rolled coin rolls can be obtained with no additional fees.",
- "translation": "Hand-rolled coin rolls can be obtained with no additional fees.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin rolls can be obtained for a fee of %s–%s per roll. The amount varies per branch.",
- "message": "Coin rolls can be obtained for a fee of %s–%s per roll. The amount varies per branch.",
- "translation": "Coin rolls can be obtained for a fee of %s–%s per roll. The amount varies per branch.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin rolls can be obtained for a fee of %s per roll.",
- "message": "Coin rolls can be obtained for a fee of %s per roll.",
- "translation": "Coin rolls can be obtained for a fee of %s per roll.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Obtaining coin rolls in Estonia is typically quite difficult, and often expensive. You also often need to make an appointment in advance.",
- "message": "Obtaining coin rolls in Estonia is typically quite difficult, and often expensive. You also often need to make an appointment in advance.",
- "translation": "Obtaining coin rolls in Estonia is typically quite difficult, and often expensive. You also often need to make an appointment in advance.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Central Bank of Estonia Museum",
- "message": "Central Bank of Estonia Museum",
- "translation": "Central Bank of Estonia Museum",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "You can purchase commemorative coins (even those released years ago) at face value. It is also an interesting museum to visit in general.",
- "message": "You can purchase commemorative coins (even those released years ago) at face value. It is also an interesting museum to visit in general.",
- "translation": "You can purchase commemorative coins (even those released years ago) at face value. It is also an interesting museum to visit in general.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin rolls are free but you must be a customer.",
- "message": "Coin rolls are free but you must be a customer.",
- "translation": "Coin rolls are free but you must be a customer.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Bank of Spain",
- "message": "Bank of Spain",
- "translation": "Bank of Spain",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "You can purchase individual coins and commemorative coin rolls (even those of other countries). You can watch %shere%s to see how to do it.",
- "message": "You can purchase individual coins and commemorative coin rolls (even those of other countries). You can watch %shere%s to see how to do it.",
- "translation": "You can purchase individual coins and commemorative coin rolls (even those of other countries). You can watch %shere%s to see how to do it.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin rolls have a fee of %s for 5 rolls. This seems to vary by region.",
- "message": "Coin rolls have a fee of %s for 5 rolls. This seems to vary by region.",
- "translation": "Coin rolls have a fee of %s for 5 rolls. This seems to vary by region.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin rolls have no fees.",
- "message": "Coin rolls have no fees.",
- "translation": "Coin rolls have no fees.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "La Caixa",
- "message": "La Caixa",
- "translation": "La Caixa",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin rolls have no fees and can be purchased with cash. You do not need to be a customer, although this needs to be re-verified.",
- "message": "Coin rolls have no fees and can be purchased with cash. You do not need to be a customer, although this needs to be re-verified.",
- "translation": "Coin rolls have no fees and can be purchased with cash. You do not need to be a customer, although this needs to be re-verified.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Finland has no coin roll machines, but you can find vending machines or coin exchange machines (albeit they are rare).",
- "message": "Finland has no coin roll machines, but you can find vending machines or coin exchange machines (albeit they are rare).",
- "translation": "Finland has no coin roll machines, but you can find vending machines or coin exchange machines (albeit they are rare).",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin rolls can be obtained with no fees.",
- "message": "Coin rolls can be obtained with no fees.",
- "translation": "Coin rolls can be obtained with no fees.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Bank of Finland",
- "message": "Bank of Finland",
- "translation": "Bank of Finland",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "It is probably not possible to obtain coin rolls, but this is not confirmed.",
- "message": "It is probably not possible to obtain coin rolls, but this is not confirmed.",
- "translation": "It is probably not possible to obtain coin rolls, but this is not confirmed.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin roll machines are uncommon, only some banks have them and you need to be a customer. You may also need to order them in advance.",
- "message": "Coin roll machines are uncommon, only some banks have them and you need to be a customer. You may also need to order them in advance.",
- "translation": "Coin roll machines are uncommon, only some banks have them and you need to be a customer. You may also need to order them in advance.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin rolls can be obtained with no fee. You must be a customer.",
- "message": "Coin rolls can be obtained with no fee. You must be a customer.",
- "translation": "Coin rolls can be obtained with no fee. You must be a customer.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "and",
- "message": "and",
- "translation": "and",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Free coin rolls if you are a customer or %s per roll if you are not a customer. There are coin roll machines.",
- "message": "Free coin rolls if you are a customer or %s per roll if you are not a customer. There are coin roll machines.",
- "translation": "Free coin rolls if you are a customer or %s per roll if you are not a customer. There are coin roll machines.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "There are coin roll machines but it is not yet known if you need to be a customer or if there are fees.",
- "message": "There are coin roll machines but it is not yet known if you need to be a customer or if there are fees.",
- "translation": "There are coin roll machines but it is not yet known if you need to be a customer or if there are fees.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Bank of Greece (Τράπεζα της Ελλάδος)",
- "message": "Bank of Greece (Τράπεζα της Ελλάδος)",
- "translation": "Bank of Greece (Τράπεζα της Ελλάδος)",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Fee-less coin rolls for everyone (you will need to show ID). The latest commemorative coins are also sold for face value.",
- "message": "Fee-less coin rolls for everyone (you will need to show ID). The latest commemorative coins are also sold for face value.",
- "translation": "Fee-less coin rolls for everyone (you will need to show ID). The latest commemorative coins are also sold for face value.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Fee-less coin bags for everyone (no ID necessary). Smaller denominations are often not given out, and the coin bags you recieve are very large (there are reports of %s bags containing 250 coins).",
- "message": "Fee-less coin bags for everyone (no ID necessary). Smaller denominations are often not given out, and the coin bags you recieve are very large (there are reports of %s bags containing 250 coins).",
- "translation": "Fee-less coin bags for everyone (no ID necessary). Smaller denominations are often not given out, and the coin bags you recieve are very large (there are reports of %s bags containing 250 coins).",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "In general, coin rolls are available at banks with a fee of %s per roll; rolls could potentially have no fee if you only need a few.",
- "message": "In general, coin rolls are available at banks with a fee of %s per roll; rolls could potentially have no fee if you only need a few.",
- "translation": "In general, coin rolls are available at banks with a fee of %s per roll; rolls could potentially have no fee if you only need a few.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "There are coin roll machines but it is unknown if you need to be a customer or if there are additional fees.",
- "message": "There are coin roll machines but it is unknown if you need to be a customer or if there are additional fees.",
- "translation": "There are coin roll machines but it is unknown if you need to be a customer or if there are additional fees.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Bank of Italy",
- "message": "Bank of Italy",
- "translation": "Bank of Italy",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin rolls are available to everyone.",
- "message": "Coin rolls are available to everyone.",
- "translation": "Coin rolls are available to everyone.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Works, but with very high fees (5%% of cost).",
- "message": "Works, but with very high fees (5%% of cost).",
- "translation": "Works, but with very high fees (5%% of cost).",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Fee of %s per roll of 2 euro coins.",
- "message": "Fee of %s per roll of 2 euro coins.",
- "translation": "Fee of %s per roll of 2 euro coins.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "As far as we are aware, Lietuvos Bankas only distributes coin rolls to businesses.",
- "message": "As far as we are aware, Lietuvos Bankas only distributes coin rolls to businesses.",
- "translation": "As far as we are aware, Lietuvos Bankas only distributes coin rolls to businesses.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "It may be worth checking out payout machines to exchange banknotes into coins.",
- "message": "It may be worth checking out payout machines to exchange banknotes into coins.",
- "translation": "It may be worth checking out payout machines to exchange banknotes into coins.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Luxembourgish Central Bank (Banque Centrale du Luxembourg)",
- "message": "Luxembourgish Central Bank (Banque Centrale du Luxembourg)",
- "translation": "Luxembourgish Central Bank (Banque Centrale du Luxembourg)",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "We currently have no information regarding regular coins, however their webshop sells commemorative coins (for a high premium, but better than most resellers). Commemorative coins are also available for purchase in-person.",
- "message": "We currently have no information regarding regular coins, however their webshop sells commemorative coins (for a high premium, but better than most resellers). Commemorative coins are also available for purchase in-person.",
- "translation": "We currently have no information regarding regular coins, however their webshop sells commemorative coins (for a high premium, but better than most resellers). Commemorative coins are also available for purchase in-person.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "You should be able to get coin rolls with no additional fees.",
- "message": "You should be able to get coin rolls with no additional fees.",
- "translation": "You should be able to get coin rolls with no additional fees.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "In general coin rolls are sold with a fee of %s per roll, but we’re lacking a lot of information.",
- "message": "In general coin rolls are sold with a fee of %s per roll, but we’re lacking a lot of information.",
- "translation": "In general coin rolls are sold with a fee of %s per roll, but we’re lacking a lot of information.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Bank of Valletta and HSBC Bank Malta",
- "message": "Bank of Valletta and HSBC Bank Malta",
- "translation": "Bank of Valletta and HSBC Bank Malta",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "You can get rolls for a fee of %s per roll. You must order coin rolls through their online platform, and you must be a customer.",
- "message": "You can get rolls for a fee of %s per roll. You must order coin rolls through their online platform, and you must be a customer.",
- "translation": "You can get rolls for a fee of %s per roll. You must order coin rolls through their online platform, and you must be a customer.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Banks in the Netherlands do not carry cash, and as such it’s not possible to obtain rolls from bank tellers. Obtaining coins from the Dutch Central Bank (De Nederlandsche Bank) is also not possible. If you want to obtain coin rolls you need to use a Geldmaat coin roll machine which can be found in specific branches of GAMMA and Karwei. Geldmaat offers a map on their website where you can search for branches with these machines; you can find that map %shere%s.",
- "message": "Banks in the Netherlands do not carry cash, and as such it’s not possible to obtain rolls from bank tellers. Obtaining coins from the Dutch Central Bank (De Nederlandsche Bank) is also not possible. If you want to obtain coin rolls you need to use a Geldmaat coin roll machine which can be found in specific branches of GAMMA and Karwei. Geldmaat offers a map on their website where you can search for branches with these machines; you can find that map %shere%s.",
- "translation": "Banks in the Netherlands do not carry cash, and as such it’s not possible to obtain rolls from bank tellers. Obtaining coins from the Dutch Central Bank (De Nederlandsche Bank) is also not possible. If you want to obtain coin rolls you need to use a Geldmaat coin roll machine which can be found in specific branches of GAMMA and Karwei. Geldmaat offers a map on their website where you can search for branches with these machines; you can find that map %shere%s.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "In order to be able to use a Geldmaat coin machine, you must be a customer of either ABN AMRO, ING, or Rabobank. You also cannot pay by cash, only card payments are allowed. All three banks charge a withdrawal fee for getting coin rolls, which are detailed in the list below.",
- "message": "In order to be able to use a Geldmaat coin machine, you must be a customer of either ABN AMRO, ING, or Rabobank. You also cannot pay by cash, only card payments are allowed. All three banks charge a withdrawal fee for getting coin rolls, which are detailed in the list below.",
- "translation": "In order to be able to use a Geldmaat coin machine, you must be a customer of either ABN AMRO, ING, or Rabobank. You also cannot pay by cash, only card payments are allowed. All three banks charge a withdrawal fee for getting coin rolls, which are detailed in the list below.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "%s per roll.",
- "message": "%s per roll.",
- "translation": "%s per roll.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Base fee of %s + %s per roll.",
- "message": "Base fee of %s + %s per roll.",
- "translation": "Base fee of %s + %s per roll.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "One- and two-cent coins have been removed from circulation and cannot be obtained.",
- "message": "One- and two-cent coins have been removed from circulation and cannot be obtained.",
- "translation": "One- and two-cent coins have been removed from circulation and cannot be obtained.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin bags are sold with no additional fees to bank customers.",
- "message": "Coin bags are sold with no additional fees to bank customers.",
- "translation": "Coin bags are sold with no additional fees to bank customers.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Bank of Portugal (Banco de Portugal)",
- "message": "Bank of Portugal (Banco de Portugal)",
- "translation": "Bank of Portugal (Banco de Portugal)",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin bags are sold with no additional fees to everyone.",
- "message": "Coin bags are sold with no additional fees to everyone.",
- "translation": "Coin bags are sold with no additional fees to everyone.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "In general there is a %s fee for coin rolls.",
- "message": "In general there is a %s fee for coin rolls.",
- "translation": "In general there is a %s fee for coin rolls.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Bank of Slovenia (Banka Slovenije)",
- "message": "Bank of Slovenia (Banka Slovenije)",
- "translation": "Bank of Slovenia (Banka Slovenije)",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "You can purchase commemorative coins for face value, and coin rolls are sold with no fees to everyone.",
- "message": "You can purchase commemorative coins for face value, and coin rolls are sold with no fees to everyone.",
- "translation": "You can purchase commemorative coins for face value, and coin rolls are sold with no fees to everyone.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "National Bank of Slovakia (Národná banka Slovenska)",
- "message": "National Bank of Slovakia (Národná banka Slovenska)",
- "translation": "National Bank of Slovakia (Národná banka Slovenska)",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "You may be able to get uncirculated rolls, but this is not yet confirmed.",
- "message": "You may be able to get uncirculated rolls, but this is not yet confirmed.",
- "translation": "You may be able to get uncirculated rolls, but this is not yet confirmed.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "You can get an unlimited number of rolls for a %s fee. You must be a customer of the bank.",
- "message": "You can get an unlimited number of rolls for a %s fee. You must be a customer of the bank.",
- "translation": "You can get an unlimited number of rolls for a %s fee. You must be a customer of the bank.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Ask the Pope nicely and he’ll probably give you some Vatican coins for free.",
- "message": "Ask the Pope nicely and he’ll probably give you some Vatican coins for free.",
- "translation": "Ask the Pope nicely and he’ll probably give you some Vatican coins for free.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "We currently have no information regarding coin roll hunting in %s.",
- "message": "We currently have no information regarding coin roll hunting in %s.",
- "translation": "We currently have no information regarding coin roll hunting in %s.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin Storage",
- "message": "Coin Storage",
- "translation": "Coin Storage",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "There are many different methods of storing your collecting, each with their own benefits and drawbacks. This page will describe the most common methods collectors use to store their coins, as well as the pros and cons of each method.",
- "message": "There are many different methods of storing your collecting, each with their own benefits and drawbacks. This page will describe the most common methods collectors use to store their coins, as well as the pros and cons of each method.",
- "translation": "There are many different methods of storing your collecting, each with their own benefits and drawbacks. This page will describe the most common methods collectors use to store their coins, as well as the pros and cons of each method.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin Albums",
- "message": "Coin Albums",
- "translation": "Coin Albums",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin albums are one of the most popular ways of storing coins. In a coin album you will have multiple coin sheets. These sheets are plastic pages with slots that you can put your coin in to keep them protected. When searching for sheets for your album it is very important to ensure that they do not contain any PVC, which will damage your coins. Some albums will come with sheets already included.",
- "message": "Coin albums are one of the most popular ways of storing coins. In a coin album you will have multiple coin sheets. These sheets are plastic pages with slots that you can put your coin in to keep them protected. When searching for sheets for your album it is very important to ensure that they do not contain any PVC, which will damage your coins. Some albums will come with sheets already included.",
- "translation": "Coin albums are one of the most popular ways of storing coins. In a coin album you will have multiple coin sheets. These sheets are plastic pages with slots that you can put your coin in to keep them protected. When searching for sheets for your album it is very important to ensure that they do not contain any PVC, which will damage your coins. Some albums will come with sheets already included.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Albums can be an affordable way to store your coins, but higher-end albums can be a bit expensive. Also remember to always ensure that your albums do not contain any PVC!",
- "message": "Albums can be an affordable way to store your coins, but higher-end albums can be a bit expensive. Also remember to always ensure that your albums do not contain any PVC!",
- "translation": "Albums can be an affordable way to store your coins, but higher-end albums can be a bit expensive. Also remember to always ensure that your albums do not contain any PVC!",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin Boxes",
- "message": "Coin Boxes",
- "translation": "Coin Boxes",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin boxes are to many people the most aesthetic way to store your coins. A coin box is comprised of various layers which can be stacked ontop of each other. Each layer has various holes where you can insert your coins. Typically you are meant to store your coins in a layer encased in a coin capsule.",
- "message": "Coin boxes are to many people the most aesthetic way to store your coins. A coin box is comprised of various layers which can be stacked ontop of each other. Each layer has various holes where you can insert your coins. Typically you are meant to store your coins in a layer encased in a coin capsule.",
- "translation": "Coin boxes are to many people the most aesthetic way to store your coins. A coin box is comprised of various layers which can be stacked ontop of each other. Each layer has various holes where you can insert your coins. Typically you are meant to store your coins in a layer encased in a coin capsule.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Boxes are quite space-inefficient and are one of the most expensive ways to store your coins, but at the same time they offer a great visual appeal.",
- "message": "Boxes are quite space-inefficient and are one of the most expensive ways to store your coins, but at the same time they offer a great visual appeal.",
- "translation": "Boxes are quite space-inefficient and are one of the most expensive ways to store your coins, but at the same time they offer a great visual appeal.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin Capsules",
- "message": "Coin Capsules",
- "translation": "Coin Capsules",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin capsules are plastic capsules you can put your coin in. They offer good protection to your coins, while still allowing you to view all parts of your coin easily, including the edge engravings and -inscriptions. Capsules are also far more durable than flips, and can be opened and closed repeatedly allowing for them to be reused. This isn’t really possible with flips.",
- "message": "Coin capsules are plastic capsules you can put your coin in. They offer good protection to your coins, while still allowing you to view all parts of your coin easily, including the edge engravings and -inscriptions. Capsules are also far more durable than flips, and can be opened and closed repeatedly allowing for them to be reused. This isn’t really possible with flips.",
- "translation": "Coin capsules are plastic capsules you can put your coin in. They offer good protection to your coins, while still allowing you to view all parts of your coin easily, including the edge engravings and -inscriptions. Capsules are also far more durable than flips, and can be opened and closed repeatedly allowing for them to be reused. This isn’t really possible with flips.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Capsules can be a bit pricey, but are reusable and are very durable. They also come in different sizes, so make sure you get the right size for your coins.",
- "message": "Capsules can be a bit pricey, but are reusable and are very durable. They also come in different sizes, so make sure you get the right size for your coins.",
- "translation": "Capsules can be a bit pricey, but are reusable and are very durable. They also come in different sizes, so make sure you get the right size for your coins.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin Flips",
- "message": "Coin Flips",
- "translation": "Coin Flips",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin flips, also known as ‘2x2’ flips by some Americans are small cardboard flips with a plastic covered hole in the middle for viewing. Most coin flips are stapled, meaning you put your coin in the flip and staple it shut. These kinds of flips are very cheap, and you can buy stacks of a few hundred for only a few euros. If you don’t like the staples though, you can also buy adhesive-flips that glue themselves shut. These flips are more expensive, but also look better than their stapled equivalents.",
- "message": "Coin flips, also known as ‘2x2’ flips by some Americans are small cardboard flips with a plastic covered hole in the middle for viewing. Most coin flips are stapled, meaning you put your coin in the flip and staple it shut. These kinds of flips are very cheap, and you can buy stacks of a few hundred for only a few euros. If you don’t like the staples though, you can also buy adhesive-flips that glue themselves shut. These flips are more expensive, but also look better than their stapled equivalents.",
- "translation": "Coin flips, also known as ‘2x2’ flips by some Americans are small cardboard flips with a plastic covered hole in the middle for viewing. Most coin flips are stapled, meaning you put your coin in the flip and staple it shut. These kinds of flips are very cheap, and you can buy stacks of a few hundred for only a few euros. If you don’t like the staples though, you can also buy adhesive-flips that glue themselves shut. These flips are more expensive, but also look better than their stapled equivalents.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin slips are also pretty space efficient, and can be easily stacked in boxes for compact storage. Many collectors also like to write notes about their coins on the flips. There also exist special sheets for coin albums that allow you to put in flipped coins, but this is more expensive and less space-efficient than simply using flips or an album without flips.",
- "message": "Coin slips are also pretty space efficient, and can be easily stacked in boxes for compact storage. Many collectors also like to write notes about their coins on the flips. There also exist special sheets for coin albums that allow you to put in flipped coins, but this is more expensive and less space-efficient than simply using flips or an album without flips.",
- "translation": "Coin slips are also pretty space efficient, and can be easily stacked in boxes for compact storage. Many collectors also like to write notes about their coins on the flips. There also exist special sheets for coin albums that allow you to put in flipped coins, but this is more expensive and less space-efficient than simply using flips or an album without flips.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin Rolls",
- "message": "Coin Rolls",
- "translation": "Coin Rolls",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "This is probably the most inexpensive way to store your coins. If you take good care of the paper when opening your coin rolls, you can simply reuse them for storage. Just roll your coins back up and put some rubber bands on the ends. You can also get reusable plastic rolls that can be opened and closed. You will need different rolls based on the denomination you want to store, but they are very space-efficient.",
- "message": "This is probably the most inexpensive way to store your coins. If you take good care of the paper when opening your coin rolls, you can simply reuse them for storage. Just roll your coins back up and put some rubber bands on the ends. You can also get reusable plastic rolls that can be opened and closed. You will need different rolls based on the denomination you want to store, but they are very space-efficient.",
- "translation": "This is probably the most inexpensive way to store your coins. If you take good care of the paper when opening your coin rolls, you can simply reuse them for storage. Just roll your coins back up and put some rubber bands on the ends. You can also get reusable plastic rolls that can be opened and closed. You will need different rolls based on the denomination you want to store, but they are very space-efficient.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Examples",
- "message": "Examples",
- "translation": "Examples",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "In case you’re looking for some inspiration on how to store your collections, here are some examples.",
- "message": "In case you’re looking for some inspiration on how to store your collections, here are some examples.",
- "translation": "In case you’re looking for some inspiration on how to store your collections, here are some examples.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Euro Coin Collecting",
- "message": "Euro Coin Collecting",
- "translation": "Euro Coin Collecting",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "What is Vending Machine Hunting?",
- "message": "What is Vending Machine Hunting?",
- "translation": "What is Vending Machine Hunting?",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "‘Vending machine hunting’ is a strategy of collecting coins whereby you continuously insert coins into a vending machine and cancel the transaction by pressing the return button. When the vending machine returns your coins to you, you will often get different coins from the ones you put in, and you can repeat this process until you’ve searched through every coin in the machine.",
- "message": "‘Vending machine hunting’ is a strategy of collecting coins whereby you continuously insert coins into a vending machine and cancel the transaction by pressing the return button. When the vending machine returns your coins to you, you will often get different coins from the ones you put in, and you can repeat this process until you’ve searched through every coin in the machine.",
- "translation": "‘Vending machine hunting’ is a strategy of collecting coins whereby you continuously insert coins into a vending machine and cancel the transaction by pressing the return button. When the vending machine returns your coins to you, you will often get different coins from the ones you put in, and you can repeat this process until you’ve searched through every coin in the machine.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The Test Coins",
- "message": "The Test Coins",
- "translation": "The Test Coins",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "First, you want to make sure the vending machine you come across actually gives back change — sometimes they don’t! Throw in a 10 cent coin and press the return button. If it doesn’t give the coin back, you can move on to the next machine; there’s a high chance it won’t return higher denominations either. Next throw in a random 2 euro coin and press the return button. You should do this because vending machines may not return 2 euro coins, but rather 1 euro- or 50 cent coins instead. It’s better to find out immediately as opposed to later once you’ve already put in all of your 2 euro coins.",
- "message": "First, you want to make sure the vending machine you come across actually gives back change — sometimes they don’t! Throw in a 10 cent coin and press the return button. If it doesn’t give the coin back, you can move on to the next machine; there’s a high chance it won’t return higher denominations either. Next throw in a random 2 euro coin and press the return button. You should do this because vending machines may not return 2 euro coins, but rather 1 euro- or 50 cent coins instead. It’s better to find out immediately as opposed to later once you’ve already put in all of your 2 euro coins.",
- "translation": "First, you want to make sure the vending machine you come across actually gives back change — sometimes they don’t! Throw in a 10 cent coin and press the return button. If it doesn’t give the coin back, you can move on to the next machine; there’s a high chance it won’t return higher denominations either. Next throw in a random 2 euro coin and press the return button. You should do this because vending machines may not return 2 euro coins, but rather 1 euro- or 50 cent coins instead. It’s better to find out immediately as opposed to later once you’ve already put in all of your 2 euro coins.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The Stopper",
- "message": "The Stopper",
- "translation": "The Stopper",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "We want to be able to know when we’ve gone through all the coins in the vending machine. To do this, take out a coin and mark it with something (drawing on it with a Sharpie works well), then put it into the machine. Next time you get the same coin back, you know you’ve gone through everything.",
- "message": "We want to be able to know when we’ve gone through all the coins in the vending machine. To do this, take out a coin and mark it with something (drawing on it with a Sharpie works well), then put it into the machine. Next time you get the same coin back, you know you’ve gone through everything.",
- "translation": "We want to be able to know when we’ve gone through all the coins in the vending machine. To do this, take out a coin and mark it with something (drawing on it with a Sharpie works well), then put it into the machine. Next time you get the same coin back, you know you’ve gone through everything.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Rejected Stoppers and Coins",
- "message": "Rejected Stoppers and Coins",
- "translation": "Rejected Stoppers and Coins",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Sometimes you may throw a stopper in, but you hear a ‘clunk’ sound, as if the coin was dropped into a box (normally adding a coin should be silent after you throw it in). This means the coin was not added to the stack properly, and so it will not be returned. Pay attention to this noise, because you won’t be getting the stopper back! Throw in another marked coin instead until the machine accepts the coin.",
- "message": "Sometimes you may throw a stopper in, but you hear a ‘clunk’ sound, as if the coin was dropped into a box (normally adding a coin should be silent after you throw it in). This means the coin was not added to the stack properly, and so it will not be returned. Pay attention to this noise, because you won’t be getting the stopper back! Throw in another marked coin instead until the machine accepts the coin.",
- "translation": "Sometimes you may throw a stopper in, but you hear a ‘clunk’ sound, as if the coin was dropped into a box (normally adding a coin should be silent after you throw it in). This means the coin was not added to the stack properly, and so it will not be returned. Pay attention to this noise, because you won’t be getting the stopper back! Throw in another marked coin instead until the machine accepts the coin.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "(Non-)Merging Machines",
- "message": "(Non-)Merging Machines",
- "translation": "(Non-)Merging Machines",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "We generally identify between two main types of vending machines.",
- "message": "We generally identify between two main types of vending machines.",
- "translation": "We generally identify between two main types of vending machines.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Merging",
- "message": "Merging",
- "translation": "Merging",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The vending machine merges change together. For example if you throw in five 50 cent coins, the machine returns either two 1 euro coins and one 50 cent coin or one 2 euro and one 50 cent coin. This usually means you can hunt 2 euro coins very quickly but other denominations only once at a time. A good tip is to throw in an odd number of euros and 80 cents if you want to search through all denominations.",
- "message": "The vending machine merges change together. For example if you throw in five 50 cent coins, the machine returns either two 1 euro coins and one 50 cent coin or one 2 euro and one 50 cent coin. This usually means you can hunt 2 euro coins very quickly but other denominations only once at a time. A good tip is to throw in an odd number of euros and 80 cents if you want to search through all denominations.",
- "translation": "The vending machine merges change together. For example if you throw in five 50 cent coins, the machine returns either two 1 euro coins and one 50 cent coin or one 2 euro and one 50 cent coin. This usually means you can hunt 2 euro coins very quickly but other denominations only once at a time. A good tip is to throw in an odd number of euros and 80 cents if you want to search through all denominations.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Non-Merging",
- "message": "Non-Merging",
- "translation": "Non-Merging",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The vending machine does not merge change together. This means if you throw in five 50 cent coins it will return five 50 cent coins. This makes it very easy to hunt a large amount of a specific denomination.",
- "message": "The vending machine does not merge change together. This means if you throw in five 50 cent coins it will return five 50 cent coins. This makes it very easy to hunt a large amount of a specific denomination.",
- "translation": "The vending machine does not merge change together. This means if you throw in five 50 cent coins it will return five 50 cent coins. This makes it very easy to hunt a large amount of a specific denomination.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Limits",
- "message": "Limits",
- "translation": "Limits",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "There are some limits to vending machine hunts which you need to be aware of.",
- "message": "There are some limits to vending machine hunts which you need to be aware of.",
- "translation": "There are some limits to vending machine hunts which you need to be aware of.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Maximum Input Limit",
- "message": "Maximum Input Limit",
- "translation": "Maximum Input Limit",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Some machines have a maximum amount you can throw in, and will reject anything higher. For example machines with a max limit of five euros will reject any additional coins if you throw in five euros. You can try to go above the limit if you throw in, say, %s and then another one- or two euro coin; the machine will probably accept it.",
- "message": "Some machines have a maximum amount you can throw in, and will reject anything higher. For example machines with a max limit of five euros will reject any additional coins if you throw in five euros. You can try to go above the limit if you throw in, say, %s and then another one- or two euro coin; the machine will probably accept it.",
- "translation": "Some machines have a maximum amount you can throw in, and will reject anything higher. For example machines with a max limit of five euros will reject any additional coins if you throw in five euros. You can try to go above the limit if you throw in, say, %s and then another one- or two euro coin; the machine will probably accept it.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Maximum Change Limit",
- "message": "Maximum Change Limit",
- "translation": "Maximum Change Limit",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Some machines will either give back large amounts of change in bills or will not give back large amounts of change at all (usually cigarette machines). Read the labels on all machines carefully since these limits are usually written there.",
- "message": "Some machines will either give back large amounts of change in bills or will not give back large amounts of change at all (usually cigarette machines). Read the labels on all machines carefully since these limits are usually written there.",
- "translation": "Some machines will either give back large amounts of change in bills or will not give back large amounts of change at all (usually cigarette machines). Read the labels on all machines carefully since these limits are usually written there.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Even if no limits are listed, it’s still advised that you exercise caution: it is not uncommon for a vending machine to steal your money. In the case that a vending machine does steal your money, look for a label on the machine that contains a support number.",
- "message": "Even if no limits are listed, it’s still advised that you exercise caution: it is not uncommon for a vending machine to steal your money. In the case that a vending machine does steal your money, look for a label on the machine that contains a support number.",
- "translation": "Even if no limits are listed, it’s still advised that you exercise caution: it is not uncommon for a vending machine to steal your money. In the case that a vending machine does steal your money, look for a label on the machine that contains a support number.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "For information on Austrian cigarette machines, see the ‘%sCigarette Machines%s’ section.",
- "message": "For information on Austrian cigarette machines, see the ‘%sCigarette Machines%s’ section.",
- "translation": "For information on Austrian cigarette machines, see the ‘%sCigarette Machines%s’ section.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Cigarette Machines",
- "message": "Cigarette Machines",
- "translation": "Cigarette Machines",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "In some countries where cigarette machines are legal, you can hunt through them as well. Unless you’re in Malta, you must verify your age on them by either sliding an ID card through a sensor or holding a debit card on an RFID scanner; you must do this for every cycle. Sometimes you must also select something to purchase, throw in less money than the cost, and then cancel the purchase. Note that most cigarette machines in Austria have a %s max change limit.",
- "message": "In some countries where cigarette machines are legal, you can hunt through them as well. Unless you’re in Malta, you must verify your age on them by either sliding an ID card through a sensor or holding a debit card on an RFID scanner; you must do this for every cycle. Sometimes you must also select something to purchase, throw in less money than the cost, and then cancel the purchase. Note that most cigarette machines in Austria have a %s max change limit.",
- "translation": "In some countries where cigarette machines are legal, you can hunt through them as well. Unless you’re in Malta, you must verify your age on them by either sliding an ID card through a sensor or holding a debit card on an RFID scanner; you must do this for every cycle. Sometimes you must also select something to purchase, throw in less money than the cost, and then cancel the purchase. Note that most cigarette machines in Austria have a %s max change limit.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "For RFID scanner machines it helps to wear a glove and slide a debit card into the back of it so you can easily use both hands and don’t have to fumble with a card and coins.",
- "message": "For RFID scanner machines it helps to wear a glove and slide a debit card into the back of it so you can easily use both hands and don’t have to fumble with a card and coins.",
- "translation": "For RFID scanner machines it helps to wear a glove and slide a debit card into the back of it so you can easily use both hands and don’t have to fumble with a card and coins.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "On this section of the site you can find everything there is to know about collecting Euro coins. If this is a hobby that interests you, join the Discord server linked at the top of the page!",
- "message": "On this section of the site you can find everything there is to know about collecting Euro coins. If this is a hobby that interests you, join the Discord server linked at the top of the page!",
- "translation": "On this section of the site you can find everything there is to know about collecting Euro coins. If this is a hobby that interests you, join the Discord server linked at the top of the page!",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Learn about collecting coins from coin rolls!",
- "message": "Learn about collecting coins from coin rolls!",
- "translation": "Learn about collecting coins from coin rolls!",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Learn about the different methods to storing your collection!",
- "message": "Learn about the different methods to storing your collection!",
- "translation": "Learn about the different methods to storing your collection!",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Shop Hunting",
- "message": "Shop Hunting",
- "translation": "Shop Hunting",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Learn about how to collect coins from shop-keepers and other people who deal in cash!",
- "message": "Learn about how to collect coins from shop-keepers and other people who deal in cash!",
- "translation": "Learn about how to collect coins from shop-keepers and other people who deal in cash!",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Vending Machine Hunting",
- "message": "Vending Machine Hunting",
- "translation": "Vending Machine Hunting",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Learn about collecting coins from vending machines!",
- "message": "Learn about collecting coins from vending machines!",
- "translation": "Learn about collecting coins from vending machines!",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "The Euro Cash Compendium",
- "message": "The Euro Cash Compendium",
- "translation": "The Euro Cash Compendium",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "United in",
- "message": "United in",
- "translation": "United in",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "diversity",
- "message": "diversity",
- "translation": "diversity",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "cash",
- "message": "cash",
- "translation": "cash",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Welcome to the Euro Cash Compendium. This sites aims to be a resource for you to discover everything there is to know about the coins and banknotes of the Euro, a currency that spans 26 countries and 350 million people. We also have dedicated sections of the site for collectors.",
- "message": "Welcome to the Euro Cash Compendium. This sites aims to be a resource for you to discover everything there is to know about the coins and banknotes of the Euro, a currency that spans 26 countries and 350 million people. We also have dedicated sections of the site for collectors.",
- "translation": "Welcome to the Euro Cash Compendium. This sites aims to be a resource for you to discover everything there is to know about the coins and banknotes of the Euro, a currency that spans 26 countries and 350 million people. We also have dedicated sections of the site for collectors.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Euro Cash Jargon",
- "message": "Euro Cash Jargon",
- "translation": "Euro Cash Jargon",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Both on this website and in other euro-cash-related forums there are many terms you will come across that you may not immediately understand. This page will hopefully get you up to speed with the most important and frequently-used terminology.",
- "message": "Both on this website and in other euro-cash-related forums there are many terms you will come across that you may not immediately understand. This page will hopefully get you up to speed with the most important and frequently-used terminology.",
- "translation": "Both on this website and in other euro-cash-related forums there are many terms you will come across that you may not immediately understand. This page will hopefully get you up to speed with the most important and frequently-used terminology.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "All terms defined below can be used as clickable links which highlight the selected term. It is recommended to use these links when sharing this page with others, so that the relevant terms are highlighted.",
- "message": "All terms defined below can be used as clickable links which highlight the selected term. It is recommended to use these links when sharing this page with others, so that the relevant terms are highlighted.",
- "translation": "All terms defined below can be used as clickable links which highlight the selected term. It is recommended to use these links when sharing this page with others, so that the relevant terms are highlighted.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "General Terms",
- "message": "General Terms",
- "translation": "General Terms",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "AU coins are coins that are in extremely good condition as a result of limited use in circulation. Unlike the term ‘UNC’, this term is a description of the coins quality, not its usage. AU coins often appear to retain most of their original luster as well as possessing little-to-no scratches or other forms of post-mint damage (PMD).",
- "message": "AU coins are coins that are in extremely good condition as a result of limited use in circulation. Unlike the term ‘UNC’, this term is a description of the coins quality, not its usage. AU coins often appear to retain most of their original luster as well as possessing little-to-no scratches or other forms of post-mint damage (PMD).",
- "translation": "AU coins are coins that are in extremely good condition as a result of limited use in circulation. Unlike the term ‘UNC’, this term is a description of the coins quality, not its usage. AU coins often appear to retain most of their original luster as well as possessing little-to-no scratches or other forms of post-mint damage (PMD).",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "BU is a general term to refer to coins from coincards and -sets. These are different from UNC coins in that they are typically handled with more care during the minting process and are struck with higher-quality dies than the coins minted for coin rolls resulting in a higher-quality end product. You may also see these coins referred to by the French term ‘fleur de coin’.",
- "message": "BU is a general term to refer to coins from coincards and -sets. These are different from UNC coins in that they are typically handled with more care during the minting process and are struck with higher-quality dies than the coins minted for coin rolls resulting in a higher-quality end product. You may also see these coins referred to by the French term ‘fleur de coin’.",
- "translation": "BU is a general term to refer to coins from coincards and -sets. These are different from UNC coins in that they are typically handled with more care during the minting process and are struck with higher-quality dies than the coins minted for coin rolls resulting in a higher-quality end product. You may also see these coins referred to by the French term ‘fleur de coin’.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "NIFC coins are coins minted without the intention of being put into general circulation. These coins are typically minted with the purpose of being put into coincards or coin-sets to be sold to collectors. Occasionally they are also handed out to collectors for face value at banks.",
- "message": "NIFC coins are coins minted without the intention of being put into general circulation. These coins are typically minted with the purpose of being put into coincards or coin-sets to be sold to collectors. Occasionally they are also handed out to collectors for face value at banks.",
- "translation": "NIFC coins are coins minted without the intention of being put into general circulation. These coins are typically minted with the purpose of being put into coincards or coin-sets to be sold to collectors. Occasionally they are also handed out to collectors for face value at banks.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "While uncommon, NIFC coins are occasionally found in circulation. This can happen for a variety of reasons such as someone depositing their coin collection (known as a ‘collection dump’), or a collector’s child spending their rare coins on an ice cream. Some coin mints have also been known to put NIFC coins that have gone unsold for multiple years into circulation.",
- "message": "While uncommon, NIFC coins are occasionally found in circulation. This can happen for a variety of reasons such as someone depositing their coin collection (known as a ‘collection dump’), or a collector’s child spending their rare coins on an ice cream. Some coin mints have also been known to put NIFC coins that have gone unsold for multiple years into circulation.",
- "translation": "While uncommon, NIFC coins are occasionally found in circulation. This can happen for a variety of reasons such as someone depositing their coin collection (known as a ‘collection dump’), or a collector’s child spending their rare coins on an ice cream. Some coin mints have also been known to put NIFC coins that have gone unsold for multiple years into circulation.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Post-mint damage is any damage that a coin has sustained outside of the minting process, such as through being dropped on the ground, hit against a table, etc.",
- "message": "Post-mint damage is any damage that a coin has sustained outside of the minting process, such as through being dropped on the ground, hit against a table, etc.",
- "translation": "Post-mint damage is any damage that a coin has sustained outside of the minting process, such as through being dropped on the ground, hit against a table, etc.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Uncirculated coins are coins that have never been used in a monetary exchange. The term ‘UNC’ is often mistakenly used to refer to coins in very good condition, but this is incorrect. A coin in poor condition that has never been circulated is still considered an ‘UNC’ coin.",
- "message": "Uncirculated coins are coins that have never been used in a monetary exchange. The term ‘UNC’ is often mistakenly used to refer to coins in very good condition, but this is incorrect. A coin in poor condition that has never been circulated is still considered an ‘UNC’ coin.",
- "translation": "Uncirculated coins are coins that have never been used in a monetary exchange. The term ‘UNC’ is often mistakenly used to refer to coins in very good condition, but this is incorrect. A coin in poor condition that has never been circulated is still considered an ‘UNC’ coin.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Collector-Specific Terms",
- "message": "Collector-Specific Terms",
- "translation": "Collector-Specific Terms",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Coin roll hunting is a general term for the activity of searching through coin rolls and -bags to find coins for a collection. Coin rolls and bags are often obtained at banks or coin roll machines.",
- "message": "Coin roll hunting is a general term for the activity of searching through coin rolls and -bags to find coins for a collection. Coin rolls and bags are often obtained at banks or coin roll machines.",
- "translation": "Coin roll hunting is a general term for the activity of searching through coin rolls and -bags to find coins for a collection. Coin rolls and bags are often obtained at banks or coin roll machines.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Select Your Language",
- "message": "Select Your Language",
- "translation": "Select Your Language",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Select your preferred language to use on the site.",
- "message": "Select your preferred language to use on the site.",
- "translation": "Select your preferred language to use on the site.",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Eurozone Languages",
- "message": "Eurozone Languages",
- "translation": "Eurozone Languages",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- },
- {
- "id": "Other Languages",
- "message": "Other Languages",
- "translation": "Other Languages",
- "translatorComment": "Copied from source.",
- "fuzzy": true
- }
- ]
-} \ No newline at end of file
diff --git a/src/rosetta/nl/messages.gotext.json b/src/rosetta/nl/messages.gotext.json
deleted file mode 100644
index 4ce6565..0000000
--- a/src/rosetta/nl/messages.gotext.json
+++ /dev/null
@@ -1,1310 +0,0 @@
-{
- "language": "nl",
- "messages": [
- {
- "id": "Andorra",
- "message": "Andorra",
- "translation": ""
- },
- {
- "id": "Austria",
- "message": "Austria",
- "translation": ""
- },
- {
- "id": "Belgium",
- "message": "Belgium",
- "translation": ""
- },
- {
- "id": "Cyprus",
- "message": "Cyprus",
- "translation": ""
- },
- {
- "id": "Germany",
- "message": "Germany",
- "translation": ""
- },
- {
- "id": "Estonia",
- "message": "Estonia",
- "translation": ""
- },
- {
- "id": "Spain",
- "message": "Spain",
- "translation": ""
- },
- {
- "id": "Finland",
- "message": "Finland",
- "translation": ""
- },
- {
- "id": "France",
- "message": "France",
- "translation": ""
- },
- {
- "id": "Greece",
- "message": "Greece",
- "translation": ""
- },
- {
- "id": "Croatia",
- "message": "Croatia",
- "translation": ""
- },
- {
- "id": "Ireland",
- "message": "Ireland",
- "translation": ""
- },
- {
- "id": "Italy",
- "message": "Italy",
- "translation": ""
- },
- {
- "id": "Lithuania",
- "message": "Lithuania",
- "translation": ""
- },
- {
- "id": "Luxembourg",
- "message": "Luxembourg",
- "translation": ""
- },
- {
- "id": "Latvia",
- "message": "Latvia",
- "translation": ""
- },
- {
- "id": "Monaco",
- "message": "Monaco",
- "translation": ""
- },
- {
- "id": "Malta",
- "message": "Malta",
- "translation": ""
- },
- {
- "id": "Netherlands",
- "message": "Netherlands",
- "translation": "Nederland"
- },
- {
- "id": "Portugal",
- "message": "Portugal",
- "translation": ""
- },
- {
- "id": "Slovenia",
- "message": "Slovenia",
- "translation": ""
- },
- {
- "id": "Slovakia",
- "message": "Slovakia",
- "translation": ""
- },
- {
- "id": "San Marino",
- "message": "San Marino",
- "translation": ""
- },
- {
- "id": "Vatican City",
- "message": "Vatican City",
- "translation": ""
- },
- {
- "id": "Page Not Found",
- "message": "Page Not Found",
- "translation": ""
- },
- {
- "id": "The page you were looking for does not exist. If you believe this is a mistake then don’t hesitate to contact @onetruemangoman on Discord or email us at %s.",
- "message": "The page you were looking for does not exist. If you believe this is a mistake then don’t hesitate to contact @onetruemangoman on Discord or email us at %s.",
- "translation": ""
- },
- {
- "id": "Euro Cash",
- "message": "Euro Cash",
- "translation": ""
- },
- {
- "id": "Found a mistake or want to contribute missing information?",
- "message": "Found a mistake or want to contribute missing information?",
- "translation": ""
- },
- {
- "id": "Feel free to contact us!",
- "message": "Feel free to contact us!",
- "translation": ""
- },
- {
- "id": "If you’re seeing this page, it means that something went wrong on our end that we need to fix. Our team has been notified of this error, and we apologise for the inconvenience.",
- "message": "If you’re seeing this page, it means that something went wrong on our end that we need to fix. Our team has been notified of this error, and we apologise for the inconvenience.",
- "translation": ""
- },
- {
- "id": "If this issue persists, don’t hesitate to contact @onetruemangoman on Discord or to email us at %s.",
- "message": "If this issue persists, don’t hesitate to contact @onetruemangoman on Discord or to email us at %s.",
- "translation": ""
- },
- {
- "id": "Home",
- "message": "Home",
- "translation": ""
- },
- {
- "id": "News",
- "message": "News",
- "translation": ""
- },
- {
- "id": "Coin Collecting",
- "message": "Coin Collecting",
- "translation": ""
- },
- {
- "id": "Coins",
- "message": "Coins",
- "translation": ""
- },
- {
- "id": "Banknotes",
- "message": "Banknotes",
- "translation": ""
- },
- {
- "id": "Jargon",
- "message": "Jargon",
- "translation": ""
- },
- {
- "id": "Discord",
- "message": "Discord",
- "translation": ""
- },
- {
- "id": "About",
- "message": "About",
- "translation": ""
- },
- {
- "id": "Language",
- "message": "Language",
- "translation": ""
- },
- {
- "id": "About Us",
- "message": "About Us",
- "translation": ""
- },
- {
- "id": "Open Source",
- "message": "Open Source",
- "translation": ""
- },
- {
- "id": "This website is an open project, and a collaboration between developers, translators, and researchers. All source code, data, images, and more for the website are open source and can be found %shere%s. This site is licensed under the BSD 0-Clause license giving you the full freedom to do whatever you would like with anyof the content on this site.",
- "message": "This website is an open project, and a collaboration between developers, translators, and researchers. All source code, data, images, and more for the website are open source and can be found %shere%s. This site is licensed under the BSD 0-Clause license giving you the full freedom to do whatever you would like with anyof the content on this site.",
- "translation": ""
- },
- {
- "id": "Contact Us",
- "message": "Contact Us",
- "translation": ""
- },
- {
- "id": "While we try to stay as up-to-date as possible and to fact check our information, it is always possible that we get something wrong, lack a translation, or are missing some piece of data you may have. In such a case don’t hesitate to contact us; we’ll try to get the site updated or fixed as soon as possible. You are always free to contribute via a git patch if you are more technically included, but if not you can always send an email to %s or contact ‘@onetruemangoman’ on Discord.",
- "message": "While we try to stay as up-to-date as possible and to fact check our information, it is always possible that we get something wrong, lack a translation, or are missing some piece of data you may have. In such a case don’t hesitate to contact us; we’ll try to get the site updated or fixed as soon as possible. You are always free to contribute via a git patch if you are more technically included, but if not you can always send an email to %s or contact ‘@onetruemangoman’ on Discord.",
- "translation": ""
- },
- {
- "id": "Special Thanks",
- "message": "Special Thanks",
- "translation": ""
- },
- {
- "id": "Development",
- "message": "Development",
- "translation": ""
- },
- {
- "id": "Research",
- "message": "Research",
- "translation": ""
- },
- {
- "id": "Translations",
- "message": "Translations",
- "translation": ""
- },
- {
- "id": "British- \u0026 American English",
- "message": "British- \u0026 American English",
- "translation": ""
- },
- {
- "id": "Icelandic",
- "message": "Icelandic",
- "translation": ""
- },
- {
- "id": "Andorran Euro Coin Designs",
- "message": "Andorran Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "On March of 2013 Andorra held a public design competition for all denominations except for the €2 denomination which the government pre-decided would bear the coat of arms of Andorra. Each set of denominations had a theme that participants had to center their designs around. These themes were:",
- "message": "On March of 2013 Andorra held a public design competition for all denominations except for the €2 denomination which the government pre-decided would bear the coat of arms of Andorra. Each set of denominations had a theme that participants had to center their designs around. These themes were:",
- "translation": ""
- },
- {
- "id": "%s, %s, and %s",
- "message": "%s, %s, and %s",
- "translation": ""
- },
- {
- "id": "Andorran landscapes, nature, fauna, and flora",
- "message": "Andorran landscapes, nature, fauna, and flora",
- "translation": ""
- },
- {
- "id": "Andorra’s Romanesque art",
- "message": "Andorra’s Romanesque art",
- "translation": ""
- },
- {
- "id": "Casa de la Vall",
- "message": "Casa de la Vall",
- "translation": ""
- },
- {
- "id": "The results of the design contest with a few modifications are what became the coins that entered circulation in 2014. While each set of denominations has its own design, all four designs prominently feature the country name ‘ANDORRA’ along the outer portion of the design with the year of issue written underneath.",
- "message": "The results of the design contest with a few modifications are what became the coins that entered circulation in 2014. While each set of denominations has its own design, all four designs prominently feature the country name ‘ANDORRA’ along the outer portion of the design with the year of issue written underneath.",
- "translation": ""
- },
- {
- "id": "The Andorran 1-, 2-, and 5 euro cent coins all feature the same design of a Pyrenean chamois in the center of the coin with a golden eagle flying above. Both animals are native to Andorra as well as the surrounding regions of France and Spain.",
- "message": "The Andorran 1-, 2-, and 5 euro cent coins all feature the same design of a Pyrenean chamois in the center of the coin with a golden eagle flying above. Both animals are native to Andorra as well as the surrounding regions of France and Spain.",
- "translation": ""
- },
- {
- "id": "The Andorran golden cents feature the Romanesque church of Santa Coloma. The church is the oldest in Andorra, dating back to the 9th century and is a UNESCO World Heritage site. Originally these coins were planned to depict an image of Christ, but that plan failed to go through after objections from the European Commission on grounds of religious neutrality on August 2013.",
- "message": "The Andorran golden cents feature the Romanesque church of Santa Coloma. The church is the oldest in Andorra, dating back to the 9th century and is a UNESCO World Heritage site. Originally these coins were planned to depict an image of Christ, but that plan failed to go through after objections from the European Commission on grounds of religious neutrality on August 2013.",
- "translation": ""
- },
- {
- "id": "The 1 Euro coin features the Case de la Vall: the former headquarters of the General Council of Andorra. It was constructed in 1580 as a manor and tower defense by the Busquets family.",
- "message": "The 1 Euro coin features the Case de la Vall: the former headquarters of the General Council of Andorra. It was constructed in 1580 as a manor and tower defense by the Busquets family.",
- "translation": ""
- },
- {
- "id": "Finally, the 2 Euro coin features the coat of arms of Andorra. The Andorran coat of arms is a grid of 4 other coats of arms which from top-to-bottom, left-to-right are:",
- "message": "Finally, the 2 Euro coin features the coat of arms of Andorra. The Andorran coat of arms is a grid of 4 other coats of arms which from top-to-bottom, left-to-right are:",
- "translation": ""
- },
- {
- "id": "The bottom of the coat of arms has the motto ‘%sVIRTVS VNITA FORTIOR%s’ (‘UNITED VIRTUE IS STRONGER’).",
- "message": "The bottom of the coat of arms has the motto ‘%sVIRTVS VNITA FORTIOR%s’ (‘UNITED VIRTUE IS STRONGER’).",
- "translation": ""
- },
- {
- "id": "Austrian Euro Coin Designs",
- "message": "Austrian Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "The Austrian euro coins can be grouped into three different themes. The bronze coins feature Austrian flowers, the gold coins feature Austrian architecture, and the bimetalic coins feature famous Austrian people. All coins also feature an Austrian flag as well as the coins denomination. These coins together with the %sGreek euro coins%s are the only coins that feature the denomination on both the common- and national-sides of the coin.",
- "message": "The Austrian euro coins can be grouped into three different themes. The bronze coins feature Austrian flowers, the gold coins feature Austrian architecture, and the bimetalic coins feature famous Austrian people. All coins also feature an Austrian flag as well as the coins denomination. These coins together with the %sGreek euro coins%s are the only coins that feature the denomination on both the common- and national-sides of the coin.",
- "translation": ""
- },
- {
- "id": "The bronze coins feature the Alpine gentian, -edelweiss, and -primrose respectively, and were chosen to symbolize the role that Austria played in the development of EU environmental policy.",
- "message": "The bronze coins feature the Alpine gentian, -edelweiss, and -primrose respectively, and were chosen to symbolize the role that Austria played in the development of EU environmental policy.",
- "translation": ""
- },
- {
- "id": "The €0.10 coin features St. Stephen’s Cathedral. It symbolises the Viennese Gothic architectural style dating to around the year 1160. The €0.20 coin features Belvedere Palace. This is an example of Baroque architecture and symbolises the national freedom and sovereignty of Austria. The final gold coin — the €0.50 coin — features the Secession Building: an exhibition hall in the Art Nouveau style.",
- "message": "The €0.10 coin features St. Stephen’s Cathedral. It symbolises the Viennese Gothic architectural style dating to around the year 1160. The €0.20 coin features Belvedere Palace. This is an example of Baroque architecture and symbolises the national freedom and sovereignty of Austria. The final gold coin — the €0.50 coin — features the Secession Building: an exhibition hall in the Art Nouveau style.",
- "translation": ""
- },
- {
- "id": "The two bimetallic coins feature the busts of the musical composer Wolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist and Nobel Peace Prize winner Bertha von Suttner.",
- "message": "The two bimetallic coins feature the busts of the musical composer Wolfgang Amadeus Mozarts on the €1 coin, and the Austrian pacifist and Nobel Peace Prize winner Bertha von Suttner.",
- "translation": ""
- },
- {
- "id": "Belgian Euro Coin Designs",
- "message": "Belgian Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "Since 1999 Belgium has released three series of euro coins, which each series having a single design repeated on all denominations. Starting in 1999 the Belgian euro coins featured the portrait of King Albert II with the %sroyal monogram%s in the outer ring of the coins.",
- "message": "Since 1999 Belgium has released three series of euro coins, which each series having a single design repeated on all denominations. Starting in 1999 the Belgian euro coins featured the portrait of King Albert II with the %sroyal monogram%s in the outer ring of the coins.",
- "translation": ""
- },
- {
- "id": "In 2008 a second series of coins was released featuring a slightly-modified design in which the royal monogram was moved to the inner portion of the coin along with the year of mintage in order to comply with the European Commission’s guidelines. The country code ‘BE’ was also added to the design underneath the royal monogram.",
- "message": "In 2008 a second series of coins was released featuring a slightly-modified design in which the royal monogram was moved to the inner portion of the coin along with the year of mintage in order to comply with the European Commission’s guidelines. The country code ‘BE’ was also added to the design underneath the royal monogram.",
- "translation": ""
- },
- {
- "id": "After his accession to the throne Belgium began a third series of coins in 2014 featuring the portrait of King Philippe. As is customary with coins bearing the portraits of monarchs, the direction in which the portrait faces was flipped to face right instead of left.",
- "message": "After his accession to the throne Belgium began a third series of coins in 2014 featuring the portrait of King Philippe. As is customary with coins bearing the portraits of monarchs, the direction in which the portrait faces was flipped to face right instead of left.",
- "translation": ""
- },
- {
- "id": "Croatian Euro Coin Designs",
- "message": "Croatian Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "The Croatian euro coins feature four different themes, with each design featuring the Croatian checkerboard and the countries name in Croatian (‘%sHRVATSKA%s’). All designs were selected after voting in a public design competition.",
- "message": "The Croatian euro coins feature four different themes, with each design featuring the Croatian checkerboard and the countries name in Croatian (‘%sHRVATSKA%s’). All designs were selected after voting in a public design competition.",
- "translation": ""
- },
- {
- "id": "The 1-, 2-, and 5 euro cent coins were designed by Maja Škripelj and feature a motif of the letters ‘HR’ in the %sGlagolitic script%s — an old Slavic script that saw use in Croatia up until the 19th century — with ‘HR’ representing Croatia’s country code.",
- "message": "The 1-, 2-, and 5 euro cent coins were designed by Maja Škripelj and feature a motif of the letters ‘HR’ in the %sGlagolitic script%s — an old Slavic script that saw use in Croatia up until the 19th century — with ‘HR’ representing Croatia’s country code.",
- "translation": ""
- },
- {
- "id": "The 10-, 20-, and 50 euro cent coins were designed by Ivan Domagoj Račić and feature the portrait of the inventor and engineer %sNikola Tesla%s. The design of these coins caused controversy when they were first announced with the National Bank of Serbia claiming that it would be an appropriation of the cultural and scientific heritage of the Serbian people to feature the portrait of someone who ‘declared himself to be Serbian by origin’.",
- "message": "The 10-, 20-, and 50 euro cent coins were designed by Ivan Domagoj Račić and feature the portrait of the inventor and engineer %sNikola Tesla%s. The design of these coins caused controversy when they were first announced with the National Bank of Serbia claiming that it would be an appropriation of the cultural and scientific heritage of the Serbian people to feature the portrait of someone who ‘declared himself to be Serbian by origin’.",
- "translation": ""
- },
- {
- "id": "The 1 euro coin was designed by Jagor Šunde, David Čemeljić and Fran Zekan and features a marten. The marten is the semi-official national animal of Croatia and the Kuna — their pre-Euro currency — was named after the marten (‘%skuna zlatica%s’ in Croatian).",
- "message": "The 1 euro coin was designed by Jagor Šunde, David Čemeljić and Fran Zekan and features a marten. The marten is the semi-official national animal of Croatia and the Kuna — their pre-Euro currency — was named after the marten (‘%skuna zlatica%s’ in Croatian).",
- "translation": ""
- },
- {
- "id": "The 2 euro coin was designed by Ivan Šivak and features the map of Croatia. The coin also has an edge-inscription that reads ‘%sO LIJEPA O DRAGA O SLATKA SLOBODO%s’ (‘OH BEAUTIFUL, OH DEAR, OH SWEET FREEDOM’) which is a line from the play %sDubravka%s by Ivan Gundulić.",
- "message": "The 2 euro coin was designed by Ivan Šivak and features the map of Croatia. The coin also has an edge-inscription that reads ‘%sO LIJEPA O DRAGA O SLATKA SLOBODO%s’ (‘OH BEAUTIFUL, OH DEAR, OH SWEET FREEDOM’) which is a line from the play %sDubravka%s by Ivan Gundulić.",
- "translation": ""
- },
- {
- "id": "Dutch Euro Coin Designs",
- "message": "Dutch Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "From the years 1999–2013 all Dutch euro coins featured the portrait of Queen Beatrix of the Netherlands. After her abdication from the throne in 2013 the designs of all denominations were changed to feature the portrait of the new King Willem-Alexander. After her abdication the direction in which the monarchs portrait faced was flipped; a tradition dating back to the earliest coins of the Kingdom of the Netherlands.",
- "message": "From the years 1999–2013 all Dutch euro coins featured the portrait of Queen Beatrix of the Netherlands. After her abdication from the throne in 2013 the designs of all denominations were changed to feature the portrait of the new King Willem-Alexander. After her abdication the direction in which the monarchs portrait faced was flipped; a tradition dating back to the earliest coins of the Kingdom of the Netherlands.",
- "translation": ""
- },
- {
- "id": "Coins featuring both monarchs contain text reading ‘%sBEATRIX KONINGIN DER NEDERLANDEN%s’ (‘BEATRIX QUEEN OF THE NETHERLANDS’) and ‘%sWillem-Alexander Koning der Nederlanden%s’ (‘Willem-Alexander King of the Netherlands’) respectively. The €2 coins also feature an edge-inscription reading ‘%sGOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆%s’ (‘GOD ⋆ IS ⋆ WITH ⋆ US ⋆’).",
- "message": "Coins featuring both monarchs contain text reading ‘%sBEATRIX KONINGIN DER NEDERLANDEN%s’ (‘BEATRIX QUEEN OF THE NETHERLANDS’) and ‘%sWillem-Alexander Koning der Nederlanden%s’ (‘Willem-Alexander King of the Netherlands’) respectively. The €2 coins also feature an edge-inscription reading ‘%sGOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆%s’ (‘GOD ⋆ IS ⋆ WITH ⋆ US ⋆’).",
- "translation": ""
- },
- {
- "id": "The €1 and €2 coins featuring King Willem-Alexander were minted with a much lower %srelief%s than most euro coins of the same denomination. As a result it is not uncommon for these coins to appear worn after little use in circulation.",
- "message": "The €1 and €2 coins featuring King Willem-Alexander were minted with a much lower %srelief%s than most euro coins of the same denomination. As a result it is not uncommon for these coins to appear worn after little use in circulation.",
- "translation": ""
- },
- {
- "id": "Euro Coin Designs",
- "message": "Euro Coin Designs",
- "translation": ""
- },
- {
- "id": "Here you’ll be able to view all the coin designs for each country in the Eurozone. This section of the site doesn’t include minor varieties such as different mintmarks or errors; those are on the %svarieties%s page.",
- "message": "Here you’ll be able to view all the coin designs for each country in the Eurozone. This section of the site doesn’t include minor varieties such as different mintmarks or errors; those are on the %svarieties%s page.",
- "translation": ""
- },
- {
- "id": "Euro Coin Mintages",
- "message": "Euro Coin Mintages",
- "translation": ""
- },
- {
- "id": "Here you’ll be able to view all the known mintages for all coins. You’ll also be able to filter on country, denomination, etc. If you have any mintage data that’s missing from our site, feel free to contact us.",
- "message": "Here you’ll be able to view all the known mintages for all coins. You’ll also be able to filter on country, denomination, etc. If you have any mintage data that’s missing from our site, feel free to contact us.",
- "translation": ""
- },
- {
- "id": "Additional Notes",
- "message": "Additional Notes",
- "translation": ""
- },
- {
- "id": "Most coins from the years 2003–2016 are listed as NIFC coins while other popular sources such as Numista claim they were minted for circulation. For more information on why others are wrong, %sclick here%s.",
- "message": "Most coins from the years 2003–2016 are listed as NIFC coins while other popular sources such as Numista claim they were minted for circulation. For more information on why others are wrong, %sclick here%s.",
- "translation": ""
- },
- {
- "id": "In 2003 Numista calculated a total of %d coins issued for coin sets per denomination. Our own calculations found only %d. Numista also forgot to include the many hundred thousand coins from the coin roll sets that were produced.",
- "message": "In 2003 Numista calculated a total of %d coins issued for coin sets per denomination. Our own calculations found only %d. Numista also forgot to include the many hundred thousand coins from the coin roll sets that were produced.",
- "translation": ""
- },
- {
- "id": "Country",
- "message": "Country",
- "translation": ""
- },
- {
- "id": "Filter",
- "message": "Filter",
- "translation": ""
- },
- {
- "id": "Standard Issue Coins",
- "message": "Standard Issue Coins",
- "translation": ""
- },
- {
- "id": "Year",
- "message": "Year",
- "translation": ""
- },
- {
- "id": "Unknown",
- "message": "Unknown",
- "translation": ""
- },
- {
- "id": "Commemorative Coins",
- "message": "Commemorative Coins",
- "translation": ""
- },
- {
- "id": "Commemorated Issue",
- "message": "Commemorated Issue",
- "translation": ""
- },
- {
- "id": "Mintage",
- "message": "Mintage",
- "translation": ""
- },
- {
- "id": "Euro Coins",
- "message": "Euro Coins",
- "translation": ""
- },
- {
- "id": "On this section of the site you can find everything there is to know about the coins of the Eurozone.",
- "message": "On this section of the site you can find everything there is to know about the coins of the Eurozone.",
- "translation": ""
- },
- {
- "id": "Designs",
- "message": "Designs",
- "translation": ""
- },
- {
- "id": "View the 600+ different Euro-coin designs!",
- "message": "View the 600+ different Euro-coin designs!",
- "translation": ""
- },
- {
- "id": "Mintages",
- "message": "Mintages",
- "translation": ""
- },
- {
- "id": "View the mintage figures of all the Euro coins!",
- "message": "View the mintage figures of all the Euro coins!",
- "translation": ""
- },
- {
- "id": "Varieties",
- "message": "Varieties",
- "translation": ""
- },
- {
- "id": "View all the known Euro varieties!",
- "message": "View all the known Euro varieties!",
- "translation": ""
- },
- {
- "id": "Coin Roll Hunting",
- "message": "Coin Roll Hunting",
- "translation": ""
- },
- {
- "id": "What is Coin Roll Hunting?",
- "message": "What is Coin Roll Hunting?",
- "translation": ""
- },
- {
- "id": "Coin roll hunting is a popular method of coin collecting in which you withdrawal cash from your bank in the form of coins which you then search through to find new additions to your collection. Once you’ve searched through all your coins, you will typically deposit your left over coins at the bank and withdrawal new coins.",
- "message": "Coin roll hunting is a popular method of coin collecting in which you withdrawal cash from your bank in the form of coins which you then search through to find new additions to your collection. Once you’ve searched through all your coins, you will typically deposit your left over coins at the bank and withdrawal new coins.",
- "translation": ""
- },
- {
- "id": "This type of coin collecting is often called ‘Coin Roll Hunting’ due to the fact that coins are often withdrawn in paper-wrapped rolls. You may however find that your coins come in plastic bags instead (common in countries like Ireland).",
- "message": "This type of coin collecting is often called ‘Coin Roll Hunting’ due to the fact that coins are often withdrawn in paper-wrapped rolls. You may however find that your coins come in plastic bags instead (common in countries like Ireland).",
- "translation": ""
- },
- {
- "id": "Depending on your bank and branch, the process of obtaining coins may differ. Some banks require you speak to a teller, others have coin machines. Some banks may also require that you are a customer or even to have a business account. If you aren’t sure about if you can get coins we suggest you contact your bank, although further down this page we also have information about the withdrawal of coins in various countries and major banks.",
- "message": "Depending on your bank and branch, the process of obtaining coins may differ. Some banks require you speak to a teller, others have coin machines. Some banks may also require that you are a customer or even to have a business account. If you aren’t sure about if you can get coins we suggest you contact your bank, although further down this page we also have information about the withdrawal of coins in various countries and major banks.",
- "translation": ""
- },
- {
- "id": "Getting Started",
- "message": "Getting Started",
- "translation": ""
- },
- {
- "id": "To get started with coin roll hunting you should first contact your bank or check their website to find details regarding coin withdrawal. You will then typically need to go to the bank to pick up your coins. Depending on your bank you may be able to withdrawal coins from a machine, although often you can pick up your coins from the banks tellers. You will also often need to pay a small fee for each roll, although some banks don’t charge fees.",
- "message": "To get started with coin roll hunting you should first contact your bank or check their website to find details regarding coin withdrawal. You will then typically need to go to the bank to pick up your coins. Depending on your bank you may be able to withdrawal coins from a machine, although often you can pick up your coins from the banks tellers. You will also often need to pay a small fee for each roll, although some banks don’t charge fees.",
- "translation": ""
- },
- {
- "id": "It is also important to find details regarding the deposit of coins. Depositing coins often also requires the payment of a fee — one which is typically more expensive than the withdrawal fees. If depositing your coins is too expensive you can always exchange your left over coins at shops for banknotes. It is often cheaper (or even free) to deposit banknotes.",
- "message": "It is also important to find details regarding the deposit of coins. Depositing coins often also requires the payment of a fee — one which is typically more expensive than the withdrawal fees. If depositing your coins is too expensive you can always exchange your left over coins at shops for banknotes. It is often cheaper (or even free) to deposit banknotes.",
- "translation": ""
- },
- {
- "id": "In some countries such as Austria it is even common to be able to withdrawal new coins from your account by exchanging the left over coins you already have.",
- "message": "In some countries such as Austria it is even common to be able to withdrawal new coins from your account by exchanging the left over coins you already have.",
- "translation": ""
- },
- {
- "id": "Country-Specific Details",
- "message": "Country-Specific Details",
- "translation": ""
- },
- {
- "id": "Below you can find all sorts of country-specific information we have regarding obtaining coin rolls. We lack a lot of information for many of the countries, so if you have any additional information such as your banks fees, the availability of coin roll machines, etc. feel free to contact us! You can find our contact information %shere%s.",
- "message": "Below you can find all sorts of country-specific information we have regarding obtaining coin rolls. We lack a lot of information for many of the countries, so if you have any additional information such as your banks fees, the availability of coin roll machines, etc. feel free to contact us! You can find our contact information %shere%s.",
- "translation": ""
- },
- {
- "id": "Be aware of the face that the information below is prone to being outdated, and as such may not reflect the current reality.",
- "message": "Be aware of the face that the information below is prone to being outdated, and as such may not reflect the current reality.",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained from Andbank, Crèdit Andorrà, and MoraBanc. All three of these banks require that you are a customer to get rolls. There have however been reports of individuals managing to get rolls without any fees and without being a customer by simply asking kindly at the bank.",
- "message": "Coin rolls can be obtained from Andbank, Crèdit Andorrà, and MoraBanc. All three of these banks require that you are a customer to get rolls. There have however been reports of individuals managing to get rolls without any fees and without being a customer by simply asking kindly at the bank.",
- "translation": ""
- },
- {
- "id": "The Austrian National Bank does not distribute circulated rolls but sells rolls of commemorative coins at face value on release as well as uncirculated rolls for all denominations.",
- "message": "The Austrian National Bank does not distribute circulated rolls but sells rolls of commemorative coins at face value on release as well as uncirculated rolls for all denominations.",
- "translation": ""
- },
- {
- "id": "There is a fee of %s per roll. Rolls can be purchased with cash at machines. These machines are available to everyone, but not in all branches. Look for the ‘Münzrollengeber’ filter option %shere%s.",
- "message": "There is a fee of %s per roll. Rolls can be purchased with cash at machines. These machines are available to everyone, but not in all branches. Look for the ‘Münzrollengeber’ filter option %shere%s.",
- "translation": ""
- },
- {
- "id": "There is a fee of %s per roll. You must be a customer to use machines to get rolls. Rolls have no fees when purchased at counters, but counters redirect you to machines if they work; counters accept cash. You must present an Erste Bank card to buy rolls from machines, but you can pay with cash.",
- "message": "There is a fee of %s per roll. You must be a customer to use machines to get rolls. Rolls have no fees when purchased at counters, but counters redirect you to machines if they work; counters accept cash. You must present an Erste Bank card to buy rolls from machines, but you can pay with cash.",
- "translation": ""
- },
- {
- "id": "Depositing coins is free for up to %s a day, at which point you pay 1%% for any additional deposited coins. You must also be a customer. Depositing coins is free for all Erste Bank customers at Dornbirner Sparkasse with no limit.",
- "message": "Depositing coins is free for up to %s a day, at which point you pay 1%% for any additional deposited coins. You must also be a customer. Depositing coins is free for all Erste Bank customers at Dornbirner Sparkasse with no limit.",
- "translation": ""
- },
- {
- "id": "There is a fee of %s per roll if you aren’t a customer, and %s otherwise. Coin deposits are free if you’re a customer.",
- "message": "There is a fee of %s per roll if you aren’t a customer, and %s otherwise. Coin deposits are free if you’re a customer.",
- "translation": ""
- },
- {
- "id": "Reportedly fee-less with no need of being a customer, but this is unconfirmed.",
- "message": "Reportedly fee-less with no need of being a customer, but this is unconfirmed.",
- "translation": ""
- },
- {
- "id": "There is a %s fee with no limit on the number of rolls.",
- "message": "There is a %s fee with no limit on the number of rolls.",
- "translation": ""
- },
- {
- "id": "Belgian Central Bank",
- "message": "Belgian Central Bank",
- "translation": ""
- },
- {
- "id": "You can visit the Belgian Central Bank in Brussels as an EU citizen. You can order coin rolls for no fee up to %s in value. They seem to distribute uncirculated coins (no commemoratives).",
- "message": "You can visit the Belgian Central Bank in Brussels as an EU citizen. You can order coin rolls for no fee up to %s in value. They seem to distribute uncirculated coins (no commemoratives).",
- "translation": ""
- },
- {
- "id": "Free for customers but getting coin rolls is still difficult sometimes. Non-customers cannot get rolls.",
- "message": "Free for customers but getting coin rolls is still difficult sometimes. Non-customers cannot get rolls.",
- "translation": ""
- },
- {
- "id": "Free for customers when you order through their online platform.",
- "message": "Free for customers when you order through their online platform.",
- "translation": ""
- },
- {
- "id": "Bank of Cyprus",
- "message": "Bank of Cyprus",
- "translation": ""
- },
- {
- "id": "At the Bank of Cyprus it is possible to buy bags of coins without being a customer, and without paying any additional fees. Depending on the branch you visit you may have coin roll machine available. Do note that the bags provided by the Bank of Cyprus are around twice as large as usual with %s bags containing 50 coins and the other denomination bags containing 100 coins.",
- "message": "At the Bank of Cyprus it is possible to buy bags of coins without being a customer, and without paying any additional fees. Depending on the branch you visit you may have coin roll machine available. Do note that the bags provided by the Bank of Cyprus are around twice as large as usual with %s bags containing 50 coins and the other denomination bags containing 100 coins.",
- "translation": ""
- },
- {
- "id": "Coin roll availability may vary across banks and branches, as well as the price. You must be a customer to purchase coin rolls unless specified otherwise.",
- "message": "Coin roll availability may vary across banks and branches, as well as the price. You must be a customer to purchase coin rolls unless specified otherwise.",
- "translation": ""
- },
- {
- "id": "German Federal Bank (Deutsche Bundesbank)",
- "message": "German Federal Bank (Deutsche Bundesbank)",
- "translation": ""
- },
- {
- "id": "You can obtain regular- and commemorative coins for face value including 5-, 10-, and 20 euro coins. You do not need to be a customer although depending on your branch you may need to make an appointment. The purchase of coins can only be done with cash.",
- "message": "You can obtain regular- and commemorative coins for face value including 5-, 10-, and 20 euro coins. You do not need to be a customer although depending on your branch you may need to make an appointment. The purchase of coins can only be done with cash.",
- "translation": ""
- },
- {
- "id": "Hand-rolled coin rolls can be obtained with no additional fees.",
- "message": "Hand-rolled coin rolls can be obtained with no additional fees.",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained for a fee of %s–%s per roll. The amount varies per branch.",
- "message": "Coin rolls can be obtained for a fee of %s–%s per roll. The amount varies per branch.",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained for a fee of %s per roll.",
- "message": "Coin rolls can be obtained for a fee of %s per roll.",
- "translation": ""
- },
- {
- "id": "Obtaining coin rolls in Estonia is typically quite difficult, and often expensive. You also often need to make an appointment in advance.",
- "message": "Obtaining coin rolls in Estonia is typically quite difficult, and often expensive. You also often need to make an appointment in advance.",
- "translation": ""
- },
- {
- "id": "Central Bank of Estonia Museum",
- "message": "Central Bank of Estonia Museum",
- "translation": ""
- },
- {
- "id": "You can purchase commemorative coins (even those released years ago) at face value. It is also an interesting museum to visit in general.",
- "message": "You can purchase commemorative coins (even those released years ago) at face value. It is also an interesting museum to visit in general.",
- "translation": ""
- },
- {
- "id": "Coin rolls are free but you must be a customer.",
- "message": "Coin rolls are free but you must be a customer.",
- "translation": ""
- },
- {
- "id": "Bank of Spain",
- "message": "Bank of Spain",
- "translation": ""
- },
- {
- "id": "You can purchase individual coins and commemorative coin rolls (even those of other countries). You can watch %shere%s to see how to do it.",
- "message": "You can purchase individual coins and commemorative coin rolls (even those of other countries). You can watch %shere%s to see how to do it.",
- "translation": ""
- },
- {
- "id": "Coin rolls have a fee of %s for 5 rolls. This seems to vary by region.",
- "message": "Coin rolls have a fee of %s for 5 rolls. This seems to vary by region.",
- "translation": ""
- },
- {
- "id": "Coin rolls have no fees.",
- "message": "Coin rolls have no fees.",
- "translation": ""
- },
- {
- "id": "La Caixa",
- "message": "La Caixa",
- "translation": ""
- },
- {
- "id": "Coin rolls have no fees and can be purchased with cash. You do not need to be a customer, although this needs to be re-verified.",
- "message": "Coin rolls have no fees and can be purchased with cash. You do not need to be a customer, although this needs to be re-verified.",
- "translation": ""
- },
- {
- "id": "Finland has no coin roll machines, but you can find vending machines or coin exchange machines (albeit they are rare).",
- "message": "Finland has no coin roll machines, but you can find vending machines or coin exchange machines (albeit they are rare).",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained with no fees.",
- "message": "Coin rolls can be obtained with no fees.",
- "translation": ""
- },
- {
- "id": "Bank of Finland",
- "message": "Bank of Finland",
- "translation": ""
- },
- {
- "id": "It is probably not possible to obtain coin rolls, but this is not confirmed.",
- "message": "It is probably not possible to obtain coin rolls, but this is not confirmed.",
- "translation": ""
- },
- {
- "id": "Coin roll machines are uncommon, only some banks have them and you need to be a customer. You may also need to order them in advance.",
- "message": "Coin roll machines are uncommon, only some banks have them and you need to be a customer. You may also need to order them in advance.",
- "translation": ""
- },
- {
- "id": "Coin rolls can be obtained with no fee. You must be a customer.",
- "message": "Coin rolls can be obtained with no fee. You must be a customer.",
- "translation": ""
- },
- {
- "id": "and",
- "message": "and",
- "translation": ""
- },
- {
- "id": "Free coin rolls if you are a customer or %s per roll if you are not a customer. There are coin roll machines.",
- "message": "Free coin rolls if you are a customer or %s per roll if you are not a customer. There are coin roll machines.",
- "translation": ""
- },
- {
- "id": "There are coin roll machines but it is not yet known if you need to be a customer or if there are fees.",
- "message": "There are coin roll machines but it is not yet known if you need to be a customer or if there are fees.",
- "translation": ""
- },
- {
- "id": "Bank of Greece (Τράπεζα της Ελλάδος)",
- "message": "Bank of Greece (Τράπεζα της Ελλάδος)",
- "translation": ""
- },
- {
- "id": "Fee-less coin rolls for everyone (you will need to show ID). The latest commemorative coins are also sold for face value.",
- "message": "Fee-less coin rolls for everyone (you will need to show ID). The latest commemorative coins are also sold for face value.",
- "translation": ""
- },
- {
- "id": "Fee-less coin bags for everyone (no ID necessary). Smaller denominations are often not given out, and the coin bags you recieve are very large (there are reports of %s bags containing 250 coins).",
- "message": "Fee-less coin bags for everyone (no ID necessary). Smaller denominations are often not given out, and the coin bags you recieve are very large (there are reports of %s bags containing 250 coins).",
- "translation": ""
- },
- {
- "id": "In general, coin rolls are available at banks with a fee of %s per roll; rolls could potentially have no fee if you only need a few.",
- "message": "In general, coin rolls are available at banks with a fee of %s per roll; rolls could potentially have no fee if you only need a few.",
- "translation": ""
- },
- {
- "id": "There are coin roll machines but it is unknown if you need to be a customer or if there are additional fees.",
- "message": "There are coin roll machines but it is unknown if you need to be a customer or if there are additional fees.",
- "translation": ""
- },
- {
- "id": "Bank of Italy",
- "message": "Bank of Italy",
- "translation": ""
- },
- {
- "id": "Coin rolls are available to everyone.",
- "message": "Coin rolls are available to everyone.",
- "translation": ""
- },
- {
- "id": "Works, but with very high fees (5%% of cost).",
- "message": "Works, but with very high fees (5%% of cost).",
- "translation": ""
- },
- {
- "id": "Fee of %s per roll of 2 euro coins.",
- "message": "Fee of %s per roll of 2 euro coins.",
- "translation": ""
- },
- {
- "id": "As far as we are aware, Lietuvos Bankas only distributes coin rolls to businesses.",
- "message": "As far as we are aware, Lietuvos Bankas only distributes coin rolls to businesses.",
- "translation": ""
- },
- {
- "id": "It may be worth checking out payout machines to exchange banknotes into coins.",
- "message": "It may be worth checking out payout machines to exchange banknotes into coins.",
- "translation": ""
- },
- {
- "id": "Luxembourgish Central Bank (Banque Centrale du Luxembourg)",
- "message": "Luxembourgish Central Bank (Banque Centrale du Luxembourg)",
- "translation": ""
- },
- {
- "id": "We currently have no information regarding regular coins, however their webshop sells commemorative coins (for a high premium, but better than most resellers). Commemorative coins are also available for purchase in-person.",
- "message": "We currently have no information regarding regular coins, however their webshop sells commemorative coins (for a high premium, but better than most resellers). Commemorative coins are also available for purchase in-person.",
- "translation": ""
- },
- {
- "id": "You should be able to get coin rolls with no additional fees.",
- "message": "You should be able to get coin rolls with no additional fees.",
- "translation": ""
- },
- {
- "id": "In general coin rolls are sold with a fee of %s per roll, but we’re lacking a lot of information.",
- "message": "In general coin rolls are sold with a fee of %s per roll, but we’re lacking a lot of information.",
- "translation": ""
- },
- {
- "id": "Bank of Valletta and HSBC Bank Malta",
- "message": "Bank of Valletta and HSBC Bank Malta",
- "translation": ""
- },
- {
- "id": "You can get rolls for a fee of %s per roll. You must order coin rolls through their online platform, and you must be a customer.",
- "message": "You can get rolls for a fee of %s per roll. You must order coin rolls through their online platform, and you must be a customer.",
- "translation": ""
- },
- {
- "id": "Banks in the Netherlands do not carry cash, and as such it’s not possible to obtain rolls from bank tellers. Obtaining coins from the Dutch Central Bank (De Nederlandsche Bank) is also not possible. If you want to obtain coin rolls you need to use a Geldmaat coin roll machine which can be found in specific branches of GAMMA and Karwei. Geldmaat offers a map on their website where you can search for branches with these machines; you can find that map %shere%s.",
- "message": "Banks in the Netherlands do not carry cash, and as such it’s not possible to obtain rolls from bank tellers. Obtaining coins from the Dutch Central Bank (De Nederlandsche Bank) is also not possible. If you want to obtain coin rolls you need to use a Geldmaat coin roll machine which can be found in specific branches of GAMMA and Karwei. Geldmaat offers a map on their website where you can search for branches with these machines; you can find that map %shere%s.",
- "translation": ""
- },
- {
- "id": "In order to be able to use a Geldmaat coin machine, you must be a customer of either ABN AMRO, ING, or Rabobank. You also cannot pay by cash, only card payments are allowed. All three banks charge a withdrawal fee for getting coin rolls, which are detailed in the list below.",
- "message": "In order to be able to use a Geldmaat coin machine, you must be a customer of either ABN AMRO, ING, or Rabobank. You also cannot pay by cash, only card payments are allowed. All three banks charge a withdrawal fee for getting coin rolls, which are detailed in the list below.",
- "translation": ""
- },
- {
- "id": "%s per roll.",
- "message": "%s per roll.",
- "translation": ""
- },
- {
- "id": "Base fee of %s + %s per roll.",
- "message": "Base fee of %s + %s per roll.",
- "translation": ""
- },
- {
- "id": "One- and two-cent coins have been removed from circulation and cannot be obtained.",
- "message": "One- and two-cent coins have been removed from circulation and cannot be obtained.",
- "translation": ""
- },
- {
- "id": "Coin bags are sold with no additional fees to bank customers.",
- "message": "Coin bags are sold with no additional fees to bank customers.",
- "translation": ""
- },
- {
- "id": "Bank of Portugal (Banco de Portugal)",
- "message": "Bank of Portugal (Banco de Portugal)",
- "translation": ""
- },
- {
- "id": "Coin bags are sold with no additional fees to everyone.",
- "message": "Coin bags are sold with no additional fees to everyone.",
- "translation": ""
- },
- {
- "id": "In general there is a %s fee for coin rolls.",
- "message": "In general there is a %s fee for coin rolls.",
- "translation": ""
- },
- {
- "id": "Bank of Slovenia (Banka Slovenije)",
- "message": "Bank of Slovenia (Banka Slovenije)",
- "translation": ""
- },
- {
- "id": "You can purchase commemorative coins for face value, and coin rolls are sold with no fees to everyone.",
- "message": "You can purchase commemorative coins for face value, and coin rolls are sold with no fees to everyone.",
- "translation": ""
- },
- {
- "id": "National Bank of Slovakia (Národná banka Slovenska)",
- "message": "National Bank of Slovakia (Národná banka Slovenska)",
- "translation": ""
- },
- {
- "id": "You may be able to get uncirculated rolls, but this is not yet confirmed.",
- "message": "You may be able to get uncirculated rolls, but this is not yet confirmed.",
- "translation": ""
- },
- {
- "id": "You can get an unlimited number of rolls for a %s fee. You must be a customer of the bank.",
- "message": "You can get an unlimited number of rolls for a %s fee. You must be a customer of the bank.",
- "translation": ""
- },
- {
- "id": "Ask the Pope nicely and he’ll probably give you some Vatican coins for free.",
- "message": "Ask the Pope nicely and he’ll probably give you some Vatican coins for free.",
- "translation": ""
- },
- {
- "id": "We currently have no information regarding coin roll hunting in %s.",
- "message": "We currently have no information regarding coin roll hunting in %s.",
- "translation": ""
- },
- {
- "id": "Coin Storage",
- "message": "Coin Storage",
- "translation": ""
- },
- {
- "id": "There are many different methods of storing your collecting, each with their own benefits and drawbacks. This page will describe the most common methods collectors use to store their coins, as well as the pros and cons of each method.",
- "message": "There are many different methods of storing your collecting, each with their own benefits and drawbacks. This page will describe the most common methods collectors use to store their coins, as well as the pros and cons of each method.",
- "translation": ""
- },
- {
- "id": "Coin Albums",
- "message": "Coin Albums",
- "translation": ""
- },
- {
- "id": "Coin albums are one of the most popular ways of storing coins. In a coin album you will have multiple coin sheets. These sheets are plastic pages with slots that you can put your coin in to keep them protected. When searching for sheets for your album it is very important to ensure that they do not contain any PVC, which will damage your coins. Some albums will come with sheets already included.",
- "message": "Coin albums are one of the most popular ways of storing coins. In a coin album you will have multiple coin sheets. These sheets are plastic pages with slots that you can put your coin in to keep them protected. When searching for sheets for your album it is very important to ensure that they do not contain any PVC, which will damage your coins. Some albums will come with sheets already included.",
- "translation": ""
- },
- {
- "id": "Albums can be an affordable way to store your coins, but higher-end albums can be a bit expensive. Also remember to always ensure that your albums do not contain any PVC!",
- "message": "Albums can be an affordable way to store your coins, but higher-end albums can be a bit expensive. Also remember to always ensure that your albums do not contain any PVC!",
- "translation": ""
- },
- {
- "id": "Coin Boxes",
- "message": "Coin Boxes",
- "translation": ""
- },
- {
- "id": "Coin boxes are to many people the most aesthetic way to store your coins. A coin box is comprised of various layers which can be stacked ontop of each other. Each layer has various holes where you can insert your coins. Typically you are meant to store your coins in a layer encased in a coin capsule.",
- "message": "Coin boxes are to many people the most aesthetic way to store your coins. A coin box is comprised of various layers which can be stacked ontop of each other. Each layer has various holes where you can insert your coins. Typically you are meant to store your coins in a layer encased in a coin capsule.",
- "translation": ""
- },
- {
- "id": "Boxes are quite space-inefficient and are one of the most expensive ways to store your coins, but at the same time they offer a great visual appeal.",
- "message": "Boxes are quite space-inefficient and are one of the most expensive ways to store your coins, but at the same time they offer a great visual appeal.",
- "translation": ""
- },
- {
- "id": "Coin Capsules",
- "message": "Coin Capsules",
- "translation": ""
- },
- {
- "id": "Coin capsules are plastic capsules you can put your coin in. They offer good protection to your coins, while still allowing you to view all parts of your coin easily, including the edge engravings and -inscriptions. Capsules are also far more durable than flips, and can be opened and closed repeatedly allowing for them to be reused. This isn’t really possible with flips.",
- "message": "Coin capsules are plastic capsules you can put your coin in. They offer good protection to your coins, while still allowing you to view all parts of your coin easily, including the edge engravings and -inscriptions. Capsules are also far more durable than flips, and can be opened and closed repeatedly allowing for them to be reused. This isn’t really possible with flips.",
- "translation": ""
- },
- {
- "id": "Capsules can be a bit pricey, but are reusable and are very durable. They also come in different sizes, so make sure you get the right size for your coins.",
- "message": "Capsules can be a bit pricey, but are reusable and are very durable. They also come in different sizes, so make sure you get the right size for your coins.",
- "translation": ""
- },
- {
- "id": "Coin Flips",
- "message": "Coin Flips",
- "translation": ""
- },
- {
- "id": "Coin flips, also known as ‘2x2’ flips by some Americans are small cardboard flips with a plastic covered hole in the middle for viewing. Most coin flips are stapled, meaning you put your coin in the flip and staple it shut. These kinds of flips are very cheap, and you can buy stacks of a few hundred for only a few euros. If you don’t like the staples though, you can also buy adhesive-flips that glue themselves shut. These flips are more expensive, but also look better than their stapled equivalents.",
- "message": "Coin flips, also known as ‘2x2’ flips by some Americans are small cardboard flips with a plastic covered hole in the middle for viewing. Most coin flips are stapled, meaning you put your coin in the flip and staple it shut. These kinds of flips are very cheap, and you can buy stacks of a few hundred for only a few euros. If you don’t like the staples though, you can also buy adhesive-flips that glue themselves shut. These flips are more expensive, but also look better than their stapled equivalents.",
- "translation": ""
- },
- {
- "id": "Coin slips are also pretty space efficient, and can be easily stacked in boxes for compact storage. Many collectors also like to write notes about their coins on the flips. There also exist special sheets for coin albums that allow you to put in flipped coins, but this is more expensive and less space-efficient than simply using flips or an album without flips.",
- "message": "Coin slips are also pretty space efficient, and can be easily stacked in boxes for compact storage. Many collectors also like to write notes about their coins on the flips. There also exist special sheets for coin albums that allow you to put in flipped coins, but this is more expensive and less space-efficient than simply using flips or an album without flips.",
- "translation": ""
- },
- {
- "id": "Coin Rolls",
- "message": "Coin Rolls",
- "translation": ""
- },
- {
- "id": "This is probably the most inexpensive way to store your coins. If you take good care of the paper when opening your coin rolls, you can simply reuse them for storage. Just roll your coins back up and put some rubber bands on the ends. You can also get reusable plastic rolls that can be opened and closed. You will need different rolls based on the denomination you want to store, but they are very space-efficient.",
- "message": "This is probably the most inexpensive way to store your coins. If you take good care of the paper when opening your coin rolls, you can simply reuse them for storage. Just roll your coins back up and put some rubber bands on the ends. You can also get reusable plastic rolls that can be opened and closed. You will need different rolls based on the denomination you want to store, but they are very space-efficient.",
- "translation": ""
- },
- {
- "id": "Examples",
- "message": "Examples",
- "translation": ""
- },
- {
- "id": "In case you’re looking for some inspiration on how to store your collections, here are some examples.",
- "message": "In case you’re looking for some inspiration on how to store your collections, here are some examples.",
- "translation": ""
- },
- {
- "id": "Euro Coin Collecting",
- "message": "Euro Coin Collecting",
- "translation": ""
- },
- {
- "id": "What is Vending Machine Hunting?",
- "message": "What is Vending Machine Hunting?",
- "translation": ""
- },
- {
- "id": "‘Vending machine hunting’ is a strategy of collecting coins whereby you continuously insert coins into a vending machine and cancel the transaction by pressing the return button. When the vending machine returns your coins to you, you will often get different coins from the ones you put in, and you can repeat this process until you’ve searched through every coin in the machine.",
- "message": "‘Vending machine hunting’ is a strategy of collecting coins whereby you continuously insert coins into a vending machine and cancel the transaction by pressing the return button. When the vending machine returns your coins to you, you will often get different coins from the ones you put in, and you can repeat this process until you’ve searched through every coin in the machine.",
- "translation": ""
- },
- {
- "id": "The Test Coins",
- "message": "The Test Coins",
- "translation": ""
- },
- {
- "id": "First, you want to make sure the vending machine you come across actually gives back change — sometimes they don’t! Throw in a 10 cent coin and press the return button. If it doesn’t give the coin back, you can move on to the next machine; there’s a high chance it won’t return higher denominations either. Next throw in a random 2 euro coin and press the return button. You should do this because vending machines may not return 2 euro coins, but rather 1 euro- or 50 cent coins instead. It’s better to find out immediately as opposed to later once you’ve already put in all of your 2 euro coins.",
- "message": "First, you want to make sure the vending machine you come across actually gives back change — sometimes they don’t! Throw in a 10 cent coin and press the return button. If it doesn’t give the coin back, you can move on to the next machine; there’s a high chance it won’t return higher denominations either. Next throw in a random 2 euro coin and press the return button. You should do this because vending machines may not return 2 euro coins, but rather 1 euro- or 50 cent coins instead. It’s better to find out immediately as opposed to later once you’ve already put in all of your 2 euro coins.",
- "translation": ""
- },
- {
- "id": "The Stopper",
- "message": "The Stopper",
- "translation": ""
- },
- {
- "id": "We want to be able to know when we’ve gone through all the coins in the vending machine. To do this, take out a coin and mark it with something (drawing on it with a Sharpie works well), then put it into the machine. Next time you get the same coin back, you know you’ve gone through everything.",
- "message": "We want to be able to know when we’ve gone through all the coins in the vending machine. To do this, take out a coin and mark it with something (drawing on it with a Sharpie works well), then put it into the machine. Next time you get the same coin back, you know you’ve gone through everything.",
- "translation": ""
- },
- {
- "id": "Rejected Stoppers and Coins",
- "message": "Rejected Stoppers and Coins",
- "translation": ""
- },
- {
- "id": "Sometimes you may throw a stopper in, but you hear a ‘clunk’ sound, as if the coin was dropped into a box (normally adding a coin should be silent after you throw it in). This means the coin was not added to the stack properly, and so it will not be returned. Pay attention to this noise, because you won’t be getting the stopper back! Throw in another marked coin instead until the machine accepts the coin.",
- "message": "Sometimes you may throw a stopper in, but you hear a ‘clunk’ sound, as if the coin was dropped into a box (normally adding a coin should be silent after you throw it in). This means the coin was not added to the stack properly, and so it will not be returned. Pay attention to this noise, because you won’t be getting the stopper back! Throw in another marked coin instead until the machine accepts the coin.",
- "translation": ""
- },
- {
- "id": "(Non-)Merging Machines",
- "message": "(Non-)Merging Machines",
- "translation": ""
- },
- {
- "id": "We generally identify between two main types of vending machines.",
- "message": "We generally identify between two main types of vending machines.",
- "translation": ""
- },
- {
- "id": "Merging",
- "message": "Merging",
- "translation": ""
- },
- {
- "id": "The vending machine merges change together. For example if you throw in five 50 cent coins, the machine returns either two 1 euro coins and one 50 cent coin or one 2 euro and one 50 cent coin. This usually means you can hunt 2 euro coins very quickly but other denominations only once at a time. A good tip is to throw in an odd number of euros and 80 cents if you want to search through all denominations.",
- "message": "The vending machine merges change together. For example if you throw in five 50 cent coins, the machine returns either two 1 euro coins and one 50 cent coin or one 2 euro and one 50 cent coin. This usually means you can hunt 2 euro coins very quickly but other denominations only once at a time. A good tip is to throw in an odd number of euros and 80 cents if you want to search through all denominations.",
- "translation": ""
- },
- {
- "id": "Non-Merging",
- "message": "Non-Merging",
- "translation": ""
- },
- {
- "id": "The vending machine does not merge change together. This means if you throw in five 50 cent coins it will return five 50 cent coins. This makes it very easy to hunt a large amount of a specific denomination.",
- "message": "The vending machine does not merge change together. This means if you throw in five 50 cent coins it will return five 50 cent coins. This makes it very easy to hunt a large amount of a specific denomination.",
- "translation": ""
- },
- {
- "id": "Limits",
- "message": "Limits",
- "translation": ""
- },
- {
- "id": "There are some limits to vending machine hunts which you need to be aware of.",
- "message": "There are some limits to vending machine hunts which you need to be aware of.",
- "translation": ""
- },
- {
- "id": "Maximum Input Limit",
- "message": "Maximum Input Limit",
- "translation": ""
- },
- {
- "id": "Some machines have a maximum amount you can throw in, and will reject anything higher. For example machines with a max limit of five euros will reject any additional coins if you throw in five euros. You can try to go above the limit if you throw in, say, %s and then another one- or two euro coin; the machine will probably accept it.",
- "message": "Some machines have a maximum amount you can throw in, and will reject anything higher. For example machines with a max limit of five euros will reject any additional coins if you throw in five euros. You can try to go above the limit if you throw in, say, %s and then another one- or two euro coin; the machine will probably accept it.",
- "translation": ""
- },
- {
- "id": "Maximum Change Limit",
- "message": "Maximum Change Limit",
- "translation": ""
- },
- {
- "id": "Some machines will either give back large amounts of change in bills or will not give back large amounts of change at all (usually cigarette machines). Read the labels on all machines carefully since these limits are usually written there.",
- "message": "Some machines will either give back large amounts of change in bills or will not give back large amounts of change at all (usually cigarette machines). Read the labels on all machines carefully since these limits are usually written there.",
- "translation": ""
- },
- {
- "id": "Even if no limits are listed, it’s still advised that you exercise caution: it is not uncommon for a vending machine to steal your money. In the case that a vending machine does steal your money, look for a label on the machine that contains a support number.",
- "message": "Even if no limits are listed, it’s still advised that you exercise caution: it is not uncommon for a vending machine to steal your money. In the case that a vending machine does steal your money, look for a label on the machine that contains a support number.",
- "translation": ""
- },
- {
- "id": "For information on Austrian cigarette machines, see the ‘%sCigarette Machines%s’ section.",
- "message": "For information on Austrian cigarette machines, see the ‘%sCigarette Machines%s’ section.",
- "translation": ""
- },
- {
- "id": "Cigarette Machines",
- "message": "Cigarette Machines",
- "translation": ""
- },
- {
- "id": "In some countries where cigarette machines are legal, you can hunt through them as well. Unless you’re in Malta, you must verify your age on them by either sliding an ID card through a sensor or holding a debit card on an RFID scanner; you must do this for every cycle. Sometimes you must also select something to purchase, throw in less money than the cost, and then cancel the purchase. Note that most cigarette machines in Austria have a %s max change limit.",
- "message": "In some countries where cigarette machines are legal, you can hunt through them as well. Unless you’re in Malta, you must verify your age on them by either sliding an ID card through a sensor or holding a debit card on an RFID scanner; you must do this for every cycle. Sometimes you must also select something to purchase, throw in less money than the cost, and then cancel the purchase. Note that most cigarette machines in Austria have a %s max change limit.",
- "translation": ""
- },
- {
- "id": "For RFID scanner machines it helps to wear a glove and slide a debit card into the back of it so you can easily use both hands and don’t have to fumble with a card and coins.",
- "message": "For RFID scanner machines it helps to wear a glove and slide a debit card into the back of it so you can easily use both hands and don’t have to fumble with a card and coins.",
- "translation": ""
- },
- {
- "id": "On this section of the site you can find everything there is to know about collecting Euro coins. If this is a hobby that interests you, join the Discord server linked at the top of the page!",
- "message": "On this section of the site you can find everything there is to know about collecting Euro coins. If this is a hobby that interests you, join the Discord server linked at the top of the page!",
- "translation": ""
- },
- {
- "id": "Learn about collecting coins from coin rolls!",
- "message": "Learn about collecting coins from coin rolls!",
- "translation": ""
- },
- {
- "id": "Learn about the different methods to storing your collection!",
- "message": "Learn about the different methods to storing your collection!",
- "translation": ""
- },
- {
- "id": "Shop Hunting",
- "message": "Shop Hunting",
- "translation": ""
- },
- {
- "id": "Learn about how to collect coins from shop-keepers and other people who deal in cash!",
- "message": "Learn about how to collect coins from shop-keepers and other people who deal in cash!",
- "translation": ""
- },
- {
- "id": "Vending Machine Hunting",
- "message": "Vending Machine Hunting",
- "translation": ""
- },
- {
- "id": "Learn about collecting coins from vending machines!",
- "message": "Learn about collecting coins from vending machines!",
- "translation": ""
- },
- {
- "id": "The Euro Cash Compendium",
- "message": "The Euro Cash Compendium",
- "translation": ""
- },
- {
- "id": "United in",
- "message": "United in",
- "translation": ""
- },
- {
- "id": "diversity",
- "message": "diversity",
- "translation": ""
- },
- {
- "id": "cash",
- "message": "cash",
- "translation": ""
- },
- {
- "id": "Welcome to the Euro Cash Compendium. This sites aims to be a resource for you to discover everything there is to know about the coins and banknotes of the Euro, a currency that spans 26 countries and 350 million people. We also have dedicated sections of the site for collectors.",
- "message": "Welcome to the Euro Cash Compendium. This sites aims to be a resource for you to discover everything there is to know about the coins and banknotes of the Euro, a currency that spans 26 countries and 350 million people. We also have dedicated sections of the site for collectors.",
- "translation": ""
- },
- {
- "id": "Euro Cash Jargon",
- "message": "Euro Cash Jargon",
- "translation": ""
- },
- {
- "id": "Both on this website and in other euro-cash-related forums there are many terms you will come across that you may not immediately understand. This page will hopefully get you up to speed with the most important and frequently-used terminology.",
- "message": "Both on this website and in other euro-cash-related forums there are many terms you will come across that you may not immediately understand. This page will hopefully get you up to speed with the most important and frequently-used terminology.",
- "translation": ""
- },
- {
- "id": "All terms defined below can be used as clickable links which highlight the selected term. It is recommended to use these links when sharing this page with others, so that the relevant terms are highlighted.",
- "message": "All terms defined below can be used as clickable links which highlight the selected term. It is recommended to use these links when sharing this page with others, so that the relevant terms are highlighted.",
- "translation": ""
- },
- {
- "id": "General Terms",
- "message": "General Terms",
- "translation": ""
- },
- {
- "id": "AU coins are coins that are in extremely good condition as a result of limited use in circulation. Unlike the term ‘UNC’, this term is a description of the coins quality, not its usage. AU coins often appear to retain most of their original luster as well as possessing little-to-no scratches or other forms of post-mint damage (PMD).",
- "message": "AU coins are coins that are in extremely good condition as a result of limited use in circulation. Unlike the term ‘UNC’, this term is a description of the coins quality, not its usage. AU coins often appear to retain most of their original luster as well as possessing little-to-no scratches or other forms of post-mint damage (PMD).",
- "translation": ""
- },
- {
- "id": "BU is a general term to refer to coins from coincards and -sets. These are different from UNC coins in that they are typically handled with more care during the minting process and are struck with higher-quality dies than the coins minted for coin rolls resulting in a higher-quality end product. You may also see these coins referred to by the French term ‘fleur de coin’.",
- "message": "BU is a general term to refer to coins from coincards and -sets. These are different from UNC coins in that they are typically handled with more care during the minting process and are struck with higher-quality dies than the coins minted for coin rolls resulting in a higher-quality end product. You may also see these coins referred to by the French term ‘fleur de coin’.",
- "translation": ""
- },
- {
- "id": "NIFC coins are coins minted without the intention of being put into general circulation. These coins are typically minted with the purpose of being put into coincards or coin-sets to be sold to collectors. Occasionally they are also handed out to collectors for face value at banks.",
- "message": "NIFC coins are coins minted without the intention of being put into general circulation. These coins are typically minted with the purpose of being put into coincards or coin-sets to be sold to collectors. Occasionally they are also handed out to collectors for face value at banks.",
- "translation": ""
- },
- {
- "id": "While uncommon, NIFC coins are occasionally found in circulation. This can happen for a variety of reasons such as someone depositing their coin collection (known as a ‘collection dump’), or a collector’s child spending their rare coins on an ice cream. Some coin mints have also been known to put NIFC coins that have gone unsold for multiple years into circulation.",
- "message": "While uncommon, NIFC coins are occasionally found in circulation. This can happen for a variety of reasons such as someone depositing their coin collection (known as a ‘collection dump’), or a collector’s child spending their rare coins on an ice cream. Some coin mints have also been known to put NIFC coins that have gone unsold for multiple years into circulation.",
- "translation": ""
- },
- {
- "id": "Post-mint damage is any damage that a coin has sustained outside of the minting process, such as through being dropped on the ground, hit against a table, etc.",
- "message": "Post-mint damage is any damage that a coin has sustained outside of the minting process, such as through being dropped on the ground, hit against a table, etc.",
- "translation": ""
- },
- {
- "id": "Uncirculated coins are coins that have never been used in a monetary exchange. The term ‘UNC’ is often mistakenly used to refer to coins in very good condition, but this is incorrect. A coin in poor condition that has never been circulated is still considered an ‘UNC’ coin.",
- "message": "Uncirculated coins are coins that have never been used in a monetary exchange. The term ‘UNC’ is often mistakenly used to refer to coins in very good condition, but this is incorrect. A coin in poor condition that has never been circulated is still considered an ‘UNC’ coin.",
- "translation": ""
- },
- {
- "id": "Collector-Specific Terms",
- "message": "Collector-Specific Terms",
- "translation": ""
- },
- {
- "id": "Coin roll hunting is a general term for the activity of searching through coin rolls and -bags to find coins for a collection. Coin rolls and bags are often obtained at banks or coin roll machines.",
- "message": "Coin roll hunting is a general term for the activity of searching through coin rolls and -bags to find coins for a collection. Coin rolls and bags are often obtained at banks or coin roll machines.",
- "translation": ""
- },
- {
- "id": "Select Your Language",
- "message": "Select Your Language",
- "translation": ""
- },
- {
- "id": "Select your preferred language to use on the site.",
- "message": "Select your preferred language to use on the site.",
- "translation": ""
- },
- {
- "id": "Eurozone Languages",
- "message": "Eurozone Languages",
- "translation": ""
- },
- {
- "id": "Other Languages",
- "message": "Other Languages",
- "translation": ""
- }
- ]
-} \ No newline at end of file
diff --git a/src/tables.go b/src/tables.go
new file mode 100644
index 0000000..f99630b
--- /dev/null
+++ b/src/tables.go
@@ -0,0 +1,108 @@
+package app
+
+import (
+ "database/sql"
+ "slices"
+
+ "golang.org/x/text/collate"
+ "golang.org/x/text/language"
+
+ "git.thomasvoss.com/euro-cash.eu/src/dbx"
+ "git.thomasvoss.com/euro-cash.eu/src/i18n"
+)
+
+type YearCCsPair struct {
+ Year int
+ Mintmark sql.Null[string]
+ CCs []dbx.MCommemorative
+}
+
+type CountryMintageTable struct {
+ Standard []dbx.MSCountryRow
+ Commemorative []YearCCsPair
+}
+
+type CountryCCsPair struct {
+ Country string
+ Mintmark sql.Null[string]
+ CCs []dbx.MCommemorative
+}
+
+type YearMintageTable struct {
+ Standard []dbx.MSYearRow
+ Commemorative []CountryCCsPair
+}
+
+func makeCountryMintageTable(data dbx.CountryMintageData, p i18n.Printer) CountryMintageTable {
+ ccdata := data.Commemorative
+ ccs := make([]YearCCsPair, 0, len(ccdata))
+
+ for len(ccdata) > 0 {
+ x := ccdata[0]
+ i := len(ccdata)
+ for j, y := range ccdata[1:] {
+ if x.Year != y.Year || x.Mintmark != y.Mintmark {
+ i = j + 1
+ break
+ }
+ }
+ ccs = append(ccs, YearCCsPair{
+ Year: x.Year,
+ Mintmark: x.Mintmark,
+ CCs: ccdata[:i],
+ })
+ ccdata = ccdata[i:]
+ }
+
+ return CountryMintageTable{data.Standard, ccs}
+}
+
+func makeYearMintageTable(data dbx.YearMintageData, p i18n.Printer) YearMintageTable {
+ ccdata := data.Commemorative
+ ccs := make([]CountryCCsPair, 0, len(ccdata))
+
+ for len(ccdata) > 0 {
+ x := ccdata[0]
+ i := len(ccdata)
+ for j, y := range ccdata[1:] {
+ if x.Country != y.Country || x.Mintmark != y.Mintmark {
+ i = j + 1
+ break
+ }
+ }
+ ccs = append(ccs, CountryCCsPair{
+ Country: x.Country,
+ Mintmark: x.Mintmark,
+ CCs: ccdata[:i],
+ })
+ ccdata = ccdata[i:]
+ }
+
+ /* NOTE: It’s safe to use MustParse() here, because by this
+ point we know that all BCPs are valid. */
+ c := collate.New(language.MustParse(p.Bcp))
+ for i, r := range data.Standard {
+ name := countryCodeToName[r.Country]
+ data.Standard[i].Country = p.GetC(name, "Place Name")
+ }
+ for i, r := range ccs {
+ name := countryCodeToName[r.Country]
+ ccs[i].Country = p.GetC(name, "Place Name")
+ }
+ slices.SortFunc(data.Standard, func(x, y dbx.MSYearRow) int {
+ Δ := c.CompareString(x.Country, y.Country)
+ if Δ == 0 {
+ Δ = c.CompareString(x.Mintmark.V, y.Mintmark.V)
+ }
+ return Δ
+ })
+ slices.SortFunc(ccs, func(x, y CountryCCsPair) int {
+ Δ := c.CompareString(x.Country, y.Country)
+ if Δ == 0 {
+ Δ = c.CompareString(x.Mintmark.V, y.Mintmark.V)
+ }
+ return Δ
+ })
+
+ return YearMintageTable{data.Standard, ccs}
+}
diff --git a/src/templates.go b/src/templates.go
index 4c37af1..6a43fcb 100644
--- a/src/templates.go
+++ b/src/templates.go
@@ -1,98 +1,229 @@
-package src
+package app
import (
- "embed"
"html/template"
+ "io/fs"
"log"
- "os"
"strings"
+ "time"
- "git.thomasvoss.com/euro-cash.eu/src/mintage"
+ . "git.thomasvoss.com/euro-cash.eu/pkg/try"
+ "git.thomasvoss.com/euro-cash.eu/pkg/watch"
+
+ "git.thomasvoss.com/euro-cash.eu/src/i18n"
)
type templateData struct {
- Printer Printer
- Code, Type string
- Mintages mintage.Data
- Countries []country
+ Debugp bool
+ Printer i18n.Printer
+ Printers map[string]i18n.Printer
+ Code, Type, FilterBy string
+ Year int
+ CountryMintages CountryMintageTable
+ YearMintages YearMintageTable
+ Countries []country
}
var (
- //go:embed templates/*.html.tmpl
- templateFS embed.FS
- notFoundTmpl = buildTemplate("-404")
- errorTmpl = buildTemplate("-error")
+ notFoundTmpl *template.Template
+ errorTmpl *template.Template
templates map[string]*template.Template
funcmap = map[string]any{
- "denoms": denoms,
- "locales": locales,
- "safe": asHTML,
- "strToCtype": strToCtype,
- "toUpper": strings.ToUpper,
- "tuple": templateMakeTuple,
+ "evenp": evenp,
+ "ifElse": ifElse,
+ "locales": i18n.Locales,
+ "map": templateMakeMap,
+ "plus1": plus1,
+ "safe": asHTML,
+ "toString": toString,
+ "toUpper": strings.ToUpper,
+ "tuple": templateMakeTuple,
+ "withTranslation": withTranslation,
+ "withTranslations": withTranslations,
+ "years": years,
}
)
-func init() {
- ents, err := os.ReadDir("src/templates")
- if err != nil {
- log.Fatalln(err)
- }
+func BuildTemplates(dir fs.FS) {
+ buildTemplates(dir, Debugp)
+}
+
+func buildTemplates(dir fs.FS, debugp bool) {
+ ents := Try2(fs.ReadDir(dir, "."))
+ notFoundTmpl = buildTemplate(dir, "-404")
+ errorTmpl = buildTemplate(dir, "-error")
templates = make(map[string]*template.Template, len(ents))
+
for _, e := range ents {
- path := "/"
- name := strings.TrimSuffix(e.Name(), ".html.tmpl")
- switch {
- case name[0] == '-':
+ if e.IsDir() {
continue
- case name != "index":
- path += strings.ReplaceAll(name, "-", "/")
}
- templates[path] = buildTemplate(name)
+ name := e.Name()
+ buildAndSetTemplate(dir, name)
+ if debugp {
+ go watch.FileFS(dir, name, func() {
+ defer func() {
+ if p := recover(); p != nil {
+ log.Println(p)
+ }
+ }()
+
+ if strings.HasPrefix(name, "-") {
+ buildTemplates(dir, false)
+ log.Println("All templates updated")
+ } else {
+ buildAndSetTemplate(dir, name)
+ log.Printf("Template ‘%s’ updated\n", name)
+ }
+ })
+ }
}
}
-func buildTemplate(name string) *template.Template {
+func buildAndSetTemplate(dir fs.FS, name string) {
+ path := "/"
+ name = strings.TrimSuffix(name, ".html.tmpl")
+ switch {
+ case name[0] == '-':
+ return
+ case name != "index":
+ path += strings.ReplaceAll(name, "-", "/")
+ }
+ templates[path] = buildTemplate(dir, name)
+}
+
+func buildTemplate(dir fs.FS, name string) *template.Template {
names := [...]string{"-base", "-navbar", name}
for i, s := range names {
- names[i] = "templates/" + s + ".html.tmpl"
+ names[i] = s + ".html.tmpl"
}
return template.Must(template.
New("-base.html.tmpl").
Funcs(funcmap).
- ParseFS(templateFS, names[:]...))
+ ParseFS(dir, names[:]...))
}
func asHTML(s string) template.HTML {
return template.HTML(s)
}
-func denoms() [8]float64 {
- return [8]float64{
- 0.01, 0.02, 0.05, 0.10,
- 0.20, 0.50, 1.00, 2.00,
+func toString(s template.HTML) string {
+ return string(s)
+}
+
+func templateMakeTuple(args ...any) []any {
+ return args
+}
+
+func templateMakeMap(args ...any) map[string]any {
+ if len(args)&1 != 0 {
+ /* TODO: Handle error */
+ args = args[:len(args)-1]
}
+ m := make(map[string]any, len(args)/2)
+ for i := 0; i < len(args); i += 2 {
+ k, ok := args[i].(string)
+ if !ok {
+ /* TODO: Handle error */
+ continue
+ }
+ m[k] = args[i+1]
+ }
+ return m
}
-func locales() []locale {
- return Locales[:]
+func evenp(n int) bool {
+ return n&1 == 0
}
-func templateMakeTuple(args ...any) []any {
- return args
+func ifElse(b bool, x, y any) any {
+ if b {
+ return x
+ }
+ return y
}
-func strToCtype(s string) int {
- switch s {
- case "nifc":
- return mintage.TypeNIFC
- case "proof":
- return mintage.TypeProof
- default:
- return mintage.TypeCirc
+func withTranslation(tag, bcp, text string, trans template.HTML,
+ spanAttrs ...string) template.HTML {
+ name, _, _ := strings.Cut(tag, " ")
+
+ var bob strings.Builder
+ bob.WriteByte('<')
+ bob.WriteString(tag)
+ bob.WriteString(`><span lang="`)
+ bob.WriteString(bcp)
+ bob.WriteString(`">`)
+ bob.WriteString(text)
+ bob.WriteString("</span>")
+
+ if text != string(trans) {
+ bob.WriteString(`<br><span class="translation"`)
+ for _, s := range spanAttrs {
+ bob.WriteByte(' ')
+ bob.WriteString(s)
+ }
+ bob.WriteByte('>')
+ bob.WriteString(string(trans))
+ bob.WriteString("</span>")
+ }
+
+ bob.WriteString("</")
+ bob.WriteString(name)
+ bob.WriteByte('>')
+ return template.HTML(bob.String())
+}
+
+func withTranslations(tag string, text string, translations ...[]any) template.HTML {
+ var bob strings.Builder
+ bob.WriteByte('<')
+ bob.WriteString(tag)
+ bob.WriteByte('>')
+ bob.WriteString(text)
+
+ /* TODO: Assert that the pairs are [2]string */
+ for _, pair := range translations {
+ if text == pair[1] {
+ continue
+ }
+ bob.WriteString(`<br><span class="translation"`)
+ if pair[0].(string) != "" {
+ bob.WriteString(` lang="`)
+ bob.WriteString(pair[0].(string))
+ bob.WriteString(`">`)
+ } else {
+ bob.WriteByte('>')
+ }
+ bob.WriteString(pair[1].(string))
+ bob.WriteString("</span>")
}
+
+ bob.WriteString("</")
+ bob.WriteString(tag)
+ bob.WriteByte('>')
+ return template.HTML(bob.String())
+}
+
+func plus1(x int) int {
+ return x + 1
+}
+
+func years() []int {
+ sy, ey := 1999, time.Now().Year()
+ xs := make([]int, ey-sy+1)
+ for i := range xs {
+ xs[i] = sy + i
+ }
+ return xs
+}
+
+func (td templateData) Get(fmt string, args ...map[string]any) template.HTML {
+ return template.HTML(td.Printer.Get(fmt, args...))
+}
+
+func (td templateData) GetC(fmt, ctx string, args ...map[string]any) template.HTML {
+ return template.HTML(td.Printer.GetC(fmt, ctx, args...))
}
-func (td templateData) T(fmt string, args ...any) string {
- return td.Printer.T(fmt, args...)
+func (td templateData) GetN(fmtS, fmtP string, n int, args ...map[string]any) template.HTML {
+ return template.HTML(td.Printer.GetN(fmtS, fmtP, n, args...))
}
diff --git a/src/templates/-404.html.tmpl b/src/templates/-404.html.tmpl
index c86dc30..fd17cf6 100644
--- a/src/templates/-404.html.tmpl
+++ b/src/templates/-404.html.tmpl
@@ -1,16 +1,16 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+{{ end }}
+
{{ define "content" }}
-<header>
+<header class="container">
{{ template "navbar" . }}
- <h1>{{ .T "Page Not Found" }}</h1>
+ <h1>{{ .Get "Page Not Found" }}</h1>
</header>
-<main>
+<main class="container">
<p>
- {{ .T `
- The page you were looking for does not exist. If you believe this
- is a mistake then don’t hesitate to contact @onetruemangoman on
- Discord or email us at %s.`
- `<a href="mailto:mail@euro-cash.eu">mail@euro-cash.eu</a>` | safe
- }}
+ {{ .Get "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}."
+ (map "Email" "mail@euro-cash.eu") }}
</p>
</main>
-{{ end }}
+{{ end }} \ No newline at end of file
diff --git a/src/templates/-base.html.tmpl b/src/templates/-base.html.tmpl
index 2a33cc3..2e78a7c 100644
--- a/src/templates/-base.html.tmpl
+++ b/src/templates/-base.html.tmpl
@@ -1,42 +1,60 @@
<!DOCTYPE html>
-<html lang={{ .Printer.Locale.Bcp }}>
+<html lang="{{ .Printer.Bcp }}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
+ {{ if .Debugp }}
+ <link href="/style-2.css" type="text/css" rel="stylesheet">
+ {{ else }}
<link href="/style.min.css" type="text/css" rel="stylesheet">
- <title>{{ .T "Euro Cash" }}</title>
+ {{ end }}
+ <title>{{ .Get "Euro Cash Wiki" }}</title>
<script type="text/javascript">
const $ = q => document.querySelector(q);
const $$ = q => document.querySelectorAll(q);
- const validate = theme =>
- ["light", "dark"].includes(theme) ? theme : "light";
- const toggle = theme =>
- theme == "light" ? "dark" : "light";
+ (() => {
+ document.addEventListener("DOMContentLoaded", _ => {
+ const root = $("html");
+ const icons = {
+ light: $("#nav-icon-theme-light"),
+ dark: $("#nav-icon-theme-dark"),
+ };
- const setTheme = theme => {
- localStorage.setItem("theme", theme);
- $("html").setAttribute("data-theme", theme);
- $(`#nav-icon-theme-${theme}`).style.display = "";
- $(`#nav-icon-theme-${toggle(theme)}`).style.display = "none";
- };
+ const toggle = theme =>
+ theme === "light" ? "dark" : "light"
- document.addEventListener("DOMContentLoaded", _ => {
- $("#theme-button").onclick = () =>
- setTheme(toggle(validate(localStorage.getItem("theme"))));
- setTheme(validate(localStorage.getItem("theme")));
- });
+ const setTheme = theme => {
+ localStorage.setItem("theme", theme);
+ root.setAttribute("data-theme", theme);
+ icons[theme].style.display = "";
+ icons[toggle(theme)].style.display = "none";
+ };
+
+ /* Double toggle to handle invalid theme */
+ setTheme(toggle(toggle(localStorage.getItem("theme"))));
+ $("#theme-button").onclick = () => {
+ const theme = toggle(localStorage.getItem("theme"));
+ if (document.startViewTransition)
+ document.startViewTransition(() => setTheme(theme));
+ else
+ setTheme(theme);
+ };
+ });
+ })();
</script>
+
+ {{ template "header" . }}
</head>
<body>
{{ template "content" . }}
- <footer>
+ <footer class="container">
<p>
<small>
- {{ .T "Found a mistake or want to contribute missing information?" }}
- <a href="/about">{{ .T "Feel free to contact us!" }}</a>
+ {{ .Get "Found a mistake or want to contribute missing information?" }}
+ <a href="/about">{{ .Get "Feel free to contact us!" }}</a>
</small>
</p>
</footer>
</body>
-</html>
+</html> \ No newline at end of file
diff --git a/src/templates/-error.html.tmpl b/src/templates/-error.html.tmpl
index 47bff81..198318d 100644
--- a/src/templates/-error.html.tmpl
+++ b/src/templates/-error.html.tmpl
@@ -1,3 +1,7 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+{{ end }}
+
{{ define "content" }}
<header>
{{ template "navbar" . }}
@@ -5,19 +9,11 @@
</header>
<main>
<p>
- {{ .T `
- 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.
- ` }}
+ {{ .Get "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." }}
</p>
<p>
- {{ .T `
- If this issue persists, don’t hesitate to contact @onetruemangoman
- on Discord or to email us at %s.`
- `<a href="https://git.thomasvoss.com/www.euro-cash.eu"
- target="_blank">` | safe
- }}
+ {{ .Get "If this issue persists, don’t hesitate to contact ‘@onetruemangoman’ on Discord or to email us at {Email:e}"
+ (map "Email" "mail@euro-cash.eu") }}
</p>
</main>
-{{ end }}
+{{ end }} \ No newline at end of file
diff --git a/src/templates/-navbar.html.tmpl b/src/templates/-navbar.html.tmpl
index b0b1130..588f554 100644
--- a/src/templates/-navbar.html.tmpl
+++ b/src/templates/-navbar.html.tmpl
@@ -1,20 +1,59 @@
+{{ define "header-navbar" }}
+<style>
+ #nav-icon-lang {
+ a {
+ display: flex;
+ align-items: center;
+ gap: .5ch;
+ }
+
+ svg {
+ stroke: var(--pico-color);
+ height: 1rem;
+ }
+ }
+
+ #nav-icon-theme {
+ button {
+ background-color: unset;
+ margin: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 1.5rem;
+ }
+
+ svg {
+ stroke: var(--pico-primary);
+ stroke-width: .1;
+ height: 1.2rem;
+ width: 2rem;
+ }
+ }
+
+ [data-theme="light"] #nav-icon-theme svg {
+ fill: var(--pico-primary);
+ }
+</style>
+{{ end }}
+
{{ define "navbar" }}
<nav>
- <menu>
- <li><a href="/">{{ .T "Home" }}</a></li>
- <li><a href="#TODO">{{ .T "News" }}</a></li>
- <li><a href="/collecting">{{ .T "Coin Collecting" }}</a></li>
- <li><a href="/coins">{{ .T "Coins" }}</a></li>
- <li><a href="#TODO">{{ .T "Banknotes" }}</a></li>
- <li><a href="/jargon">{{ .T "Jargon" }}</a></li>
- </menu>
- <menu>
+ <ul>
+ <li><a href="/">{{ .Get "Home" }}</a></li>
+ <li><a href="#TODO">{{ .Get "News" }}</a></li>
+ <li><a href="/collecting">{{ .Get "Coin Collecting" }}</a></li>
+ <li><a href="/coins">{{ .Get "Coins" }}</a></li>
+ <li><a href="/banknotes">{{ .Get "Banknotes" }}</a></li>
+ <li><a href="/jargon">{{ .Get "Jargon" }}</a></li>
+ </ul>
+ <ul>
<li>
<a href="https://discord.gg/DCaXfRcy9C" target="_blank">
- {{ .T "Discord" }}
+ {{ .Get "Discord" }}
</a>
</li>
- <li><a href="/about">{{ .T "About" }}</a></li>
+ <li><a href="/about">{{ .Get "About" }}</a></li>
<li id="nav-icon-lang">
<a href="/language">
<svg
@@ -55,7 +94,7 @@
<path d="M 17.0 5.0 H 2.0" stroke-linejoin="round"></path>
<path d="M 17.0 14.0 H 2.0" stroke-linejoin="round"></path>
</svg>
- {{ .T "Language" }}
+ {{ .Get "Language" }}
</a>
</li>
<li id="nav-icon-theme">
@@ -223,6 +262,6 @@
</svg>
</button>
</li>
- </menu>
+ </ul>
</nav>
{{ end }} \ No newline at end of file
diff --git a/src/templates/about.html.tmpl b/src/templates/about.html.tmpl
index ba5aaaa..1ef6339 100644
--- a/src/templates/about.html.tmpl
+++ b/src/templates/about.html.tmpl
@@ -1,61 +1,23 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+{{ end }}
+
{{ define "content" }}
<header>
{{ template "navbar" . }}
- <h1>{{ .T "About Us" }}</h1>
+ <h1>{{ .Get "About Us" }}</h1>
</header>
<main>
- <h2>{{ .T "Open Source" }}</h2>
+ <h2>{{ .Get "Open Source" }}</h2>
<p>
- {{ .T `
- This website is an open project, and a collaboration between
- developers, translators, and researchers. All source code, data,
- images, and more for the website are open source and can be found
- %shere%s. This site is licensed under the BSD 0-Clause license
- giving you the full freedom to do whatever you would like with
- anyof the content on this site.`
- `<a href="https://git.thomasvoss.com/www.euro-cash.eu"
- target="_blank">`
- `</a>` | safe
- }}
+ {{ .Get "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."
+ (map "LinkGit" "https://git.thomasvoss.com/www.euro-cash.eu"
+ "LinkBSD" "https://opensource.org/license/0bsd") }}
</p>
- <h2>{{ .T "Contact Us" }}</h2>
+ <h2>{{ .Get "Contact Us" }}</h2>
<p>
- {{ .T `
- While we try to stay as up-to-date as possible and to fact check
- our information, it is always possible that we get something wrong,
- lack a translation, or are missing some piece of data you may
- have. In such a case don’t hesitate to contact us; we’ll try to get
- the site updated or fixed as soon as possible. You are always free
- to contribute via a git patch if you are more technically included,
- but if not you can always send an email to %s or contact
- ‘@onetruemangoman’ on Discord.`
- `<a href="mailto:mail@euro-cash.eu">mail@euro-cash.eu</a>` | safe
- }}
+ {{ .Get "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."
+ (map "Email" "mail@euro-cash.eu") }}
</p>
- <h2>{{ .T "Special Thanks" }}</h2>
- <table>
- <thead>
- <th scope="col">{{ .T "Development" }}</th>
- <th scope="col">{{ .T "Research" }}</th>
- <th scope="col">{{ .T "Translations" }}</th>
- </thead>
- <tbody>
- <tr>
- <td>
- Jessika Wexler,
- Lyyli Savolainen,
- Ralf Nadel
- </td>
- <td>
- Elín Hjartardóttir,
- Storm Sørensen
- </td>
- <td>
- <span data-tooltip={{ .T "British- & American English" }}>Thomas Voss</span>,
- <span data-tooltip={{ .T "Icelandic" }}>Védís Indriðadóttir</span>
- </td>
- </tr>
- </tbody>
- </table>
</main>
-{{ end }}
+{{ end }} \ No newline at end of file
diff --git a/src/templates/banknotes-codes.html.tmpl b/src/templates/banknotes-codes.html.tmpl
new file mode 100644
index 0000000..8c2adcf
--- /dev/null
+++ b/src/templates/banknotes-codes.html.tmpl
@@ -0,0 +1,520 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+
+<style>
+ .design-container {
+ --euro-cash-design-width: 90%;
+ }
+
+ table {
+ white-space: nowrap;
+
+ tr :is(th, td):first-child {
+ text-align: center;
+ }
+ }
+
+ #seperated-tables {
+ display: none;
+ }
+
+ @media (min-width: 576px) {
+ #seperated-tables {
+ display: flex;
+ justify-content: space-between;
+ gap: var(--pico-grid-column-gap);
+ }
+
+ #joint-table {
+ display: none;
+ }
+ }
+</style>
+{{ end }}
+
+{{ define "content" }}
+<header class="container">
+ {{ template "navbar" . }}
+ <h1>{{ .Get "Location Codes" }}</h1>
+</header>
+<main class="container">
+ <p>
+ {{ .Get "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)." }}
+ </p>
+
+ <h2>{{ .Get "Printer Codes" }}</h2>
+ <p>
+ {{ .Get "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." }}
+ </p>
+ <p>
+ {{ .Get "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." }}
+ </p>
+
+ <article>
+ <details name="printer-codes">
+ <summary>{{ .Get "2002 Series Printer Codes" }}</summary><hr>
+ <p>
+ {{ .Get "All these images are taken from {Link:L}eurobilltracker.com{-:E}."
+ (map "Link" "https://eurobilltracker.com") }}
+ </p>
+ <article>
+ {{ template "banknotes/codes/code-pos" (tuple .Printer 5 "2002") }}<hr>
+ {{ template "banknotes/codes/code-pos" (tuple .Printer 10 "2002") }}<hr>
+ {{ template "banknotes/codes/code-pos" (tuple .Printer 20 "2002") }}<hr>
+ {{ template "banknotes/codes/code-pos" (tuple .Printer 50 "2002") }}<hr>
+ {{ template "banknotes/codes/code-pos" (tuple .Printer 100 "2002") }}<hr>
+ {{ template "banknotes/codes/code-pos" (tuple .Printer 200 "2002") }}<hr>
+ {{ template "banknotes/codes/code-pos" (tuple .Printer 500 "2002") }}
+ </article>
+ </details>
+ <hr>
+ <details name="printer-codes">
+ <summary>{{ .Get "Europa Series Printer Codes" }}</summary><hr>
+ <article>
+ {{ template "banknotes/codes/code-pos" (tuple .Printer 5 "europa") }}<hr>
+ {{ template "banknotes/codes/code-pos" (tuple .Printer 10 "europa") }}<hr>
+ {{ template "banknotes/codes/code-pos" (tuple .Printer 20 "europa") }}<hr>
+ {{ template "banknotes/codes/code-pos" (tuple .Printer 50 "europa") }}<hr>
+ {{ template "banknotes/codes/code-pos" (tuple .Printer 100 "europa") }}<hr>
+ {{ template "banknotes/codes/code-pos" (tuple .Printer 200 "europa") }}
+ </article>
+ </details>
+ </article>
+
+ <p>
+ {{ .Get "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." }}
+ </p>
+
+ <h2>{{ .Get "2002 Series" }}</h2>
+ <p>
+ {{ .Get "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." }}
+ </p>
+
+ <div id="seperated-tables">
+ <table class="striped">
+ <thead>
+ <tr>
+ <th>{{ .GetC "Code" "Header/Label" }}</th>
+ <th>{{ .GetC "Country" "Header/Label" }}</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>D</td>
+ <td>{{ .GetC "Estonia" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>E</td>
+ <td>{{ .GetC "Slovakia" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>F</td>
+ <td>{{ .GetC "Malta" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>G</td>
+ <td>{{ .GetC "Cyprus" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>H</td>
+ <td>{{ .GetC "Slovenia" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>L</td>
+ <td>{{ .GetC "Finland" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>M</td>
+ <td>{{ .GetC "Portugal" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>N</td>
+ <td>{{ .GetC "Austria" "Place Name" }}</td>
+ </tr>
+ </tbody>
+ </table>
+
+ <table class="striped">
+ <thead>
+ <tr>
+ <th>{{ .GetC "Code" "Header/Label" }}</th>
+ <th>{{ .GetC "Country" "Header/Label" }}</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>P</td>
+ <td>{{ .GetC "Netherlands" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>S</td>
+ <td>{{ .GetC "Italy" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>T</td>
+ <td>{{ .GetC "Ireland" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>U</td>
+ <td>{{ .GetC "France" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>V</td>
+ <td>{{ .GetC "Spain" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>X</td>
+ <td>{{ .GetC "Germany" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>Y</td>
+ <td>{{ .GetC "Greece" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>Z</td>
+ <td>{{ .GetC "Belgium" "Place Name" }}</td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+
+ <table id="joint-table" class="striped">
+ <thead>
+ <tr>
+ <th>{{ .GetC "Code" "Header/Label" }}</th>
+ <th>{{ .GetC "Country" "Header/Label" }}</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>D</td>
+ <td>{{ .GetC "Estonia" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>E</td>
+ <td>{{ .GetC "Slovakia" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>F</td>
+ <td>{{ .GetC "Malta" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>G</td>
+ <td>{{ .GetC "Cyprus" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>H</td>
+ <td>{{ .GetC "Slovenia" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>L</td>
+ <td>{{ .GetC "Finland" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>M</td>
+ <td>{{ .GetC "Portugal" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>N</td>
+ <td>{{ .GetC "Austria" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>P</td>
+ <td>{{ .GetC "Netherlands" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>S</td>
+ <td>{{ .GetC "Italy" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>T</td>
+ <td>{{ .GetC "Ireland" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>U</td>
+ <td>{{ .GetC "France" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>V</td>
+ <td>{{ .GetC "Spain" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>X</td>
+ <td>{{ .GetC "Germany" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>Y</td>
+ <td>{{ .GetC "Greece" "Place Name" }}</td>
+ </tr>
+ <tr>
+ <td>Z</td>
+ <td>{{ .GetC "Belgium" "Place Name" }}</td>
+ </tr>
+ </tbody>
+ </table>
+
+ <p>
+ {{ .Get "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." }}
+ </p>
+
+ <div class="overflow-auto">
+ <table class="striped">
+ <thead>
+ <tr>
+ <th>{{ .GetC "Code" "Header/Label" }}</th>
+ <th>{{ .GetC "Country" "Header/Label" }}</th>
+ <th>
+ {{ .GetC "Printer" "Header/Label" }}<br>
+ <span class="translation">
+ {{ .GetC "Local Names" "Header/Label" }}
+ </span>
+ </th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>D</td>
+ <td>{{ .GetC "Finland" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "SETEC" "Company Name" | toString)
+ (tuple "" "SETEC") }}
+ </tr>
+ <tr>
+ <td>E</td>
+ <td>{{ .GetC "France" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Oberthur" "Company Name" | toString)
+ (tuple "" "Oberthur") }}
+ </tr>
+ <tr>
+ <td>F</td>
+ <td>{{ .GetC "Austria" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Austrian Banknote and Security Printing" "Company Name" | toString)
+ (tuple "de" "Oesterreichische Banknoten- und Sicherheitsdruck") }}
+ </tr>
+ <tr>
+ <td>G</td>
+ <td>{{ .GetC "Netherlands" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Royal Joh. Enschedé" "Company Name" | toString)
+ (tuple "nl" "Koninklijke Joh. Enschedé") }}
+ </tr>
+ <tr>
+ <td>H</td>
+ <td>{{ .GetC "United Kingdom" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "De La Rue" "Company Name" | toString)
+ (tuple "" "De La Rue") }}
+ </tr>
+ <tr>
+ <td>J</td>
+ <td>{{ .GetC "Italy" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Bank of Italy" "Company Name" | toString)
+ (tuple "it" "Banca d’Italia") }}
+ </tr>
+ <tr>
+ <td>K</td>
+ <td>{{ .GetC "Ireland" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Central Bank of Ireland" "Company Name" | toString)
+ (tuple "ga" "Banc Ceannais na hÉireann")
+ (tuple "en" "Central Bank of Ireland") }}
+ </tr>
+ <tr>
+ <td>L</td>
+ <td>{{ .GetC "France" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Bank of France" "Company Name" | toString)
+ (tuple "fr" "Banque du France") }}
+ </tr>
+ <tr>
+ <td>M</td>
+ <td>{{ .GetC "Spain" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Royal Mint of Spain" "Company Name" | toString)
+ (tuple "es" "Fábrica Nacional de Moneda y Timbre") }}
+ </tr>
+ <tr>
+ <td>N</td>
+ <td>{{ .GetC "Greece" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Bank of Greece" "Company Name" | toString)
+ (tuple "gr" "Τράπεζα της Ελλάδος") }}
+ </tr>
+ <tr>
+ <td>P</td>
+ <td>{{ .GetC "Germany" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Giesecke+Devrient" "Company Name" | toString)
+ (tuple "de" "Giesecke+Devrient") }}
+ </tr>
+ <tr>
+ <td>R</td>
+ <td>{{ .GetC "Germany" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Federal Printing Office" "Company Name" | toString)
+ (tuple "de" "Bundesdruckerei") }}
+ </tr>
+ <tr>
+ <td>T</td>
+ <td>{{ .GetC "Belgium" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "National Bank of Belgium" "Company Name" | toString)
+ (tuple "nl" "Nationale Bank van België")
+ (tuple "fr" "Banque nationale de Belgique")
+ (tuple "de" "Belgische Nationalbank") }}
+ </tr>
+ <tr>
+ <td>U</td>
+ <td>{{ .GetC "Portugal" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Valora S.A." "Company Name" | toString)
+ (tuple "" "Valora S.A.") }}
+ </tr>
+ </tbody>
+ </table>
+ </div>
+
+
+ <h2>{{ .Get "Europa Series" }}</h2>
+ <p>
+ {{ .Get "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." }}
+ </p>
+
+ <div class="overflow-auto">
+ <table class="striped">
+ <thead>
+ <tr>
+ <th>{{ .GetC "Code" "Header/Label" }}</th>
+ <th>{{ .GetC "Country" "Header/Label" }}</th>
+ <th>
+ {{ .GetC "Printer" "Header/Label" }}<br>
+ <span class="translation">
+ {{ .GetC "Local Names" "Header/Label" }}
+ </span>
+ </th>
+ </tr>
+ </thead>
+ <tr>
+ <td>E</td>
+ <td>{{ .GetC "France" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Oberthur" "Company Name" | toString)
+ (tuple "" "Oberthur") }}
+ </tr>
+ <tr>
+ <td>F</td>
+ <td>{{ .GetC "Bulgaria" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Oberthur Fiduciaire AD" "Company Name" | toString)
+ (tuple "" "Oberthur Fiduciaire AD") }}
+ </tr>
+ <tr>
+ <td>M</td>
+ <td>{{ .GetC "Portugal" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Valora S.A." "Company Name" | toString)
+ (tuple "" "Valora S.A.") }}
+ </tr>
+ <tr>
+ <td>N</td>
+ <td>{{ .GetC "Austria" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Austrian Banknote and Security Printing" "Company Name" | toString)
+ (tuple "de" "Oesterreichische Banknoten- und Sicherheitsdruck") }}
+ </tr>
+ <tr>
+ <td>P</td>
+ <td>{{ .GetC "Netherlands" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Royal Joh. Enschedé" "Company Name" | toString)
+ (tuple "nl" "Koninklijke Joh. Enschedé") }}
+ </tr>
+ <tr>
+ <td>R</td>
+ <td>{{ .GetC "Germany" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Federal Printing Office" "Company Name" | toString)
+ (tuple "de" "Bundesdruckerei") }}
+ </tr>
+ <tr>
+ <td>S</td>
+ <td>{{ .GetC "Italy" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Bank of Italy" "Company Name" | toString)
+ (tuple "it" "Banca d’Italia") }}
+ </tr>
+ <tr>
+ <td>T</td>
+ <td>{{ .GetC "Ireland" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Central Bank of Ireland" "Company Name" | toString)
+ (tuple "ga" "Banc Ceannais na hÉireann")
+ (tuple "en" "Central Bank of Ireland") }}
+ </tr>
+ <tr>
+ <td>U</td>
+ <td>{{ .GetC "France" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Bank of France" "Company Name" | toString)
+ (tuple "fr" "Banque du France") }}
+ </tr>
+ <tr>
+ <td>V</td>
+ <td>{{ .GetC "Spain" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Royal Mint of Spain" "Company Name" | toString)
+ (tuple "es" "Fábrica Nacional de Moneda y Timbre") }}
+ </tr>
+ <tr>
+ <td>W</td>
+ <td>{{ .GetC "Germany" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Giesecke+Devrient Leipzig" "Company Name" | toString)
+ (tuple "de" "Giesecke+Devrient Leipzig") }}
+ </tr>
+ <tr>
+ <td>X</td>
+ <td>{{ .GetC "Germany" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Giesecke+Devrient Munich" "Company Name" | toString)
+ (tuple "de" "Giesecke+Devrient München") }}
+ </tr>
+ <tr>
+ <td>Y</td>
+ <td>{{ .GetC "Greece" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "Bank of Greece" "Company Name" | toString)
+ (tuple "gr" "Τράπεζα της Ελλάδος") }}
+ </tr>
+ <tr>
+ <td>Z</td>
+ <td>{{ .GetC "Belgium" "Place Name" }}</td>
+ {{ withTranslations "td"
+ (.GetC "National Bank of Belgium" "Company Name" | toString)
+ (tuple "nl" "Nationale Bank van België")
+ (tuple "fr" "Banque nationale de Belgique")
+ (tuple "de" "Belgische Nationalbank") }}
+ </tr>
+ </table>
+ </div>
+</main>
+{{ end }}
+
+{{ define "banknotes/codes/code-pos" }}
+{{ $p := (index . 0) }}
+{{ $d := (index . 1) }}
+{{ $args := (map "N" $d) }}
+<details name="printer-codes-1">
+ {{/* TRANSLATORS: As in ‘5 Euro Banknote’ */}}
+ <summary>{{ $p.GetN "{N} Euro" "{N} Euro" $d $args }}</summary>
+ <div class="design-container">
+ <img
+ src={{ printf "/codes/%s-%03d.jpg" (index . 2) $d }}
+ alt={{ $p.GetN "Printer code on a {N} euro bill" "Printer code on a {N} euro bill" $d $args }}
+ >
+ </div>
+</details>
+{{ end }} \ No newline at end of file
diff --git a/src/templates/banknotes.html.tmpl b/src/templates/banknotes.html.tmpl
new file mode 100644
index 0000000..8a50dfa
--- /dev/null
+++ b/src/templates/banknotes.html.tmpl
@@ -0,0 +1,52 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+
+<style>
+ #sections {
+ --button-min-width: 40ch;
+
+ article {
+ min-height: 100%;
+ }
+ }
+</style>
+{{ end }}
+
+{{ define "content" }}
+<header class="container">
+ {{ template "navbar" . }}
+ <h1>{{ .Get "Euro Banknotes" }}</h1>
+</header>
+<main class="container">
+ <p>
+ {{ .Get "On this section of the site you can find everything there is to know about the banknotes of the Eurozone." }}
+ </p>
+ <hr>
+ <div id="sections" class="button-grid">
+ <a class="no-deco" href="/banknotes/designs">
+ <article>
+ <header>
+ <h3>{{ .Get "Designs" }}</h3>
+ </header>
+ {{ .Get "View the different Euro banknote designs" }}
+ </article>
+ </a>
+ <a class="no-deco" href="/banknotes/codes">
+ <article>
+ <header>
+ <h3>{{ .Get "Location Codes" }}</h3>
+ </header>
+ {{ .Get "Find out where your notes were printed" }}
+ </article>
+ </a>
+ <a class="no-deco" href="/banknotes/test">
+ <article>
+ <header>
+ <h3>{{ .Get "Test Notes" }}</h3>
+ </header>
+ {{ .Get "Learn about the special test notes" }}
+ </article>
+ </a>
+ </div>
+</main>
+{{ end }} \ No newline at end of file
diff --git a/src/templates/coins-designs-ad.html.tmpl b/src/templates/coins-designs-ad.html.tmpl
index c42930a..cc68a91 100644
--- a/src/templates/coins-designs-ad.html.tmpl
+++ b/src/templates/coins-designs-ad.html.tmpl
@@ -1,91 +1,60 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+{{ end }}
+
{{ define "content" }}
<header>
{{ template "navbar" . }}
- <h1>{{ .T "Andorran Euro Coin Designs" }}</h1>
+ <h1>{{ .Get "Andorran Euro Coin Designs" }}</h1>
</header>
<main>
<div class="design-container">
- <img alt="Andorran 1 euro cent coin" src="/designs/ad-001.avif" />
- <img alt="Andorran 50 euro cent coin" src="/designs/ad-050.avif" />
+ <img alt="{{ .Get `Andorran €0.01 coin` }}" src="/designs/ad-001-1.avif" />
+ <img alt="{{ .Get `Andorran €0.50 coin` }}" src="/designs/ad-050-1.avif" />
</div>
<div class="design-container">
- <img alt="Andorran 1 euro coin" src="/designs/ad-100.avif" />
- <img alt="Andorran 2 euro coin" src="/designs/ad-200.avif" />
+ <img alt="{{ .Get `Andorran €1 coin` }}" src="/designs/ad-100-1.avif" />
+ <img alt="{{ .Get `Andorran €2 coin` }}" src="/designs/ad-200-1.avif" />
</div>
<p>
- {{ .T `
- 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:
- ` }}
+ {{ .Get "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:" }}
</p>
<dl>
- <dt>{{ .T "%s, %s, and %s"
- (.Printer.M 0.01)
- (.Printer.M 0.02)
- (.Printer.M 0.05) }}</dt>
- <dd>{{ .T "Andorran landscapes, nature, fauna, and flora" }}</dd>
- <dt>{{ .T "%s, %s, and %s"
- (.Printer.M 0.10)
- (.Printer.M 0.20)
- (.Printer.M 0.50) }}</dt>
- <dd>{{ .T "Andorra’s Romanesque art" }}</dd>
- <dt>{{ .Printer.M 1.00 }}</dt>
- <dd>{{ .T "Casa de la Vall" }}</dd>
+ <dt>{{ .Get "€0.01, €0.02 and €0.05" }}</dt>
+ <dd>{{ .Get "Andorran landscapes, nature, fauna and flora" }}</dd>
+ <dt>{{ .Get "€0.10, €0.20 and €0.50" }}</dt>
+ <dd>{{ .Get "Andorra’s Romanesque art" }}</dd>
+ <dt>{{ .Printer.Ftom 1 }}</dt>
+ <dd>{{ .Get "Casa de la Vall" }}</dd>
</dl>
+ <!-- TODO: Can we find the other submissions? -->
<p>
- {{ .T `
- 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.
- ` }}
+ {{ .Get "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 name of the Principality (‘ANDORRA’) along the outer portion of the design with the year of issue written underneath." }}
</p>
<p>
- {{ .T `
- 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.
- ` }}
+ {{ .Get "The Andorran 1c, 2c and 5c 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." }}
</p>
+
+ <div class="design-container">
+ <figure>
+ <img
+ alt="{{ .Get `Rejected Andorran design` }}"
+ src="/designs/ad-rejected.jpg"
+ style="width: unset;"
+ />
+ <figcaption>{{ .Get "The rejected Andorran design" }}</figcaption>
+ </figure>
+ </div>
+
<p>
- <!-- TODO: Can we find a photo of the rejected design with a source? -->
- {{ .T `
- 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.
- ` }}
+ {{ .Get "The Andorran 10c, 20c and 50c coins 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." }}
</p>
<p>
- {{ .T `
- 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.
- ` }}
+ {{ .Get "The €1 coin features the Casa 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." }}
</p>
<p>
- {{ .T `
- 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:
- ` }}
- <ul>
- <li>The arms of the Bishop of Urgell</li>
- <li>The arms of the Count of Foix</li>
- <li>The arms of Catalonia</li>
- <li>The arms of the Viscounts of Béarn</li>
- </ul>
- {{ .T `
- The bottom of the coat of arms has the motto ‘%sVIRTVS VNITA
- FORTIOR%s’ (‘UNITED VIRTUE IS STRONGER’).
- ` `<span lang="la">` `</span>` }}
+ {{ .Get "Finally, the €2 coin features the {Link:L}coat of arms of Andorra{-:E}."
+ (map "Link" (.Printer.Wikipedia "Coat of arms of Andorra")) }}
</p>
</main>
{{ end }} \ No newline at end of file
diff --git a/src/templates/coins-designs-at.html.tmpl b/src/templates/coins-designs-at.html.tmpl
index 9f87d5f..da9cd67 100644
--- a/src/templates/coins-designs-at.html.tmpl
+++ b/src/templates/coins-designs-at.html.tmpl
@@ -1,59 +1,40 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+{{ end }}
+
{{ define "content" }}
<header>
{{ template "navbar" . }}
- <h1>{{ .T "Austrian Euro Coin Designs" }}</h1>
+ <h1>{{ .Get "Austrian Euro Coin Designs" }}</h1>
</header>
<main>
<p>
- {{ .T `
- The Austrian euro coins can be grouped into three different themes.
- The bronze coins feature Austrian flowers, the gold coins feature
- Austrian architecture, and the bimetalic coins feature famous
- Austrian people. All coins also feature an Austrian flag as well
- as the coins denomination. These coins together with the %sGreek
- euro coins%s are the only coins that feature the denomination on both
- the common- and national-sides of the coin.`
- `<a href="gr">` `</a>` | safe
- }}
+ {{ .Get "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."
+ (map "Link" "gr") }}
</p>
+
<div class="design-container">
- <img alt="Austrian 1 euro cent coin" src="/designs/at-001.avif">
- <img alt="Austrian 2 euro cent coin" src="/designs/at-002.avif">
- <img alt="Austrian 5 euro cent coin" src="/designs/at-005.avif">
+ <img alt="{{ .Get `Austrian €0.01 coin` }}" src="/designs/at-001-1.avif">
+ <img alt="{{ .Get `Austrian €0.02 coin` }}" src="/designs/at-002-1.avif">
+ <img alt="{{ .Get `Austrian €0.05 coin` }}" src="/designs/at-005-1.avif">
</div>
<p>
- {{ .T `
- 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.
- ` }}
+ {{ .Get "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." }}
</p>
<div class="design-container">
- <img alt="Austrian 10 euro cent coin" src="/designs/at-010.avif">
- <img alt="Austrian 20 euro cent coin" src="/designs/at-020.avif">
- <img alt="Austrian 50 euro cent coin" src="/designs/at-050.avif">
+ <img alt="{{ .Get `Austrian €0.10 coin` }}" src="/designs/at-010-1.avif">
+ <img alt="{{ .Get `Austrian €0.20 coin` }}" src="/designs/at-020-1.avif">
+ <img alt="{{ .Get `Austrian €0.50 coin` }}" src="/designs/at-050-1.avif">
</div>
<p>
- {{ .T `
- 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.
- ` }}
+ {{ .Get "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. Finally, the €0.50 coin features the Secession Building: an exhibition hall in the Art Nouveau style." }}
</p>
<div class="design-container">
- <img alt="Austrian 1 euro coin" src="/designs/at-100.avif">
- <img alt="Austrian 2 euro coin" src="/designs/at-200.avif">
+ <img alt="{{ .Get `Austrian €1 coin` }}" src="/designs/at-100-1.avif">
+ <img alt="{{ .Get `Austrian €2 coin` }}" src="/designs/at-200-1.avif">
</div>
<p>
- {{ .T `
- 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.
- ` }}
+ {{ .Get "The two bimetallic coins feature the busts of the musical composer Wolfgang Amadeus Mozart on the €1 coin, and the Austrian pacifist and Nobel Peace Prize winner Bertha von Suttner on the €2 coin." }}
</p>
</main>
-{{ end }}
+{{ end }} \ No newline at end of file
diff --git a/src/templates/coins-designs-be.html.tmpl b/src/templates/coins-designs-be.html.tmpl
index 22f533f..85746e6 100644
--- a/src/templates/coins-designs-be.html.tmpl
+++ b/src/templates/coins-designs-be.html.tmpl
@@ -1,47 +1,63 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+
+<style>
+ .portrait {
+ width: 30%;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+
+ img {
+ width: 100%;
+ }
+ }
+</style>
+{{ end }}
+
{{ define "content" }}
<header>
{{ template "navbar" . }}
- <h1>{{ .T "Belgian Euro Coin Designs" }}</h1>
+ <h1>{{ .Get "Belgian Euro Coin Designs" }}</h1>
</header>
<main>
<div class="design-container">
- <img alt="Belgian 1 euro coin" src="/designs/be-100-albert-1.avif">
- <img alt="Belgian 1 euro coin" src="/designs/be-100-albert-2.avif">
- <img alt="Belgian 1 euro coin" src="/designs/be-100-philippe.avif">
+ <img
+ alt="{{ .Get `Belgian €1 coin (King Albert; Series 1)` }}"
+ src="/designs/be-100-1.avif"
+ >
+ <img
+ alt="{{ .Get `Belgian €1 coin (King Albert; Series 2)` }}"
+ src="/designs/be-100-2.avif"
+ >
+ <img
+ alt="{{ .Get `Belgian €1 coin (King Philippe)` }}"
+ src="/designs/be-100-3.avif"
+ >
</div>
<p>
- {{ .T `
- Since 1999 Belgium has released three series of euro coins,
- which each series having a single design repeated on all
- denominations. Starting in 1999 the Belgian euro coins
- featured the portrait of King Albert II with the %sroyal
- monogram%s in the outer ring of the coins.
- `
- `<a
- target="_blank"
- href="https://www.wikipedia.org/wiki/Royal_cypher"
- >`
- `</a>`
- }}
+ {{ .Get "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."
+ (map "Link" (.Printer.Wikipedia "Royal cypher")) }}
</p>
+
+ <figure>
+ <div class="design-container">
+ <img
+ alt="{{ .Get `2008 portrait of King Albert II` }}"
+ src="/designs/be-portraits/2008.avif"
+ >
+ </div>
+ <figcaption>
+ {{ .Get "2008 portrait of King Albert II" }}<br>
+ <small>© brismike (<a target="_blank" href="https://creativecommons.org/licenses/by-nc/4.0/">CC BY-NC</a>)</small>
+ </figcaption>
+ </figure>
+
<p>
- {{ .T `
- 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.
- ` }}
+ {{ .Get "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. The 2008 redesign also saw the use of a slightly modified portrait of the King, but this design change was reverted in 2009." }}
</p>
<p>
- {{ .T `
- 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.
- ` }}
+ {{ .Get "After his accession to the throne in 2014, Belgium switched to a third series of coins 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 from the prior series to face right instead of left." }}
</p>
</main>
-{{ end }}
+{{ end }} \ No newline at end of file
diff --git a/src/templates/coins-designs-de.html.tmpl b/src/templates/coins-designs-de.html.tmpl
new file mode 100644
index 0000000..702b5fc
--- /dev/null
+++ b/src/templates/coins-designs-de.html.tmpl
@@ -0,0 +1,68 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+{{ end }}
+
+{{ define "content" }}
+<header>
+ {{ template "navbar" . }}
+ <h1>{{ .Get "German Euro Coin Designs" }}</h1>
+</header>
+<main>
+ {{ $deargs := (map "GermanStart" `<span lang="de"><em>` "GermanEnd" "em,span") }}
+
+ <div class="design-container">
+ <img alt="{{ .Get `German €0.01 coin` }}" src="/designs/de-001-1.avif">
+ <img alt="{{ .Get `German €0.10 coin` }}" src="/designs/de-010-1.avif">
+ <img alt="{{ .Get `German €1 coin` }}" src="/designs/de-100-1.avif">
+ </div>
+ <p>
+ {{ .Get "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." }}
+ </p>
+
+ <table>
+ <thead>
+ <tr>
+ <th>{{ .Get "City" }}</th>
+ <th>{{ .Get "Mintmark" }}</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{ .GetC "Berlin" "Place Name" }}</td>
+ <td>A</td>
+ </tr>
+ <tr>
+ <td>{{ .GetC "Munich" "Place Name" }}</td>
+ <td>D</td>
+ </tr>
+ <tr>
+ <td>{{ .GetC "Stuttgart" "Place Name" }}</td>
+ <td>F</td>
+ </tr>
+ <tr>
+ <td>{{ .GetC "Karlsruhe" "Place Name" }}</td>
+ <td>G</td>
+ </tr>
+ <tr>
+ <td>{{ .GetC "Hamburg" "Place Name" }}</td>
+ <td>J</td>
+ </tr>
+ </tbody>
+ </table>
+
+ <p>
+ {{ .Get "The 1c, 2c and 5c coins display an oak twig similar to that found on the former Pfennig coins of the German Mark (Germany’s pre-Euro currency). The mint mark and year are located on the left- and right-hand sides of the oak twig’s stem." }}
+ </p>
+ <p>
+ {{ .Get "The 10c, 20c and 50c coins feature the Brandenburg Gate, a symbol of Berlin and of Germany as a whole, but also a symbol of German division and unity. The mint mark is located below the year." }}
+ </p>
+ <p>
+ {{ .Get "The €1 and €2 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 {Link:L}German coat of arms{-:E} — and represents strength and freedom. The mint mark is located to the right of the year."
+ (map "Link" (.Printer.Wikipedia "Coat of arms of Germany")) $deargs }}
+ </p>
+ <p>
+ <!-- TODO: Get a picture of the edge-inscription -->
+ {{ .Get "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’)." $deargs }}
+ </p>
+</main>
+{{ end }} \ No newline at end of file
diff --git a/src/templates/coins-designs-ee.html.tmpl b/src/templates/coins-designs-ee.html.tmpl
new file mode 100644
index 0000000..ee648db
--- /dev/null
+++ b/src/templates/coins-designs-ee.html.tmpl
@@ -0,0 +1,192 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+
+<style>
+ @media (max-width: 500px) {
+ #ee-vote-table {
+ tr:first-child td:first-child {
+ border-top: var(--border-width) solid var(--table-border-color);
+ }
+
+ thead, tfoot {
+ display: none;
+ }
+ tbody, tr, td {
+ display: block;
+ }
+
+ tr {
+ &:nth-child(even) {
+ background-color: var(--table-row-stripped-background-color);
+ }
+
+ td:not(:first-child) {
+ padding-top: calc(var(--spacing) / 4);
+ }
+ td:not(:last-child) {
+ padding-bottom: 0;
+ border-bottom: none;
+ }
+ }
+
+ td {
+ padding-left: 50%;
+ position: relative;
+ text-align: left;
+
+ }
+
+ :is(td, span)::before {
+ content: attr(data-label);
+ position: absolute;
+ left: 0;
+ width: 50%;
+ padding-left: 2ch;
+ font-weight: bold;
+ }
+ }
+ }
+</style>
+{{ end }}
+
+{{ define "content" }}
+<header>
+ {{ template "navbar" . }}
+ <h1>{{ .Get "Estonian Euro Coin Designs" }}</h1>
+</header>
+<main>
+ <div class="design-container">
+ <img
+ alt="{{ .Get `Estonian €1 coin` }}"
+ src="/designs/ee-100-1.avif"
+ >
+ </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 {Link:L}Eurovision{-:E}-style public televote where it competed and won against 9 other designs."
+ (map "Link" (.Printer.Wikipedia "Eurovision Song Contest")) }}
+ </p>
+ <p>
+ {{ .Get "In June 2004 a public design competition was announced with a deadline for the 19th of October. A total of 134 designs were submitted by the deadline and of these submissions, 10 were picked by a jury to partake in the 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 id="ee-vote-table">
+ <thead>
+ <tr>
+ <th data-numeric style="width: 1%">{{ .Get "Position" }}</th>
+ <th>
+ {{ .Get "Name" }}<br>
+ <span class="translation">{{ .Get "Translation" }}</span>
+ </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>" }}
+ {{ $tag := printf `td data-label="%s"` (.Get "Name") }}
+ {{ $attr := printf `data-label="%s"` (.Get "Translation") }}
+ <tr>
+ <td data-label="{{ .Get `Position` }}" data-numeric>1</td>
+ {{/* TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script */}}
+ {{ withTranslation $tag "et" "Hara 2"
+ (.Get "Hara 2") $attr }}
+ <td data-label="{{ .Get `Author(s)` }}">{{ .Get "Lembit Lõhmus" }}</td>
+ <td data-label="{{ .Get `Votes` }}" data-numeric>{{ .Printer.Itoa 12482 }}</td>
+ <td data-label="{{ .Get `Votes (%)` }}" data-numeric>{{ .Printer.Ftop 27.46 }}</td>
+ </tr>
+ <tr>
+ <td data-label="{{ .Get `Position` }}" data-numeric>2</td>
+ {{ withTranslation $tag "et" "Järjepidevus"
+ (.Get "Consistency") $attr }}
+ <td data-label="{{ .Get `Author(s)` }}">{{ .Get "Tiit Jürna" }}</td>
+ <td data-label="{{ .Get `Votes` }}" data-numeric>{{ .Printer.Itoa 7477 }}</td>
+ <td data-label="{{ .Get `Votes (%)` }}" data-numeric>{{ .Printer.Ftop 16.45 }}</td>
+ </tr>
+ <tr>
+ <td data-label="{{ .Get `Position` }}" data-numeric>3</td>
+ {{ withTranslation $tag "la" "In corpore"
+ (.Get "In the Body") $attr }}
+ <td data-label="{{ .Get `Author(s)` }}">{{ .Get "Jaan Meristo" }}</td>
+ <td data-label="{{ .Get `Votes` }}" data-numeric>{{ .Printer.Itoa 7284 }}</td>
+ <td data-label="{{ .Get `Votes (%)` }}" data-numeric>{{ .Printer.Ftop 16.03 }}</td>
+ </tr>
+ <tr>
+ <td data-label="{{ .Get `Position` }}" data-numeric>4</td>
+ {{/* TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script */}}
+ {{ withTranslation $tag "et" "Tomson 5791"
+ (.Get "Tomson 5791") $attr }}
+ <td data-label="{{ .Get `Author(s)` }}">{{ .Get "Taavi Torim" }}</td>
+ <td data-label="{{ .Get `Votes` }}" data-numeric>{{ .Printer.Itoa 6219 }}</td>
+ <td data-label="{{ .Get `Votes (%)` }}" data-numeric>{{ .Printer.Ftop 13.68 }}</td>
+ </tr>
+ <tr>
+ <td data-label="{{ .Get `Position` }}" data-numeric>5</td>
+ {{/* TRANSLATORS: Estonian Translators: ‘Estonian’ as in the language, not the nationality */}}
+ {{ withTranslation $tag "et" "Eesti keel"
+ (.GetC "Estonian" "Coin Design") $attr }}
+ <td data-label="{{ .Get `Author(s)` }}">{{ .Get "Jaak Peep, Villem Valme" }}</td>
+ <td data-label="{{ .Get `Votes` }}" data-numeric>{{ .Printer.Itoa 5997 }}</td>
+ <td data-label="{{ .Get `Votes (%)` }}" data-numeric>{{ .Printer.Ftop 13.19 }}</td>
+ </tr>
+ <tr>
+ <td data-label="{{ .Get `Position` }}" data-numeric>6</td>
+ <td data-label="{{ .Get `Name` }}">261948</td>
+ <td data-label="{{ .Get `Author(s)` }}">{{ .Get "Mai Järmut, Villu Järmut" }}</td>
+ <td data-label="{{ .Get `Votes` }}" data-numeric>{{ .Printer.Itoa 3036 }}</td>
+ <td data-label="{{ .Get `Votes (%)` }}" data-numeric>{{ .Printer.Ftop 6.68 }}</td>
+ </tr>
+ <tr>
+ <td data-label="{{ .Get `Position` }}" data-numeric>7</td>
+ {{ withTranslation $tag "et" "Linnutee"
+ (.Get "Bird Road") $attr }}
+ <td data-label="{{ .Get `Author(s)` }}">{{ .Get "Tiit Jürna" }}</td>
+ <td data-label="{{ .Get `Votes` }}" data-numeric>{{ .Printer.Itoa 1323 }}</td>
+ <td data-label="{{ .Get `Votes (%)` }}" data-numeric>{{ .Printer.Ftop 2.91 }}</td>
+ </tr>
+ <tr>
+ <td data-label="{{ .Get `Position` }}" data-numeric>8</td>
+ {{ withTranslation $tag "et" "Leopardid-2"
+ (.Get "Leopards-2") $attr }}
+ <td data-label="{{ .Get `Author(s)` }}">{{ .Get "Jaarno Ester" }}</td>
+ <td data-label="{{ .Get `Votes` }}" data-numeric>{{ .Printer.Itoa 759 }}</td>
+ <td data-label="{{ .Get `Votes (%)` }}" data-numeric>{{ .Printer.Ftop 1.67 }}</td>
+ </tr>
+ <tr>
+ <td data-label="{{ .Get `Position` }}" data-numeric>9</td>
+ {{/* TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script */}}
+ {{ withTranslation $tag "et" "Nova"
+ (.Get "Nova") $attr }}
+ <td data-label="{{ .Get `Author(s)` }}">{{ .Get "Rene Haljasmäe" }}</td>
+ <td data-label="{{ .Get `Votes` }}" data-numeric>{{ .Printer.Itoa 498 }}</td>
+ <td data-label="{{ .Get `Votes (%)` }}" data-numeric>{{ .Printer.Ftop 1.1 }}</td>
+ </tr>
+ <tr>
+ <td data-label="{{ .Get `Position` }}" data-numeric>10</td>
+ {{ withTranslation $tag "et" "Lill rukkis"
+ (.Get "A Flower in the Rye") $attr }}
+ <td data-label="{{ .Get `Author(s)` }}">{{ .Get "Margus Kadarik" }}</td>
+ <td data-label="{{ .Get `Votes` }}" data-numeric>{{ .Printer.Itoa 378 }}</td>
+ <td data-label="{{ .Get `Votes (%)` }}" data-numeric>{{ .Printer.Ftop 0.83 }}</td>
+ </tr>
+ </tbody>
+ <tfoot>
+ <tr>
+ <th colspan="3">{{ .Get "Total" }}</th>
+ <th data-numeric>{{ .Printer.Itoa 45453 }}</th>
+ <th data-numeric>{{ .Printer.Ftop 100.0 }}</th>
+ </tr>
+ </tfoot>
+ </table>
+</main>
+{{ end }} \ No newline at end of file
diff --git a/src/templates/coins-designs-hr.html.tmpl b/src/templates/coins-designs-hr.html.tmpl
index b6333ba..4175198 100644
--- a/src/templates/coins-designs-hr.html.tmpl
+++ b/src/templates/coins-designs-hr.html.tmpl
@@ -1,83 +1,42 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+{{ end }}
+
{{ define "content" }}
<header>
{{ template "navbar" . }}
- <h1>{{ .T "Croatian Euro Coin Designs" }}</h1>
+ <h1>{{ .Get "Croatian Euro Coin Designs" }}</h1>
</header>
<main>
- {{ $croatianStart := `<span lang="hr">` }}
- {{ $croatianEnd := `</span>` }}
-
+ {{ $hrargs := (map "CroatianStart" `<span lang="hr"><em>` "CroatianEnd" "em,span") }}
<div class="design-container">
- <img alt="Croatian 1 euro cent coin" src="/designs/hr-001.avif" />
- <img alt="Croatian 50 euro cent coin" src="/designs/hr-050.avif" />
+ <img alt="{{ .Get `Croatian €0.01 coin` }}" src="/designs/hr-001-1.avif" />
+ <img alt="{{ .Get `Croatian €0.50 coin` }}" src="/designs/hr-050-1.avif" />
</div>
<div class="design-container">
- <img alt="Croatian 1 euro coin" src="/designs/hr-100.avif" />
- <img alt="Croatian 2 euro coin" src="/designs/hr-200.avif" />
+ <img alt="{{ .Get `Croatian €1 coin` }}" src="/designs/hr-100-1.avif" />
+ <img alt="{{ .Get `Croatian €2 coin` }}" src="/designs/hr-200-1.avif" />
</div>
<p>
- {{ .T `
- The Croatian euro coins feature four different themes, with
- each design featuring the Croatian checkerboard and the
- countries name in Croatian (‘%sHRVATSKA%s’). All designs
- were selected after voting in a public design competition.
- ` $croatianStart $croatianEnd | safe }}
+ {{ .Get "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."
+ $hrargs }}
</p>
<p>
- {{ .T `
- The 1-, 2-, and 5 euro cent coins were designed by Maja
- Škripelj and feature a motif of the letters ‘HR’ in the
- %sGlagolitic script%s — an old Slavic script that saw use in
- Croatia up until the 19th century — with ‘HR’ representing
- Croatia’s country code.`
- `<a
- target="_blank"
- href="https://www.wikipedia.org/wiki/Glagolitic_script"
- >`
- `</a>` | safe
- }}
+ {{ .Get "The 1c, 2c and 5c 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)."
+ (map "Link" (.Printer.Wikipedia "Glagolitic script")) }}
</p>
<p>
- {{ .T `
- The 10-, 20-, and 50 euro cent coins were designed by Ivan
- Domagoj Račić and feature the portrait of the inventor and
- engineer %sNikola Tesla%s. The design of these coins caused
- controversy when they were first announced with the National
- Bank of Serbia claiming that it would be an appropriation of
- the cultural and scientific heritage of the Serbian people to
- feature the portrait of someone who ‘declared himself to be
- Serbian by origin’.`
- `<a
- target="_blank"
- href="https://www.wikipedia.org/wiki/Nikola_Tesla"
- >`
- `</a>` | safe
- }}
+ {{ .Get "The 10c, 20c and 50c 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’."
+ (map "Link" (.Printer.Wikipedia "Nikola Tesla")) }}
</p>
<p>
- {{ .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 (‘%skuna
- zlatica%s’ in Croatian).
- ` $croatianStart $croatianEnd | safe }}
+ {{ .Get "The €1 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)."
+ $hrargs }}
</p>
<p>
<!-- TODO: Include a photo of the edge inscription -->
- {{ .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 ‘%sO LIJEPA O DRAGA O SLATKA SLOBODO%s’ (‘OH BEAUTIFUL,
- OH DEAR, OH SWEET FREEDOM’) which is a line from the play
- %sDubravka%s by Ivan Gundulić.
- ` $croatianStart $croatianEnd
- `<a
- target="_blank"
- href="https://www.wikipedia.org/wiki/Dubravka_(drama)"
- lang="hr"
- >`
- `</a>` | safe }}
+ {{ .Get "The €2 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ć."
+ $hrargs (map "Link" (.Printer.Wikipedia "Dubravka (drama)")) }}
</p>
</main>
-{{ end }}
+{{ end }} \ No newline at end of file
diff --git a/src/templates/coins-designs-nl.html.tmpl b/src/templates/coins-designs-nl.html.tmpl
index 2395480..18f9efe 100644
--- a/src/templates/coins-designs-nl.html.tmpl
+++ b/src/templates/coins-designs-nl.html.tmpl
@@ -1,65 +1,45 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+{{ end }}
+
{{ define "content" }}
<header>
{{ template "navbar" . }}
- <h1>{{ .T "Dutch Euro Coin Designs" }}</h1>
+ <h1>{{ .Get "Dutch Euro Coin Designs" }}</h1>
</header>
<main>
- {{ $dutchStart := `<span lang="nl">` }}
- {{ $dutchEnd := `</span>` }}
+ {{ $nlargs := (map "DutchStart" `<span lang="nl"><em>` "DutchEnd" "em,span") }}
<div class="design-container">
<img
- alt="Dutch 50 euro cent coin (Beatrix)"
- src="/designs/nl-050-beatrix.avif"
+ alt="Dutch €0.50 coin (Queen Beatrix)"
+ src="/designs/nl-050-1.avif"
/>
<img
- alt="Dutch 50 euro cent coin (Willem-Alexander)"
- src="/designs/nl-050-willem-alexander.avif"
+ alt="Dutch €0.50 coin (King Willem-Alexander)"
+ src="/designs/nl-050-2.avif"
/>
</div>
<div class="design-container">
<img
- alt="Dutch 1 euro coin (Beatrix)"
- src="/designs/nl-100-beatrix.avif"
+ alt="Dutch €1 coin (Queen Beatrix)"
+ src="/designs/nl-100-1.avif"
/>
<img
- alt="Dutch 1 euro coin (Willem-Alexander)"
- src="/designs/nl-100-willem-alexander.avif"
+ alt="Dutch €1 coin (King Willem-Alexander)"
+ src="/designs/nl-100-2.avif"
/>
</div>
<p>
- {{ .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 dating back to the earliest coins of the
- Kingdom of the Netherlands.
- ` }}
+ {{ .Get "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." }}
</p>
<p>
<!-- TODO: Get a picture of the edge-inscription -->
- {{ .T `
- Coins featuring both monarchs contain text reading ‘%sBEATRIX
- KONINGIN DER NEDERLANDEN%s’ (‘BEATRIX QUEEN OF THE
- NETHERLANDS’) and ‘%sWillem-Alexander Koning der
- Nederlanden%s’ (‘Willem-Alexander King of the Netherlands’)
- respectively. The €2 coins also feature an edge-inscription
- reading ‘%sGOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆%s’
- (‘GOD ⋆ IS ⋆ WITH ⋆ US ⋆’).
- `
- $dutchStart $dutchEnd
- $dutchStart $dutchEnd
- $dutchStart $dutchEnd | safe }}
+ {{ .Get "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 ⋆’)."
+ $nlargs }}
</p>
<p>
- {{ .T `
- The €1 and €2 coins featuring King Willem-Alexander were minted
- with a much lower %srelief%s than most euro coins of the same
- denomination. As a result it is not uncommon for these coins to
- appear worn after little use in circulation.`
- `<a href="/jargon#relief">` `</a>` | safe
- }}
+ {{ .Get "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."
+ (map "Link" "/jargon#relief") }}
</p>
</main>
-{{ end }}
+{{ end }} \ No newline at end of file
diff --git a/src/templates/coins-designs.html.tmpl b/src/templates/coins-designs.html.tmpl
index 05ff440..33b0841 100644
--- a/src/templates/coins-designs.html.tmpl
+++ b/src/templates/coins-designs.html.tmpl
@@ -1,31 +1,47 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+
+<style>
+ .country-grid {
+ --button-min-width: 20ch;
+
+ a {
+ display: flex;
+ padding-block: 1ch;
+
+ > :first-child {
+ text-align: left;
+ font-weight: bold;
+ width: calc(var(--pico-form-element-spacing-horizontal) + 2ch);
+ }
+ }
+ }
+</style>
+{{ end }}
+
{{ define "content" }}
-<header>
+<header class="container">
{{ template "navbar" . }}
- <h1>{{ .T "Euro Coin Designs" }}</h1>
+ <h1>{{ .Get "Euro Coin Designs" }}</h1>
</header>
-<main>
+<main class="container">
<p>
- {{ .T `
- Here you’ll be able to view all the coin designs for each country
- in the Eurozone. This section of the site doesn’t include minor
- varieties such as different mintmarks or errors; those are on the
- %svarieties%s page.`
- `<a href="/coins/varieties">` `</a>` | safe
- }}
+ {{ .Get "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."
+ (map "Link" "/coins/varieties") }}
</p>
<hr />
- <div class="country-grid">
- {{ $p := .Printer }}
+ <div class="button-grid country-grid">
{{ range .Countries }}
<a
class="outline"
- data-code={{ toUpper .Code }}
+ data-code="{{ toUpper .Code }}"
role="button"
- href=/coins/designs/{{ .Code }}
+ href="/coins/designs/{{ .Code }}"
>
- {{ $p.T .Name }}
+ <span>{{ .Code | toUpper }}</span>
+ <span>{{ .Name }}</span>
</a>
{{ end }}
</div>
</main>
-{{ end }} \ No newline at end of file
+{{ end }}
diff --git a/src/templates/coins-mintages.html.tmpl b/src/templates/coins-mintages.html.tmpl
index 8c60248..e5fa5f1 100644
--- a/src/templates/coins-mintages.html.tmpl
+++ b/src/templates/coins-mintages.html.tmpl
@@ -1,160 +1,300 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+
+<style>
+ .mintage-table {
+ white-space: nowrap;
+
+ tr :is(th, td):first-child {
+ position: sticky;
+ left: 0;
+ }
+
+ .striped :is(th, td) {
+ background-color: var(--pico-table-row-stripped-background-color);
+ }
+ }
+
+ label[for="country-dd"] { display: none; }
+ label[for="year-dd"] { display: none; }
+
+ form {
+ &:has(#country:checked) {
+ label[for="country-dd"] { display: unset; }
+ }
+ &:has(#year:checked) {
+ label[for="year-dd"] { display: unset; }
+ }
+ }
+</style>
+{{ end }}
+
{{ define "content" }}
-<header>
+<header class="container">
{{ template "navbar" . }}
- <h1>{{ .T "Euro Coin Mintages" }}</h1>
+ <h1>{{ .Get "Euro Coin Mintages" }}</h1>
</header>
-<main>
+<main class="container">
<p>
- {{ .T `
- 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.
- ` }}
+ {{ .Get "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." }}
</p>
- <hr />
+ <hr>
{{ if eq .Code "nl" }}
- <h2>{{ .T "Additional Notes" }}</h2>
- <ul>
- <li>
- {{ .T `
- Most coins from the years 2003–2016 are listed as NIFC coins
- while other popular sources such as Numista claim they were
- minted for circulation. For more information on why others are
- wrong, %sclick here%s.`
- `<a href="#TODO">` `</a>` | safe
- }}
- </li>
- <li>
- {{ .T `
- In 2003 Numista calculated a total of %d coins issued for coin
- sets per denomination. Our own calculations found only
- %d. Numista also forgot to include the many hundred thousand
- coins from the coin roll sets that were produced.`
- 217503 177003
- }}
- </li>
- </ul>
+ <h2>{{ .Get "Additional Notes" }}</h2>
+ <ul>
+ <li>
+ {{ .Get "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}."
+ (map "Link" "#TODO") }}
+ </li>
+ </ul>
{{ end }}
- <section>
- <form>
- <div class="grid">
- <label for="country-dd">
- {{ .T "Country" }}
- <select id="country-dd" name="code">
- {{ $code := .Code }}
- {{ range .Countries }}
- <option
- value={{ .Code }}
- {{ if eq .Code $code }}
- selected
- {{ end }}
- >
- {{ .Name }}
- </option>
- {{ end }}
- </select>
- </label>
- <fieldset>
- {{ template "coin-type-radio"
- (tuple .Type "circ" (.T "Circulation Coins")) }}
- {{ template "coin-type-radio"
- (tuple .Type "nifc" (.T "NIFC / BU Sets")) }}
- {{ template "coin-type-radio"
- (tuple .Type "proof" (.T "Proof Coins")) }}
- </fieldset>
- </div>
- <button type="submit">{{ .T "Filter" }}</button>
- </form>
- <figure>
- <figcaption>{{ .T "Standard Issue Coins" }}</figcaption>
- <table class="mintage-table" role="grid">
- <thead>
- <th>{{ .T "Year" }}</th>
- {{ with $p := .Printer }}
- {{ range denoms }}
- <th>{{ $p.M . }}</th>
- {{ end }}
+ <form>
+ <div class="grid">
+ <fieldset>
+ <legend>{{ .GetC "Filter Method" "Header/Label" }}</legend>
+ {{ template "mintages/filter-radio"
+ (tuple .FilterBy "country" (.GetC "Country" "Header/Label")) }}
+ {{ template "mintages/filter-radio"
+ (tuple .FilterBy "year" (.GetC "Year" "Header/Label")) }}
+ </fieldset>
+
+ <label for="country-dd">
+ {{ .GetC "Country" "Header/Label" }}
+ <select id="country-dd" name="country">
+ {{ $code := .Code }}
+ {{ range .Countries }}
+ <option
+ value="{{ .Code }}"
+ {{ if eq .Code $code }}
+ selected
+ {{ end }}
+ >
+ {{ .Name }}
+ </option>
+ {{ end }}
+ </select>
+ </label>
+
+ <label for="year-dd">
+ {{ .GetC "Year" "Header/Label" }}
+ <select id="year-dd" name="year">
+ {{ $year := .Year }}
+ {{ range years }}
+ <option
+ value="{{ . }}"
+ {{ if eq . $year }}
+ selected
+ {{ end }}
+ >
+ {{ . }}
+ </option>
{{ end }}
+ </select>
+ </label>
+
+ <fieldset>
+ {{ template "mintages/coin-type-radio"
+ (tuple .Type "circ" (.Get "Circulation Coins")) }}
+ {{ template "mintages/coin-type-radio"
+ (tuple .Type "nifc" (.Get "NIFC / BU Sets")) }}
+ {{ template "mintages/coin-type-radio"
+ (tuple .Type "proof" (.Get "Proof Coins")) }}
+ </fieldset>
+ </div>
+ <button type="submit">{{ .GetC "Filter" "Header/Label" }}</button>
+ </form>
+
+ {{ if and (eq .FilterBy "country")
+ (gt (len .CountryMintages.Standard) 0) }}
+ <figure>
+ <figcaption>{{ .Get "Standard Issue Coins" }}</figcaption>
+ <div class="overflow-auto">
+ <table class="mintage-table striped" role="grid">
+ <thead>
+ <th>{{ .GetC "Year" "Header/Label" }}</th>
+ <th data-numeric>{{ .Printer.Ftom 0.01 }}</th>
+ <th data-numeric>{{ .Printer.Ftom 0.02 }}</th>
+ <th data-numeric>{{ .Printer.Ftom 0.05 }}</th>
+ <th data-numeric>{{ .Printer.Ftom 0.10 }}</th>
+ <th data-numeric>{{ .Printer.Ftom 0.20 }}</th>
+ <th data-numeric>{{ .Printer.Ftom 0.50 }}</th>
+ <th data-numeric>{{ .Printer.Ftom 1.00 }}</th>
+ <th data-numeric>{{ .Printer.Ftom 2.00 }}</th>
</thead>
<tbody>
{{ $p := .Printer }}
- {{ $type := .Type }}
- {{ range .Mintages.Standard }}
+ {{ range .CountryMintages.Standard }}
<tr>
- <th scope="col">
+ <th scope="row">
{{- .Year -}}
- {{- if ne .Mintmark "" -}}
- &nbsp;<sub><small>{{ .Mintmark }}</small></sub>
+ {{- if .Mintmark.Valid -}}
+ &nbsp;<sub><small>{{ .Mintmark.V }}</small></sub>
{{- end -}}
</th>
- {{ range (index .Mintages (strToCtype $type)) }}
- {{ if eq . -1 }}
- <td>{{ $p.T "Unknown" }}</td>
- {{ else if eq . 0 }}
- <td>—</td>
- {{ else }}
- <td>{{ $p.N . }}</td>
- {{ end }}
- </td>
+ {{ range .Mintages }}
+ {{ template "mintages/mintage-cell" (tuple . $p) }}
{{ end }}
</tr>
{{ end }}
</tbody>
</table>
+ </div>
+ </figure>
+
+ {{ else if and (eq .FilterBy "year")
+ (gt (len .YearMintages.Standard) 0) }}
+
+ <figure>
+ <figcaption>{{ .Get "Standard Issue Coins" }}</figcaption>
+ <div class="overflow-auto">
+ <table class="mintage-table striped" role="grid">
+ <thead>
+ <th>{{ .GetC "Country" "Header/Label" }}</th>
+ <th data-numeric>{{ .Printer.Ftom 0.01 }}</th>
+ <th data-numeric>{{ .Printer.Ftom 0.02 }}</th>
+ <th data-numeric>{{ .Printer.Ftom 0.05 }}</th>
+ <th data-numeric>{{ .Printer.Ftom 0.10 }}</th>
+ <th data-numeric>{{ .Printer.Ftom 0.20 }}</th>
+ <th data-numeric>{{ .Printer.Ftom 0.50 }}</th>
+ <th data-numeric>{{ .Printer.Ftom 1.00 }}</th>
+ <th data-numeric>{{ .Printer.Ftom 2.00 }}</th>
+ </thead>
+ <tbody>
+ {{ $p := .Printer }}
+ {{ range .YearMintages.Standard }}
+ <tr>
+ <th scope="row">
+ {{- .Country -}}
+ {{- if .Mintmark.Valid -}}
+ &nbsp;<sub><small>{{ .Mintmark.V }}</small></sub>
+ {{- end -}}
+ </th>
+ {{ range .Mintages }}
+ {{ template "mintages/mintage-cell" (tuple . $p) }}
+ {{ end }}
+ </tr>
+ {{ end }}
+ </tbody>
+ </table>
+ </div>
+ </figure>
+ {{ end }}
+
+ {{ if eq .FilterBy "country" }}
+ {{ if ne (len .CountryMintages.Commemorative) 0 }}
+ <figure>
+ <figcaption>{{ .Get "Commemorative Coins" }}</figcaption>
+ <table class="mintage-table" role="grid">
+ <thead>
+ <th>{{ .GetC "Year" "Header/Label" }}</th>
+ <th>{{ .GetC "Commemorated Topic" "Header/Label" }}</th>
+ <th data-numeric>{{ .GetC "Mintage" "Header/Label" }}</th>
+ </thead>
+ <tbody>
+ {{ $p := .Printer }}
+ {{ range $i, $ := .CountryMintages.Commemorative }}
+ {{ $y := .Year }}
+ {{ $mm := .Mintmark }}
+ {{ $ccs := .CCs }}
+ {{ range $j, $cc := .CCs }}
+ <tr {{ if evenp $i }}class="striped"{{ end }}>
+ {{ if eq $j 0 }}
+ <th scope="row" rowspan="{{ len $ccs }}">
+ {{- $y -}}
+ {{- if $mm.Valid -}}
+ &nbsp;<sub><small>{{ $mm.V }}</small></sub>
+ {{- end -}}
+ </th>
+ {{ end }}
+ <td>{{ $p.GetC .Name "CC Name" }}</td>
+ {{ template "mintages/mintage-cell" (tuple .Mintage $p) }}
+ </tr>
+ {{ end }}
+ {{ end }}
+ </tbody>
+ </table>
</figure>
- {{ if ne (len .Mintages.Commemorative) 0 }}
- <figure>
- <figcaption>{{ .T "Commemorative Coins" }}</figcaption>
- <table class="mintage-table-cc" role="grid">
- <thead>
- <th>{{ .T "Year" }}</th>
- <th>{{ .T "Commemorated Issue" }}</th>
- <th>{{ .T "Mintage" }}</th>
- </thead>
- <tbody>
- {{ $p := .Printer }}
- {{ $type := .Type }}
- {{ range .Mintages.Commemorative }}
- <tr>
- <th scope="col">
- {{- .Year -}}
- {{- if ne .Mintmark "" -}}
- &nbsp;<sub><small>{{ .Mintmark }}</small></sub>
- {{- end -}}
- </th>
- <!-- TODO: Translate commemorative names -->
- <td>{{ .Name }}</td>
- {{ with (index .Mintage (strToCtype $type)) }}
- {{ if eq . -1 }}
- <td>{{ $p.T "Unknown" }}</td>
- {{ else if eq . 0 }}
- <td>—</td>
- {{ else }}
- <td>{{ $p.N . }}</td>
- {{ end }}
- {{ end }}
- </tr>
+ {{ end }}
+
+ {{ else if eq .FilterBy "year" }}
+
+ {{ if ne (len .YearMintages.Commemorative) 0 }}
+ <figure>
+ <figcaption>{{ .Get "Commemorative Coins" }}</figcaption>
+ <table class="mintage-table" role="grid">
+ <thead>
+ <th>{{ .GetC "Country" "Header/Label" }}</th>
+ <th>{{ .GetC "Commemorated Topic" "Header/Label" }}</th>
+ <th data-numeric>{{ .GetC "Mintage" "Header/Label" }}</th>
+ </thead>
+ <tbody>
+ {{ $p := .Printer }}
+ {{ range $i, $ := .YearMintages.Commemorative }}
+ {{ $c := .Country }}
+ {{ $mm := .Mintmark }}
+ {{ $ccs := .CCs }}
+ {{ range $j, $cc := .CCs }}
+ <tr {{ if evenp $i }}class="striped"{{ end }}>
+ {{ if eq $j 0 }}
+ <th scope="row" rowspan="{{ len $ccs }}">
+ {{- $c -}}
+ {{- if $mm.Valid -}}
+ &nbsp;<sub><small>{{ $mm.V }}</small></sub>
+ {{- end -}}
+ </th>
{{ end }}
- </tbody>
- </table>
- </figure>
+ <td>{{ $p.GetC .Name "CC Name" }}</td>
+ {{ template "mintages/mintage-cell" (tuple .Mintage $p) }}
+ </tr>
+ {{ end }}
+ {{ end }}
+ </tbody>
+ </table>
+ </figure>
{{ end }}
- </section>
+ {{ end }}
</main>
{{ end }}
-{{ define "coin-type-radio" }}
-<label for=compact-{{ index . 1 }}>
+{{ define "mintages/coin-type-radio" }}
+<label for="{{ index . 1 }}">
<input
- id=compact-{{ index . 1 }}
+ id="{{ index . 1 }}"
name="type"
type="radio"
- value={{ index . 1 }}
+ value="{{ index . 1 }}"
{{ if eq (index . 0) (index . 1) }}
- checked
+ checked
{{ end }}
/>
{{ index . 2 }}
</label>
+{{ end }}
+
+{{ define "mintages/filter-radio" }}
+{{ $v := index . 1 }}
+<label for="{{ $v }}">
+ <input
+ name="filter-by"
+ type="radio"
+ value="{{ $v }}"
+ id="{{ $v }}"
+ {{ if eq (index . 0) $v }}
+ checked
+ {{ end }}
+ >
+ {{ index . 2 }}
+</label>
+{{ end }}
+
+{{ define "mintages/mintage-cell" }}
+{{ $v := index . 0 }}
+{{ $p := index . 1 }}
+{{ if not $v.Valid }}
+ <td data-numeric>{{ $p.GetC "Unknown" "Header/Label" }}</td>
+{{ else if eq $v.V 0 }}
+ <td data-numeric>—</td>
+{{ else }}
+ <td data-numeric>{{ $p.Itoa $v.V }}</td>
+{{ end }}
{{ end }} \ No newline at end of file
diff --git a/src/templates/coins.html.tmpl b/src/templates/coins.html.tmpl
index 481771c..ee36ed8 100644
--- a/src/templates/coins.html.tmpl
+++ b/src/templates/coins.html.tmpl
@@ -1,49 +1,52 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+
+<style>
+ #sections {
+ --button-min-width: 40ch;
+
+ article {
+ min-height: 100%;
+ }
+ }
+</style>
+{{ end }}
+
{{ define "content" }}
-<header>
+<header class="container">
{{ template "navbar" . }}
- <h1>{{ .T "Euro Coins" }}</h1>
+ <h1>{{ .Get "Euro Coins" }}</h1>
</header>
-<main>
+<main class="container">
<p>
- {{ .T `
- On this section of the site you can find everything there is to
- know about the coins of the Eurozone.
- ` }}
+ {{ .Get "On this section of the site you can find everything there is to know about the coins of the Eurozone." }}
</p>
<hr />
- <section>
- <div class="grid">
- <a class="no-deco" href="/coins/designs">
- <article>
- <header>
- <h3>{{ .T "Designs" }}</h3>
- </header>
- <main>
- {{ .T "View the 600+ different Euro-coin designs!" }}
- </main>
- </article>
- </a>
- <a class="no-deco" href="/coins/mintages">
- <article>
- <header>
- <h3>{{ .T "Mintages" }}</h3>
- </header>
- <main>
- {{ .T "View the mintage figures of all the Euro coins!" }}
- </main>
- </article>
- </a>
- <a class="no-deco" href="/coins/varieties">
- <article>
- <header>
- <h3>{{ .T "Varieties" }}</h3>
- </header>
- <main>
- {{ .T "View all the known Euro varieties!" }}
- </main>
- </article>
- </a>
- </div>
- </section>
+ <div id="sections" class="button-grid">
+ <a class="no-deco" href="/coins/designs">
+ <article>
+ <header>
+ <h3>{{ .Get "Designs" }}</h3>
+ </header>
+ {{ .Get "View the 600+ different Euro-coin designs" }}
+ </article>
+ </a>
+ <a class="no-deco" href="/coins/mintages">
+ <article>
+ <header>
+ <h3>{{ .Get "Mintages" }}</h3>
+ </header>
+ {{ .Get "View the mintage figures of all the Euro coins" }}
+ </article>
+ </a>
+ <a class="no-deco" href="/coins/varieties">
+ <article>
+ <header>
+ <h3>{{ .Get "Varieties" }}</h3>
+ </header>
+ {{ .Get "View all the known Euro varieties" }}
+ </article>
+ </a>
+ </div>
</main>
{{ end }} \ No newline at end of file
diff --git a/src/templates/collecting-crh.html.tmpl b/src/templates/collecting-crh.html.tmpl
index bbca883..0fe19a4 100644
--- a/src/templates/collecting-crh.html.tmpl
+++ b/src/templates/collecting-crh.html.tmpl
@@ -1,591 +1,542 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+{{ end }}
+
{{ define "content" }}
-<header>
+<header class="container">
{{ template "navbar" . }}
- <h1>{{ .T "Coin Roll Hunting" }}</h1>
+ <h1>{{ .Get "Coin Roll Hunting" }}</h1>
</header>
-<main>
- <h2>{{ .T "What is Coin Roll Hunting?" }}</h2>
+<main class="container">
+ <h2>{{ .Get "What is ‘Coin Roll Hunting’?" }}</h2>
<p>
- {{ .T `
- Coin roll hunting is a popular method of coin collecting in which
- you withdrawal cash from your bank in the form of coins which you
- then search through to find new additions to your collection. Once
- you’ve searched through all your coins, you will typically deposit
- your left over coins at the bank and withdrawal new coins.
- ` }}
+ {{ .Get "Coin roll hunting is a popular method of coin collecting in which you withdraw cash from your bank in the form of coins and then search through those coins to find new additions to your collection. Once you’ve searched through all your coins, you will typically deposit your left over coins at the bank and withdraw new coins." }}
</p>
<p>
- {{ .T `
- This type of coin collecting is often called ‘Coin Roll Hunting’
- due to the fact that coins are often withdrawn in paper-wrapped
- rolls. You may however find that your coins come in plastic bags
- instead (common in countries like Ireland).
- ` }}
+ {{ .Get "This type of coin collecting is often called ‘coin roll hunting’ (abbreviated to ‘CRH’) due to the fact that banks will often provide you with coins in the form of paper-wrapped rolls. You may however find that your coins come in plastic bags instead (common in countries like Ireland)." }}
</p>
<p>
- {{ .T `
- Depending on your bank and branch, the process of obtaining coins
- may differ. Some banks require you speak to a teller, others have
- coin machines. Some banks may also require that you are a customer
- or even to have a business account. If you aren’t sure about if
- you can get coins we suggest you contact your bank, although
- further down this page we also have information about the
- withdrawal of coins in various countries and major banks.
- ` }}
+ {{ .Get "Depending on your bank and branch, the process of obtaining coins may differ. Some banks require you speak to a teller while others have coin machines. Some banks may also require that you are a customer or even that you have a business account. If you aren’t sure about if you can get coins we suggest you contact your bank, although further down this page we also have additional information about the withdrawal of coins in various countries and major banks." }}
</p>
- <h2>{{ .T "Getting Started" }}</h2>
+ <h2>{{ .Get "Getting Started" }}</h2>
<p>
- {{ .T `
- To get started with coin roll hunting you should first contact your
- bank or check their website to find details regarding coin
- withdrawal. You will then typically need to go to the bank to pick
- up your coins. Depending on your bank you may be able to
- withdrawal coins from a machine, although often you can pick up
- your coins from the banks tellers. You will also often need to pay
- a small fee for each roll, although some banks don’t charge fees.
- ` }}
+ {{ .Get "To get started with coin roll hunting you should first contact your bank or check their website to find details regarding coin withdrawal. You will then typically need to go to the bank to pick up your coins. Depending on your bank you may be able to withdraw coins from a machine. Most banks will charge you a small fee per roll and/or transaction." }}
</p>
<p>
- {{ .T `
- It is also important to find details regarding the deposit of
- coins. Depositing coins often also requires the payment of a fee
- — one which is typically more expensive than the withdrawal fees.
- If depositing your coins is too expensive you can always exchange
- your left over coins at shops for banknotes. It is often cheaper
- (or even free) to deposit banknotes.
- ` }}
+ {{ .Get "It is also important to find details regarding the deposit of coins. Depositing coins often also requires the payment of a fee — one which is typically more expensive than the withdrawal fees. If depositing your coins is too expensive you can always exchange your left over coins at shops for banknotes. It is often cheaper (or even free) to deposit banknotes." }}
</p>
<p>
- {{ .T `
- In some countries such as Austria it is even common to be able to
- withdrawal new coins from your account by exchanging the left over
- coins you already have.
- ` }}
+ {{ .Get "In some countries such as Austria it is even common to be able to withdraw new coins from your account using other coins." }}
</p>
- <h2>{{ .T "Country-Specific Details" }}</h2>
+ <h2>{{ .Get "Country-Specific Details" }}</h2>
<p>
- {{ .T `
- Below you can find all sorts of country-specific information we
- have regarding obtaining coin rolls. We lack a lot of information
- for many of the countries, so if you have any additional
- information such as your banks fees, the availability of coin roll
- machines, etc. feel free to contact us! You can find our contact
- information %shere%s.`
- `<a href="/about" target="_blank">` `</a>` | safe
- }}
+ {{ .Get "Below you can find country-specific details we have regarding obtaining coin rolls. We lack a lot of information for many of the countries, so if you have any additional information such as your banks fees, the availability of coin roll machines, etc. feel free to contact us! You can find our contact information {Link:l}here{-:E}."
+ (map "Link" "/about") }}
</p>
<p>
- {{ .T `
- Be aware of the face that the information below is prone to being
- outdated, and as such may not reflect the current reality.
- ` }}
+ {{ .Get "Be aware of the fact that the information below may be outdated or inaccurate. Many of the details are self-reported." }}
</p>
- {{ $p := .Printer }}
- {{ range .Countries }}
- <details id={{ .Code }}>
- <summary>{{ $p.T .Name }}</summary>
- {{ if eq .Code "ad" }}
- <p>
- {{ $p.T `
- Coin rolls can be obtained from Andbank, Crèdit Andorrà, and
- MoraBanc. All three of these banks require that you are a
- customer to get rolls. There have however been reports of
- individuals managing to get rolls without any fees and without
- being a customer by simply asking kindly at the bank.
- ` }}
- </p>
- {{ else if eq .Code "at" }}
- <p>
- {{ $p.T `
- The Austrian National Bank does not distribute circulated rolls
- but sells rolls of commemorative coins at face value on release
- as well as uncirculated rolls for all denominations.
- ` }}
- </p>
-
- <h3>Bank Austria</h3>
- <p>
- {{ $p.T `
- There is a fee of %s per roll. Rolls can be purchased with
- cash at machines. These machines are available to everyone,
- but not in all branches. Look for the ‘Münzrollengeber’ filter
- option %shere%s.`
- ($p.M 0.20)
- `<a
- href="https://filialen.bankaustria.at/de/"
- target="_blank"
- >`
- `</a>` | safe
- }}
- </p>
-
- <h3>Erste Bank</h3>
- <p>
- {{ $p.T `
- There is a fee of %s per roll. You must be a customer to use
- machines to get rolls. Rolls have no fees when purchased at
- counters, but counters redirect you to machines if they work;
- counters accept cash. You must present an Erste Bank card to
- buy rolls from machines, but you can pay with cash.`
- ($p.M 0.10)
- }}
- </p>
-
- <p>
- {{ $p.T `
- Depositing coins is free for up to %s a day, at which point you
- pay 1%% for any additional deposited coins. You must also be a
- customer. Depositing coins is free for all Erste Bank
- customers at Dornbirner Sparkasse with no limit.`
- ($p.M 100)
- }}
- </p>
-
- <h3>Raiffeisenbank</h3>
- <p>
- {{ $p.T `
- There is a fee of %s per roll if you aren’t a customer, and %s
- otherwise. Coin deposits are free if you’re a customer.`
- ($p.M 1.00) ($p.M 0.30)
- }}
- </p>
-
- <h3>Volksbank</h3>
- <p>
- {{ $p.T `
- Reportedly fee-less with no need of being a customer, but this
- is unconfirmed.
- ` }}
- </p>
- {{ else if eq .Code "be" }}
- <h3>Argenta</h3>
- <p>
- {{ $p.T "There is a %s fee with no limit on the number of rolls."
- ($p.M 1.50)
- }}
- </p>
-
- <h3>{{ $p.T "Belgian Central Bank" }}</h3>
- <p>
- {{ $p.T `
- You can visit the Belgian Central Bank in Brussels as an EU
- citizen. You can order coin rolls for no fee up to %s in
- value. They seem to distribute uncirculated coins (no
- commemoratives).`
- ($p.M 2000)
- }}
- </p>
-
- <h3>KBC</h3>
- <p>
- {{ $p.T `
- Free for customers but getting coin rolls is still difficult
- sometimes. Non-customers cannot get rolls.
- ` }}
- </p>
-
- <h3>Belfius</h3>
- <p>
- {{ $p.T `
- Free for customers when you order through their online
- platform.
- ` }}
- </p>
- {{ else if eq .Code "cy" }}
- <h3>{{ $p.T "Bank of Cyprus" }}</h3>
- <p>
- {{ $p.T `
- At the Bank of Cyprus it is possible to buy bags of coins
- without being a customer, and without paying any additional
- fees. Depending on the branch you visit you may have coin roll
- machine available. Do note that the bags provided by the Bank
- of Cyprus are around twice as large as usual with %s bags
- containing 50 coins and the other denomination bags containing
- 100 coins.`
- ($p.M 2.00)
- }}
- </p>
- {{ else if eq .Code "de" }}
- <p>
- {{ $p.T `
- Coin roll availability may vary across banks and branches, as
- well as the price. You must be a customer to purchase coin
- rolls unless specified otherwise.
- ` }}
- </p>
-
- <h3>{{ $p.T "German Federal Bank (Deutsche Bundesbank)" }}</h3>
- <p>
- {{ $p.T `
- You can obtain regular- and commemorative coins for face value
- including 5-, 10-, and 20 euro coins. You do not need to be a
- customer although depending on your branch you may need to make
- an appointment. The purchase of coins can only be done with
- cash.
- ` }}
- </p>
-
- <h3>Deutsche Post</h3>
- <p>
- {{ $p.T `
- Hand-rolled coin rolls can be obtained with no additional fees.
- ` }}
- </p>
-
- <h3>Sparkasse</h3>
- <p>
- {{ $p.T `
- Coin rolls can be obtained for a fee of %s–%s per roll. The
- amount varies per branch.`
- ($p.M 0.50) ($p.M 1.50)
- }}
- </p>
-
- <h3>Volksbank</h3>
- <p>
- {{ $p.T `
- Coin rolls can be obtained for a fee of %s per roll.`
- ($p.M 0.25)
- }}
- </p>
- {{ else if eq .Code "ee" }}
- <p>
- {{ $p.T `
- Obtaining coin rolls in Estonia is typically quite difficult,
- and often expensive. You also often need to make an
- appointment in advance.
- ` }}
- </p>
-
- <h3>{{ $p.T "Central Bank of Estonia Museum" }}</h3>
- <p>
- {{ $p.T `
- You can purchase commemorative coins (even those released years
- ago) at face value. It is also an interesting museum to visit
- in general.
- ` }}
- </p>
- {{ else if eq .Code "es" }}
- <h3>Banco Santander</h3>
- <p>{{ $p.T "Coin rolls are free but you must be a customer." }}</p>
-
- <h3>{{ $p.T "Bank of Spain" }}</h3>
- <p>
- {{ $p.T `
- You can purchase individual coins and commemorative coin rolls
- (even those of other countries). You can watch %shere%s to see
- how to do it.`
- `<a
- href="https://youtu.be/QRFuD6olH80?t=135"
- target="_blank"
- >`
- `</a>` | safe
- }}
- </p>
-
- <h3>BBVA</h3>
- <dl>
- <dt>Alicante</dt>
- <dd>
- {{ $p.T `
- Coin rolls have a fee of %s for 5 rolls. This seems to
- vary by region.`
- ($p.M 2.00)
- }}
- </dd>
- <dt>Madrid</dt>
- <dd>{{ $p.T "Coin rolls have no fees." }}</dd>
- </dl>
-
- <h3>{{ $p.T "La Caixa" }}</h3>
- <p>
- {{ $p.T `
- Coin rolls have no fees and can be purchased with cash. You do
- not need to be a customer, although this needs to be
- re-verified.
- ` }}
- </p>
- {{ else if eq .Code "fi" }}
- <p>
- {{ $p.T `
- Finland has no coin roll machines, but you can find vending
- machines or coin exchange machines (albeit they are rare).
- ` }}
- </p>
-
- <h3>Aktia</h3>
- <p>{{ $p.T "Coin rolls can be obtained with no fees." }}</p>
-
- <h3>{{ $p.T "Bank of Finland" }}</h3>
- <p>
- {{ $p.T `
- It is probably not possible to obtain coin rolls, but this is
- not confirmed.
- ` }}
- </p>
- {{ else if eq .Code "fr" }}
- <p>
- {{ $p.T `
- Coin roll machines are uncommon, only some banks have them and
- you need to be a customer. You may also need to order them in
- advance.
- ` }}
- </p>
-
- <h3>Caisse d’Épargne</h3>
- <p>
- {{ $p.T `
- Coin rolls can be obtained with no fee. You must be a
- customer.
- ` }}
- </p>
-
- <h3>CIC {{ $p.T "and" }} Crédit Mutuel</h3>
- <p>
- {{ $p.T `
- Free coin rolls if you are a customer or %s per roll if you are
- not a customer. There are coin roll machines.`
- ($p.M 1.00)
- }}
- </p>
-
- <h3>Crédit Agricole</h3>
- <p>
- {{ $p.T `
- Coin rolls can be obtained with no fee. You must be a
- customer.
- ` }}
- </p>
-
- <h3>Le Crédit Lyonnais (LCL)</h3>
- <p>
- {{ $p.T `
- There are coin roll machines but it is not yet known if you
- need to be a customer or if there are fees.
- ` }}
- </p>
- {{ else if eq .Code "gr" }}
- <h3>{{ $p.T "Bank of Greece (Τράπεζα της Ελλάδος)" }}</h3>
- <p>
- {{ $p.T `
- Fee-less coin rolls for everyone (you will need to show ID).
- The latest commemorative coins are also sold for face value.
- ` }}
- </p>
-
- <h3>Piraeus Bank</h3>
- <p>
- {{ $p.T `
- Fee-less coin bags for everyone (no ID necessary). Smaller
- denominations are often not given out, and the coin bags you
- recieve are very large (there are reports of %s bags containing
- 250 coins).`
- ($p.M 1.00)
- }}
- </p>
- {{ else if eq .Code "ie" }}
- <p>
- {{ $p.T `
- In general, coin rolls are available at banks with a fee of %s
- per roll; rolls could potentially have no fee if you only need
- a few.`
- ($p.M 1.00)
- }}
- </p>
- {{ else if eq .Code "it" }}
- <h3>Banca Cambiano</h3>
- <p>
- {{ $p.T `
- There are coin roll machines but it is unknown if you need to
- be a customer or if there are additional fees.
- ` }}
- </p>
-
- <h3>{{ $p.T "Bank of Italy" }}</h3>
- <p>
- {{ $p.T "Coin rolls are available to everyone." }}
- </p>
- {{ else if eq .Code "lt" }}
- <h3>ExchangeLT</h3>
- <p>{{ $p.T "Works, but with very high fees (5%% of cost)." }}</p>
-
- <h3>Top Exchange</h3>
- <p>
- {{ $p.T "Fee of %s per roll of 2 euro coins." ($p.M 2.00) }}
- </p>
-
- <h3>Lietuvos Bankas</h3>
- <p>
- {{ $p.T `
- As far as we are aware, Lietuvos Bankas only distributes coin
- rolls to businesses.
- ` }}
- </p>
-
- <p>
- {{ $p.T `
- It may be worth checking out payout machines to exchange
- banknotes into coins.
- ` }}
- </p>
- {{ else if eq .Code "lu" }}
- <h3>
- {{ $p.T "Luxembourgish Central Bank (Banque Centrale du Luxembourg)" }}
- </h3>
- <p>
- {{ $p.T `
- We currently have no information regarding regular coins,
- however their webshop sells commemorative coins (for a high
- premium, but better than most resellers). Commemorative coins
- are also available for purchase in-person.
- ` }}
- </p>
-
- <h3>Dexia-Bank</h3>
- <p>
- {{ $p.T `
- You should be able to get coin rolls with no additional fees.
- ` }}
- </p>
- {{ else if eq .Code "lv" }}
- <p>
- {{ $p.T `
- In general coin rolls are sold with a fee of %s per roll, but
- we’re lacking a lot of information.`
- ($p.M 0.60)
- }}
- </p>
- {{ else if eq .Code "mt" }}
- <h3>{{ $p.T "Bank of Valletta and HSBC Bank Malta" }}</h3>
- <p>
- {{ $p.T `
- You can get rolls for a fee of %s per roll. You must order
- coin rolls through their online platform, and you must be a
- customer.`
- ($p.M 0.30)
- }}
- </p>
- {{ else if eq .Code "nl" }}
- <p>
- {{ $p.T `
- Banks in the Netherlands do not carry cash, and as such it’s
- not possible to obtain rolls from bank tellers. Obtaining
- coins from the Dutch Central Bank (De Nederlandsche Bank) is
- also not possible. If you want to obtain coin rolls you need
- to use a Geldmaat coin roll machine which can be found in
- specific branches of GAMMA and Karwei. Geldmaat offers a map
- on their website where you can search for branches with these
- machines; you can find that map %shere%s.`
- `<a
- href="https://www.locatiewijzer.geldmaat.nl/nl/"
- target="_blank"
- >`
- `</a>` | safe
- }}
- </p>
-
- <p>
- {{ $p.T `
- In order to be able to use a Geldmaat coin machine, you must be
- a customer of either ABN AMRO, ING, or Rabobank. You also
- cannot pay by cash, only card payments are allowed. All three
- banks charge a withdrawal fee for getting coin rolls, which are
- detailed in the list below.
- ` }}
- </p>
-
- <dl>
- <dt>ABN AMRO</dt>
- <dd>{{ $p.T "%s per roll." ($p.M 0.30) }}</dd>
-
- <dt>ING</dt>
- <dd>
- {{ $p.T "Base fee of %s + %s per roll."
- ($p.M 7.00) ($p.M 0.35)
- }}
- </dd>
-
- <dt>Rabobank</dt>
- <dd>
- {{ $p.T "Base fee of %s + %s per roll."
- ($p.M 7.00) ($p.M 0.50)
- }}
- </dd>
- </dl>
-
- <p>
- {{ $p.T `
- One- and two-cent coins have been removed from circulation and
- cannot be obtained.
- ` }}
- </p>
- {{ else if eq .Code "pt" }}
- <h3>Banco Comercial Português</h3>
- <p>
- {{ $p.T `
- Coin bags are sold with no additional fees to bank customers.
- ` }}
- </p>
-
- <h3>{{ $p.T "Bank of Portugal (Banco de Portugal)" }}</h3>
- <p>
- {{ $p.T `
- Coin bags are sold with no additional fees to everyone.
- ` }}
- </p>
- {{ else if eq .Code "si" }}
- <p>
- {{ $p.T "In general there is a %s fee for coin rolls." ($p.M 1.20) }}
- </p>
-
- <h3>{{ $p.T "Bank of Slovenia (Banka Slovenije)" }}</h3>
- <p>
- {{ $p.T `
- You can purchase commemorative coins for face value, and coin
- rolls are sold with no fees to everyone.
- ` }}
- </p>
- {{ else if eq .Code "sk" }}
- <h3>{{ $p.T "National Bank of Slovakia (Národná banka Slovenska)" }}</h3>
- <p>
- {{ $p.T `
- You may be able to get uncirculated rolls, but this is not yet
- confirmed.
- ` }}
- </p>
-
- <h3>Tatra Banka</h3>
- <p>
- {{ $p.T `
- You can get an unlimited number of rolls for a %s fee. You
- must be a customer of the bank.`
- ($p.M 5.00)
- }}
- </p>
- {{ else if eq .Code "va" }}
- <p>
- {{ $p.T `
- Ask the Pope nicely and he’ll probably give you some Vatican
- coins for free.
- ` }}
- </p>
- {{ else }}
- <p>
- {{ $p.T `
- We currently have no information regarding coin roll hunting in
- %s.`
- ($p.T .Name)
- }}
- </p>
+ <article>
+ {{ $p := .Printer }}
+ {{ $countries := .Countries }}
+ {{ range $i, $c := $countries }}
+ <details id="{{ $c.Code }}" name="country">
+ <summary>{{ $c.Name }}</summary>
+ {{ if eq $c.Code "ad" }}
+ <p>
+ {{ $p.Get "Coin rolls can be obtained from Andbank, Creand and MoraBanc. All three of these banks require that you are a customer to get rolls, however there have been reports of individuals managing to get rolls without any fees and without being a customer by simply asking kindly at the bank." }}
+ </p>
+ {{ else if eq $c.Code "at" }}
+ {{/* TRANSLATORS: The OeNB prefers ‘Oe’ over ‘Ö’ */}}
+ {{ withTranslations "h3"
+ ($p.GetC "Austrian National Bank" "Company Name")
+ (tuple "de" "Oesterreichische Nationalbank") }}
+ <p>
+ {{ $p.Get "The Austrian National Bank does not distribute circulated rolls but sells rolls of commemorative coins at face value on release as well as uncirculated rolls for all denominations." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Bank Austria" "Company Name")
+ (tuple "de" "Bank Austria") }}
+ <p>
+ {{ $link := ifElse (eq $p.Language "de")
+ "https://filialen.bankaustria.at/de"
+ "https://filialen.bankaustria.at/en" }}
+ {{/* TRANSLATORS: On the German page the filter is called ‘Münzrollengeber’. For other languages we link to the English site, so mention the English filter name surrounded by ‘{EnglishStart:r}’ and ‘{EnglishEnd:E}’, and also translate it in parenthesis to your language. For example the Swedish page might say: ‘”{EnglishStart:r}coin roll dispenser{EnglishEnd:E}” (svenska: ”myntrullsautomat”)’ */}}
+ {{ $p.Get "There is a fee of €0.20 per roll which can be purchased with cash at machines. These machines are available to everyone but not in all branches. Look for the ‘coin roll dispenser’ filter option {Link:L}here{-:E}."
+ (map "Link" $link "EnglishStart"
+ `<span lang="en"><em>` "EnglishEnd" "em,span") | safe }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Erste Bank" "Company Name")
+ (tuple "de" "Erste Bank") }}
+ <p>
+ {{ $p.Get "There is a fee of €0.10 per roll. You must be a customer to use machines to get rolls. Rolls have no fees when purchased at counters, but you will probably be redirected to the machines if they work. You must present an Erste Bank card to buy rolls from machines, however payment in cash is still accepted." }}
+ </p>
+
+ <p>
+ {{ $p.Get "Depositing coins is free up to €100 a day, at which point you pay 1% for any additionally deposited coins. You must also be a customer. Depositing coins is free for all Erste Bank customers at Dornbirner Sparkasse with no limit." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Raiffeisen Bank" "Company Name")
+ (tuple "de" "Raiffeisen Bank") }}
+ <p>
+ {{ $p.Get "There is a fee of €1 per roll if you aren’t a customer and €0.30 otherwise. Coin deposits are free for customers." }}
+ </p>
+
+ {{ else if eq $c.Code "be" }}
+
+ {{ withTranslations "h3"
+ ($p.GetC "National Bank of Belgium" "Company Name")
+ (tuple "nl" "Nationale Bank van België")
+ (tuple "fr" "Banque nationale de Belgique")
+ (tuple "de" "Belgische Nationalbank") }}
+ <p>
+ {{ $p.Get "You can visit the National Bank of Belgium in Brussels as an EU citizen. You can order coin rolls for no fee up to €2000 in value. They seem to distribute only uncirculated coins and no commemoratives." }}
+ </p>
+
+ {{/* TRANSLATORS: Name of a bank */}}
+ {{ withTranslations "h3"
+ ($p.GetC "Argenta" "Company Name")
+ (tuple "" "Argenta") }}
+ <p>
+ {{ $p.Get "There is a €1.50 fee per transaction with no limit on the number of rolls you may take." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "KBC Bank" "Company Name")
+ (tuple "" "KBC Bank") }}
+ <p>
+ {{ $p.Get "Rolls can be obtained with no fee by customers only" }}
+ </p>
+
+ {{/* TRANSLATORS: Name of a bank */}}
+ {{ withTranslations "h3"
+ ($p.GetC "Belfius" "Company Name")
+ (tuple "" "Belfius") }}
+ <p>
+ {{ $p.Get "Rolls can be obtained with no fee when you order through their online platform." }}
+ </p>
+
+ {{ else if eq $c.Code "cy" }}
+
+ {{ withTranslations "h3"
+ ($p.GetC "Bank of Cyprus" "Company Name")
+ (tuple "el" "Τράπεζα Κύπρου")
+ (tuple "tr" "Kıbrıs Bankası") }}
+ <p>
+ {{ $p.Get "At the Bank of Cyprus it is possible to buy bags of coins without being a customer, and without paying any additional fees. Depending on the branch you visit there may be a coin roll machine available. Do note that the bags provided by the Bank of Cyprus are much larger than what is typically found elsewhere in the Eurozone with €2.00 bags containing 50 coins and the other denomination bags containing 100 coins." }}
+ </p>
+
+ {{ else if eq $c.Code "de" }}
+
+ <p>
+ {{ $p.Get "Coin roll availability and their related fees may vary across banks and branches. Unless specified otherwise, you must be a customer to purchase coin rolls." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "German Federal Bank" "Company Name")
+ (tuple "de" "Deutsche Bundesbank") }}
+ <p>
+ {{ $p.Get "You can obtain regular and commemorative coins for face value including 5-, 10- and 20 euro coins. You do not need to be a customer although depending on your branch you may need to make an appointment. The purchase of coins can only be done with cash." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "German Post" "Company Name")
+ (tuple "de" "Deutsche Post") }}
+ <p>
+ {{ $p.Get "Hand-rolled coin rolls can be obtained with no additional fees." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Sparkasse" "Company Name")
+ (tuple "de" "Sparkasse") }}
+ <p>
+ {{ $p.Get "Coin rolls can be obtained for a fee of €0.50–€1.50 per roll. The amount varies per branch." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Volksbank" "Company Name")
+ (tuple "de" "Volksbank") }}
+ <p>
+ {{ $p.Get "Coin rolls can be obtained for a fee of €0.25 per roll." }}
+ </p>
+
+ {{ else if eq $c.Code "ee" }}
+
+ <p>
+ {{ $p.Get "Obtaining coin rolls in Estonia is typically quite difficult and often expensive. You also generally need to make an appointment in advance." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Bank of Estonia Museum" "Company Name")
+ (tuple "et" "Eesti Panga muuseum") }}
+ <p>
+ {{ $p.Get "You can purchase commemorative coins — including those released years ago — for face value." }}
+ </p>
+
+ {{ else if eq $c.Code "es" }}
+
+ {{ withTranslations "h3"
+ ($p.GetC "Bank of Spain" "Company Name")
+ (tuple "es" "Banco de España") }}
+ <p>
+ {{ $p.Get "You can purchase individual coins and commemorative coin rolls (even those of other countries). You can watch a video {Link:L}here{-:E} to see how to do it."
+ (map "Link" "https://youtu.be/QRFuD6olH80?t=135") | safe }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Royal Mint of Spain" "Company Name")
+ (tuple "es" "Fábrica Nacional de Moneda y Timbre") }}
+ <p>TODO</p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Santander Bank" "Company Name")
+ (tuple "es" "Banco Santander") }}
+ <p>{{ $p.Get "Coin rolls are free but you must be a customer." }}</p>
+
+ {{/* TRANSLATORS: Name of a bank */}}
+ {{ withTranslations "h3"
+ ($p.GetC "BBVA" "Company Name")
+ (tuple "es" "BBVA") }}
+ <dl>
+ {{/* TRANSLATORS: City in Spain */}}
+ <dt>{{ $p.Get "Alicante" }}</dt>
+ <dd>
+ {{ $p.Get "Coin rolls have a fee of €2 for 5 rolls. This seems to vary by location." }}
+ </dd>
+ <dt>{{ $p.Get "Madrid" }}</dt>
+ <dd>{{ $p.Get "Coin rolls have no fees." }}</dd>
+ </dl>
+
+ {{/* TRANSLATORS: Name of a bank */}}
+ {{ withTranslations "h3"
+ ($p.GetC "La Caixa" "Company Name")
+ (tuple "es" "La Caixa") }}
+ <p>
+ {{ $p.Get "Coin rolls have no fees and can be purchased with cash. You allegedly do not need to be a customer, but this needs to be verified." }}
+ </p>
+
+ {{ else if eq $c.Code "fi" }}
+
+ <p>
+ {{ $p.Get "Finland has no coin roll machines, but you can find vending machines or coin exchange machines that accept cash (although they can be rather rare)." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Bank of Finland" "Company Name")
+ (tuple "fi" "Suomen Pankki")
+ (tuple "sv" "Finlands Bank") }}
+ <p>
+ {{ $p.Get "It is probably not possible to obtain coin rolls, but this is not confirmed." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Mint of Finland" "Company Name")
+ (tuple "fi" "Suomen Rahapaja")
+ (tuple "sv" "Myntverket i Finland") }}
+ <p>{{ $p.Get "The Mint of Finland ceased all operations in late 2024 but still sells coins on their website." }}</p>
+
+ {{/* TRANSLATORS: Name of a bank */}}
+ {{ withTranslations "h3"
+ ($p.GetC "Aktia Bank" "Company Name")
+ (tuple "fi" "Aktia Pankki")
+ (tuple "sv" "Aktia Bank") }}
+ <p>{{ $p.Get "Coin rolls used to be obtainable without fees, however you can no longer obtain rolls." }}</p>
+
+ {{ else if eq $c.Code "fr" }}
+
+ <p>
+ {{ $p.Get "Coin roll machines are uncommon, only some banks have them and you typically need to be a customer. You may also need to order coin rolls in advance." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Bank of France" "Company Name")
+ (tuple "fr" "Banque du France") }}
+ <p>TODO</p>
+
+ {{/* TRANSLATORS: Name of a bank */}}
+ {{ withTranslations "h3"
+ ($p.GetC "Caisse d’Épargne" "Company Name")
+ (tuple "fr" "Caisse d’Épargne") }}
+ <p>{{ $p.Get "Coin rolls can be obtained with no fee. You must be a customer." }}</p>
+
+ {{/* TRANSLATORS: Name of a bank */}}
+ {{ withTranslations "h3"
+ ($p.GetC "CIC" "Company Name")
+ (tuple "fr" "CIC") }}
+ <p>
+ {{ $p.Get "Free coin rolls if you are a customer or €1 per roll if you are not a customer. There are coin roll machines." }}
+ </p>
+
+ {{/* TRANSLATORS: Name of a bank */}}
+ {{ withTranslations "h3"
+ ($p.GetC "Crédit Mutuel" "Company Name")
+ (tuple "fr" "Crédit Mutuel") }}
+ <p>
+ {{ $p.Get "Free coin rolls if you are a customer or €1 per roll if you are not a customer. There are coin roll machines." }}
+ </p>
+
+ {{/* TRANSLATORS: Name of a bank */}}
+ {{ withTranslations "h3"
+ ($p.GetC "Crédit Agricole" "Company Name")
+ (tuple "fr" "Crédit Agricole") }}
+ <p>{{ $p.Get "Coin rolls can be obtained with no fee. You must be a customer." }}</p>
+
+ {{/* TRANSLATORS: Name of a bank */}}
+ {{ withTranslations "h3"
+ ($p.GetC "LCL" "Company Name")
+ (tuple "fr" "LCL") }}
+ <p>
+ {{ $p.Get "There are coin roll machines but it is not yet known if you need to be a customer or if there are fees." }}
+ </p>
+
+ {{ else if eq $c.Code "gr" }}
+
+ {{ withTranslations "h3"
+ ($p.GetC "Bank of Greece" "Company Name")
+ (tuple "gr" "Τράπεζα της Ελλάδος") }}
+ <p>
+ {{ $p.Get "{EmphStart:r}NOTE{EmphEnd:E}: The Bank of Greece (Greece’s central bank) is NOT the same as the National Bank of Greece (a commercial bank)."
+ (map "EmphStart" `<strong>` "EmphEnd" "strong") | safe }}
+ </p>
+ <p>
+ {{ $p.Get "Coin rolls can be obtained with no fee, but you may need to present your ID. The latest commemorative coins are also sold for face value." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Piraeus Bank" "Company Name")
+ (tuple "gr" "Τράπεζα Πειραιώς") }}
+ <p>
+ {{ $p.Get "Coin bags are available without fees for everyone. Smaller denominations are often not given out, and the coin bags you recieve are very large (there are reports of €1 bags containing 250 coins)." }}
+ </p>
+
+ {{ else if eq $c.Code "hr" }}
+
+ <p>
+ {{ $p.Get "We currently have no information regarding coin roll hunting in Croatia." }}
+ </p>
+
+ {{ else if eq $c.Code "ie" }}
+
+ <p>
+ {{ $p.Get "In general, coin rolls are available at banks with a fee of €1 per roll; rolls could potentially have no fee if you only need a few." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Central Bank of Ireland" "Company Name")
+ (tuple "ga" "Banc Ceannais na hÉireann")
+ (tuple "en" "Central Bank of Ireland") }}
+ <p>TODO</p>
+
+ {{ else if eq $c.Code "it" }}
+
+ {{ withTranslations "h3"
+ ($p.GetC "Bank of Italy" "Company Name")
+ (tuple "it" "Banca d’Italia") }}
+ <p>
+ {{ $p.Get "Coin rolls are available to everyone." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Banca di Cambiano" "Company Name")
+ (tuple "it" "Banca di Cambiano") }}
+ <p>
+ {{ $p.Get "There are coin roll machines but it is unknown if you need to be a customer or if there are additional fees." }}
+ </p>
+
+ {{ else if eq $c.Code "lt" }}
+
+ {{ withTranslations "h3"
+ ($p.GetC "Bank of Lithuania" "Company Name")
+ (tuple "en" "Lietuvos bankas") }}
+ <p>
+ {{ $p.Get "Allegedly, coin rolls are only available for businesses, but this needs additional confirmation." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "ExchangeLT" "Company Name")
+ (tuple "en" "ExchangeLT") }}
+ <p>
+ {{ $p.Get "Coin rolls are available with a fee of 5%." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Top Exchange" "Company Name")
+ (tuple "en" "Top Exchange") }}
+ <p>
+ {{ $p.Get "Fee of €2 per roll of 2 euro coins." }}
+ </p>
+
+ {{ else if eq $c.Code "lu" }}
+
+ {{ withTranslations "h3"
+ ($p.GetC "Central Bank of Luxembourg" "Company Name")
+ (tuple "lb" "Zentralbank vu Lëtzebuerg")
+ (tuple "fr" "Banque centrale du Luxembourg")
+ (tuple "de" "Luxemburger Zentralbank") }}
+ <p>
+ {{ $p.Get "We currently have no information regarding regular coins, however their webshop sells commemorative coins. Commemorative coins are also available for purchase in-person." }}
+ </p>
+
+ {{/* TRANSLATORS: Name of a bank */}}
+ {{ withTranslations "h3"
+ ($p.GetC "Dexia" "Company Name")
+ (tuple "fr" "Dexia") }}
+ <p>
+ {{ $p.Get "You should be able to get coin rolls with no additional fees." }}
+ </p>
+
+ {{ else if eq $c.Code "lv" }}
+
+ <p>
+ {{ $p.Get "In general coin rolls are sold with for fee of €0.60 per roll, but we’re lacking a lot of information." }}
+ </p>
+
+ {{ else if eq $c.Code "mc" }}
+
+ <p>
+ {{ $p.Get "We currently have no information regarding coin roll hunting in Monaco." }}
+ </p>
+
+ {{ else if eq $c.Code "mt" }}
+
+ {{ withTranslations "h3"
+ ($p.GetC "Central Bank of Malta" "Company Name")
+ (tuple "mt" "Bank Ċentrali ta’ Malta") }}
+ <p>TODO</p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Bank of Valletta" "Company Name")
+ (tuple "en" "Bank of Valletta") }}
+ <p>
+ {{ $p.Get "You can get rolls for a fee of €0.30 per roll. You must order coin rolls through their online platform, and you must be a customer." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "HSBC Bank Malta" "Company Name")
+ (tuple "en" "HSBC Bank Malta") }}
+ <p>
+ {{ $p.Get "You can get rolls for a fee of €0.30 per roll. You must order coin rolls through their online platform, and you must be a customer." }}
+ </p>
+
+ {{ else if eq $c.Code "nl" }}
+
+
+ <p>
+ {{ $link := ifElse (eq $p.Language "nl")
+ "https://www.locatiewijzer.geldmaat.nl/nl"
+ "https://www.locatiewijzer.geldmaat.nl/en" }}
+ {{ $p.Get "Banks in the Netherlands do not carry cash, and as such it’s not possible to obtain rolls from bank tellers. If you want to obtain coin rolls you need to use a Geldmaat coin roll machine which can be found in specific branches of GAMMA and Karwei. Geldmaat offers a map on their website where you can search for branches with these machines; you can find that map {Link:L}here{-:E}. Coin rolls are only available to customers of the banks listed below."
+ (map "Link" $link) | safe }}
+ </p>
+
+ <p>
+ {{ $p.Get "1- and 2 cent coins have been removed from circulation and cannot be obtained." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "The Dutch Central Bank" "Company Name")
+ (tuple "nl" "De Nederlandsche Bank") }}
+ <p>
+ {{ $p.Get "Obtaining coins from the Dutch Central Bank is not possible." }}
+ </p>
+
+ {{/* TRANSLATORS: Name of a bank */}}
+ {{ withTranslations "h3"
+ ($p.GetC "ABN AMRO" "Company Name")
+ (tuple "nl" "ABN AMRO") }}
+ <p>
+ {{ $p.Get "Coin rolls are available for a fee of €0.30 per roll. You must withdraw between 10–20 rolls." }}
+ </p>
+
+ {{/* TRANSLATORS: Name of a bank */}}
+ {{ withTranslations "h3"
+ ($p.GetC "ING" "Company Name")
+ (tuple "nl" "ING") }}
+ <p>
+ {{ $p.Get "Coin rolls are available for a fee of €7 + €0.35 per roll." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Rabobank" "Company Name")
+ (tuple "nl" "Rabobank") }}
+ <p>
+ {{ $p.Get "Coin rolls are available for a fee of €7 + €0.50 per roll." }}
+ </p>
+
+ {{ else if eq $c.Code "pt" }}
+
+ {{ withTranslations "h3"
+ ($p.GetC "Bank of Portugal" "Company Name")
+ (tuple "pt" "Banco de Portugal") }}
+ <p>
+ {{ $p.Get "Coin bags are sold with no additional fees to everyone." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Banco Comercial Português" "Company Name")
+ (tuple "pt" "Banco Comercial Português") }}
+ <p>
+ {{ $p.Get "Coin bags are sold with no additional fees to bank customers." }}
+ </p>
+
+ {{ else if eq $c.Code "si" }}
+
+ <p>
+ {{ $p.Get "In general there is a €1.20 fee for coin rolls." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Bank of Slovenia" "Company Name")
+ (tuple "sl" "Banka Slovenije") }}
+ <p>
+ {{ $p.Get "You can purchase commemorative coins for face value, and coin rolls are sold with no fees to everyone." }}
+ </p>
+
+ {{ else if eq $c.Code "sk" }}
+
+ {{ withTranslations "h3"
+ ($p.GetC "National Bank of Slovakia" "Company Name")
+ (tuple "sk" "Národná banka Slovenska") }}
+ <p>
+ {{ $p.Get "You may be able to get uncirculated rolls, but this is not yet confirmed." }}
+ </p>
+
+ {{ withTranslations "h3"
+ ($p.GetC "Tatra banka" "Company Name")
+ (tuple "sk" "Tatra banka") }}
+ <p>
+ {{ $p.Get "You can get an unlimited number of rolls for a €5 fee. You must be a customer of the bank." }}
+ </p>
+
+ {{ else if eq $c.Code "sm" }}
+
+ <p>
+ {{ $p.Get "We currently have no information regarding coin roll hunting in San Marino." }}
+ </p>
+
+ {{ else if eq $c.Code "va" }}
+
+ <p>
+ {{ $p.Get "Ask the Pope nicely and he’ll probably give you some Vatican coins for free." }}
+ </p>
+
+ {{ end }}
+ </details>
+ {{ if ne (plus1 $i) (len $countries) }}
+ <hr>
+ {{ end }}
{{ end }}
- </details>
- {{ end }}
+ </article>
</main>
{{ end }} \ No newline at end of file
diff --git a/src/templates/collecting-storage.html.tmpl b/src/templates/collecting-storage.html.tmpl
index 8d29667..25150d4 100644
--- a/src/templates/collecting-storage.html.tmpl
+++ b/src/templates/collecting-storage.html.tmpl
@@ -1,3 +1,7 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+{{ end }}
+
{{ define "content" }}
<header>
{{ template "navbar" . }}
@@ -60,7 +64,7 @@
Coin capsules are plastic capsules you can put your coin in.
They offer good protection to your coins, while still
allowing you to view all parts of your coin easily, including
- the edge engravings and -inscriptions. Capsules are also far
+ the edge engravings and inscriptions. Capsules are also far
more durable than flips, and can be opened and closed
repeatedly allowing for them to be reused. This isn’t really
possible with flips.
diff --git a/src/templates/collecting-vending.html.tmpl b/src/templates/collecting-vending.html.tmpl
index 2bfea22..fa5a72c 100644
--- a/src/templates/collecting-vending.html.tmpl
+++ b/src/templates/collecting-vending.html.tmpl
@@ -1,3 +1,7 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+{{ end }}
+
{{ define "content" }}
<header>
{{ template "navbar" . }}
diff --git a/src/templates/collecting.html.tmpl b/src/templates/collecting.html.tmpl
index aacb442..d8ecf18 100644
--- a/src/templates/collecting.html.tmpl
+++ b/src/templates/collecting.html.tmpl
@@ -1,76 +1,61 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+
+<style>
+ #sections {
+ --button-min-width: 40ch;
+
+ article {
+ min-height: 100%;
+ }
+ }
+</style>
+{{ end }}
+
{{ define "content" }}
-<header>
+<header class="container">
{{ template "navbar" . }}
- <h1>{{ .T "Euro Coin Collecting" }}</h1>
+ <h1>{{ .Get "Euro Coin Collecting" }}</h1>
</header>
-<main>
+<main class="container">
<p>
- {{ .T `
- On this section of the site you can find everything there is
- to know about collecting Euro coins. If this is a hobby that
- interests you, join the Discord server linked at the top of
- the page!
- ` }}
+ {{ .Get "On this section of the site you can find everything there is to know about collecting Euro coins. If this is a hobby that interests you, join the Discord server linked at the top of the page!" }}
</p>
<hr>
- <section>
- <div class="grid">
- <a class="no-deco" href="/collecting/crh">
- <article>
- <header>
- <h3>{{ .T "Coin Roll Hunting" }}</h3>
- </header>
- <main>
- {{ .T `
- Learn about collecting coins from coin rolls!
- ` }}
- </main>
- </article>
- </a>
- <a class="no-deco" href="/collecting/storage">
- <article>
- <header>
- <h3>{{ .T "Coin Storage" }}</h3>
- </header>
- <main>
- {{ .T `
- Learn about the different methods to storing
- your collection!
- `}}
- </main>
- </article>
- </a>
- <!-- TODO: Implement the shop hunting page -->
- <a class="no-deco" href="#">
- <article>
- <header>
- <h3>{{ .T "Shop Hunting" }}</h3>
- </header>
- <main>
- {{ .T `
- Learn about how to collect coins from
- shop-keepers and other people who deal in
- cash!
- ` }}
- </main>
- </article>
- </a>
- </div>
- <div class="grid">
- <a class="no-deco" href="/collecting/vending">
- <article>
- <header>
- <h3>{{ .T "Vending Machine Hunting" }}</h3>
- </header>
- <main>
- {{ .T `
- Learn about collecting coins from vending
- machines!
- ` }}
- </main>
- </article>
- </a>
- </div>
- </section>
+ <div id="sections" class="button-grid">
+ <a class="no-deco" href="/collecting/crh">
+ <article>
+ <header>
+ <h3>{{ .Get "Coin Roll Hunting" }}</h3>
+ </header>
+ {{ .Get "Learn about collecting coins from coin rolls" }}
+ </article>
+ </a>
+ <a class="no-deco" href="/collecting/storage">
+ <article>
+ <header>
+ <h3>{{ .Get "Coin Storage" }}</h3>
+ </header>
+ {{ .Get "Learn about the different methods to storing your collection" }}
+ </article>
+ </a>
+ <!-- TODO: Implement the shop hunting page -->
+ <a class="no-deco" href="#">
+ <article>
+ <header>
+ <h3>{{ .Get "Shop Hunting" }}</h3>
+ </header>
+ {{ .Get "Learn about how to collect coins from shops" }}
+ </article>
+ </a>
+ <a class="no-deco" href="/collecting/vending">
+ <article>
+ <header>
+ <h3>{{ .Get "Vending Machine Hunting" }}</h3>
+ </header>
+ {{ .Get "Learn about collecting coins from vending machines" }}
+ </article>
+ </a>
+ </div>
</main>
{{ end }} \ No newline at end of file
diff --git a/src/templates/index.html.tmpl b/src/templates/index.html.tmpl
index fafd0ee..d560c64 100644
--- a/src/templates/index.html.tmpl
+++ b/src/templates/index.html.tmpl
@@ -1,24 +1,25 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+{{ end }}
+
{{ define "content" }}
-<header>
+<header class="container">
{{ template "navbar" . }}
<hgroup>
- <h1>{{ .T "The Euro Cash Compendium" }}</h1>
+ <h1>{{ .Get "The Euro Cash Wiki" }}</h1>
<p>
- {{ .T "United in" }}
- <del>{{ .T "diversity" }}</del>
- <ins>{{ .T "cash" }}</ins>
+ <!-- TODO: Just make this one translation -->
+ {{/* TRANSLATORS: Beginning of sentence, as in ‘United in …’ */}}
+ {{ .Get "United in" }}
+ <del>{{ .Get "diversity" }}</del>
+ <ins>{{ .Get "cash" }}</ins>
</p>
</hgroup>
</header>
-<main>
+<main class="container">
+ <!-- TODO(2026): s/26/27/; Welcome Bulgaria! -->
<p>
- {{ .T `
- Welcome to the Euro Cash Compendium. This sites aims to be a
- resource for you to discover everything there is to know about the
- coins and banknotes of the Euro, a currency that spans 26 countries
- and 350 million people. We also have dedicated sections of the site
- for collectors.
- ` }}
+ {{ .Get "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." }}
</p>
</main>
-{{ end }}
+{{ end }} \ No newline at end of file
diff --git a/src/templates/jargon.html.tmpl b/src/templates/jargon.html.tmpl
index 0dd1947..593a169 100644
--- a/src/templates/jargon.html.tmpl
+++ b/src/templates/jargon.html.tmpl
@@ -1,114 +1,72 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+
+<style>
+ dt > a:target {
+ background-color: var(--pico-mark-background-color);
+ }
+</style>
+{{ end }}
+
{{ define "content" }}
-<header>
+
+<header class="container">
{{ template "navbar" . }}
- <h1>{{ .T "Euro Cash Jargon" }}</h1>
+ <h1>{{ .Get "Euro Cash Jargon" }}</h1>
</header>
-<main>
+<main class="container">
<p>
- {{ .T `
- Both on this website and in other euro-cash-related forums there
- are many terms you will come across that you may not immediately
- understand. This page will hopefully get you up to speed with the
- most important and frequently-used terminology.
- ` }}
+ {{ .Get "Both on this website and in other related forums you will come across many terms that you may not be familiar with. This page will hopefully get you up to speed with the most important and frequently-used terminology." }}
</p>
<p>
- {{ .T `
- All terms defined below can be used as clickable links which
- highlight the selected term. It is recommended to use these links
- when sharing this page with others, so that the relevant terms are
- highlighted.
- ` }}
+ {{ .Get "All terms defined below can be used as clickable links which highlight the selected term. It is recommended to use these links when sharing this page with others, so that the relevant terms are highlighted." }}
</p>
<hr />
- <!-- TODO: Sort these jargon entries in alphabetical order according to
- the users locale -->
- <h2>{{ .T "General Terms" }}</h2>
+ <!-- TODO: Sort these jargon entries in alphabetical order according
+ to the users locale -->
+ <h2>{{ .Get "General Terms" }}</h2>
<dl>
- {{ template "jargon/dt" (tuple "au" (.T "AU — Almost Uncirculated")) }}
+ {{ template "jargon/dt" (tuple "au" (.Get "AU — Almost Uncirculated")) }}
<dd>
- {{ .T `
- AU coins are coins that are in extremely good condition as a
- result of limited use in circulation. Unlike the term ‘UNC’, this
- term is a description of the coins quality, not its usage. AU
- coins often appear to retain most of their original luster as
- well as possessing little-to-no scratches or other forms of
- post-mint damage (PMD).
- ` }}
+ {{ .Get "AU coins are coins that are in extremely good condition as a result of limited use in circulation. Unlike the term ‘UNC’, this term is a description of the coins quality, not its usage. AU coins often appear to retain most of their original luster as well as possessing little to no scratches or other forms of post-mint damage (PMD)." }}
</dd>
- {{ template "jargon/dt" (tuple "bu" (.T "BU — Brilliantly Uncirculated")) }}
+
+ {{ template "jargon/dt" (tuple "bu" (.Get "BU — Brilliantly Uncirculated")) }}
<dd>
- {{ .T `
- BU is a general term to refer to coins from coincards and
- -sets. These are different from UNC coins in that they are
- typically handled with more care during the minting process and
- are struck with higher-quality dies than the coins minted for
- coin rolls resulting in a higher-quality end product. You may
- also see these coins referred to by the French term ‘fleur de
- coin’.
- ` }}
+ {{ .Get "BU is a general term to refer to coins from coincards and sets. These are different from UNC coins in that they are typically handled with more care during the minting process and are struck with higher-quality dies than coins minted for general circulation, resulting in a higher-quality coin." }}
</dd>
- {{ template "jargon/dt" (tuple "nifc" (.T "NIFC — Not Intended For Circulation")) }}
+
+ {{ template "jargon/dt" (tuple "nifc" (.Get "NIFC — Not Intended For Circulation")) }}
<dd>
<p>
- {{ .T `
- NIFC coins are coins minted without the intention of being put
- into general circulation. These coins are typically minted with
- the purpose of being put into coincards or coin-sets to be sold
- to collectors. Occasionally they are also handed out to
- collectors for face value at banks.
- ` }}
+ {{ .Get "NIFC coins are coins minted without the intention of being put into general circulation. These coins are typically minted with the purpose of being put into coincards or sets to be sold to collectors. Occasionally they are also handed out to collectors for face value at banks." }}
</p>
<p>
- {{ .T `
- While uncommon, NIFC coins are occasionally found in
- circulation. This can happen for a variety of reasons such as
- someone depositing their coin collection (known as a
- ‘collection dump’), or a collector’s child spending their rare
- coins on an ice cream. Some coin mints have also been known to
- put NIFC coins that have gone unsold for multiple years into
- circulation.
- ` }}
+ {{ .Get "While uncommon, NIFC coins are occasionally found in circulation. This can happen for a variety of reasons such as someone depositing their coin collection (known as a ‘collection dump’) or a collector’s child spending their rare coins on an ice cream. Some coin mints have also been known to put NIFCs that have gone unsold for multiple years into circulation." }}
</p>
</dd>
- {{ template "jargon/dt" (tuple "pmd" (.T "PMD — Post-Mint Damage")) }}
+
+ {{ template "jargon/dt" (tuple "pmd" (.Get "PMD — Post-Mint Damage")) }}
<dd>
- {{ .T `
- Post-mint damage is any damage that a coin has sustained outside
- of the minting process, such as through being dropped on the
- ground, hit against a table, etc.
- ` }}
+ {{ .Get "Post-mint damage is any damage that a coin has sustained outside of the minting process, such as through being dropped on the ground, hit against a table, etc." }}
</dd>
- {{ template "jargon/dt" (tuple "relief" (.T "Relief")) }}
+
+ {{ template "jargon/dt" (tuple "relief" (.Get "Relief")) }}
<dd>
- {{ `
- Relief is a term that is used to describe how 3-dimensional a
- coin is. Coins with a higher relief have designs that make
- greater use of the 3rd dimension while coins with lower relief
- have designs that appear more flat.
- ` }}
+ {{ "Relief is a term that is used to describe how 3-dimensional a coin is. Coins with a higher relief have designs that make greater use of the 3rd dimension while coins with lower relief have designs that appear more flat." }}
</dd>
- {{ template "jargon/dt" (tuple "unc" (.T "UNC — Uncirculated")) }}
+
+ {{ template "jargon/dt" (tuple "unc" (.Get "UNC — Uncirculated")) }}
<dd>
- {{ .T `
- Uncirculated coins are coins that have never been used in a
- monetary exchange. The term ‘UNC’ is often mistakenly used to
- refer to coins in very good condition, but this is incorrect. A
- coin in poor condition that has never been circulated is still
- considered an ‘UNC’ coin.
- ` }}
+ {{ .Get "Uncirculated coins are coins that have never been used in a monetary exchange. The term ‘UNC’ is often mistakenly used to refer to coins in very good condition, but this is incorrect. A coin in poor condition that has never been circulated is still considered an ‘UNC’ coin." }}
</dd>
</dl>
- <h2>{{ .T "Collector-Specific Terms" }}</h2>
+
+ <h2>{{ .Get "Collector-Specific Terms" }}</h2>
<dl>
- {{ template "jargon/dt" (tuple "crh" (.T "CRH — Coin Roll Hunting")) }}
+ {{ template "jargon/dt" (tuple "crh" (.Get "CRH — Coin Roll Hunting")) }}
<dd>
- {{ .T `
- Coin roll hunting is a general term for the activity of searching
- through coin rolls and -bags to find coins for a collection. Coin
- rolls and bags are often obtained at banks or coin roll
- machines.
- ` }}
+ {{ .Get "Coin roll hunting is a general term for the activity of collecting coins by searching through coin rolls and bags. Coin rolls and bags are often obtained at banks or coin roll machines." }}
</dd>
</dl>
</main>
@@ -116,8 +74,8 @@
{{ define "jargon/dt" }}
<dt>
- <a id={{ index . 0 }} href=#{{ index . 0 }}>
+ <a id="{{ index . 0 }}" href="#{{ index . 0 }}">
{{ index . 1 }}
</a>
</dt>
-{{ end }}
+{{ end }} \ No newline at end of file
diff --git a/src/templates/language.html.tmpl b/src/templates/language.html.tmpl
index ee66bf8..c3bfa94 100644
--- a/src/templates/language.html.tmpl
+++ b/src/templates/language.html.tmpl
@@ -1,48 +1,124 @@
+{{ define "header" }}
+{{ template "header-navbar" . }}
+
+<style>
+ .lang-fade-in-out {
+ transition: opacity 1s;
+
+ &.hide {
+ opacity: 0;
+ }
+ }
+
+ .lang-grid {
+ --button-min-width: 22ch;
+
+ button {
+ display: flex;
+ align-items: center;
+ padding-block: 1ch;
+ text-align: left;
+
+ > :first-child {
+ font-size: 2em;
+ font-weight: 600; /* Between normal and bold */
+ min-width: calc(var(--pico-form-element-spacing-horizontal) + 2ch);
+ }
+ }
+ }
+</style>
+
+<script>
+ (() => {
+ let i = -1;
+ let nodes;
+ const Δt = 5000; /* Total time a text is shown */
+ const Δf = 1000; /* Fade duration */
+ const texts = [
+ {{ $save := . }}
+ {{ $ps := .Printers }}
+ {{ range locales }}
+ {{ if (and .Enabledp (ne .Bcp $save.Printer.Bcp)) }}
+ [
+ "{{ .Bcp }}",
+ {{ $p := (index $ps .Bcp) }}
+ "{{ $p.Get `Select Your Language` }}",
+ "{{ $p.Get `Eurozone Languages` }}",
+ "{{ $p.Get `Other Languages` }}",
+ ],
+ {{ end }}
+ {{ end }}
+ ];
+
+ const change = () => {
+ nodes.forEach(n => n.classList.add("hide"));
+ setTimeout(() => {
+ i = (i + 1) % texts.length;
+ nodes.forEach((n, j) => {
+ const [lang, ...strs] = texts[i];
+ n.lang = lang;
+ n.textContent = strs[j];
+ n.classList.remove("hide");
+ });
+ }, Δf);
+ };
+
+ document.addEventListener("DOMContentLoaded", _ => {
+ nodes = $$('.lang-fade-in-out');
+ change();
+ setInterval(change, Δt);
+ });
+ })();
+</script>
+{{ end }}
+
{{ define "content" }}
-<header>
+<header class="container">
{{ template "navbar" . }}
- <h1>{{ .T "Select Your Language" }}</h1>
+ <h1>
+ {{ .Get "Select Your Language" }}
+ <br><span class="lang-fade-in-out translation">&nbsp;</span>
+ </h1>
</header>
-<main>
- <p>
- {{ .T "Select your preferred language to use on the site." }}
- </p>
- <p>
- If you are an American user, it’s suggested that you select
- American English instead of British English. This will ensure that
- dates will be formatted with the month before the day.
- </p>
- <hr />
- <h2>{{ .T "Eurozone Languages" }}</h2>
- {{ template "langgrid" true }}
- <h2>{{ .T "Other Languages" }}</h2>
- {{ template "langgrid" false }}
+<main class="container">
+ <h2>
+ {{ .Get "Eurozone Languages" }}
+ <br><span class="lang-fade-in-out translation">&nbsp;</span>
+ </h2>
+ {{ template "langgrid" (tuple .Printer true) }}
+ <h2>
+ {{ .Get "Other Languages" }}
+ <br><span class="lang-fade-in-out translation">&nbsp;</span>
+ </h2>
+ {{ template "langgrid" (tuple .Printer false) }}
</main>
{{ end }}
{{ define "langgrid" }}
-{{ $ez := . }}
+{{ $p := index . 0 }}
+{{ $ez := index . 1 }}
<form action="/language" method="POST">
- <div class="lang-grid">
+ <div class="button-grid lang-grid">
{{ range locales }}
- {{ if eq $ez .Eurozone }}
+ {{ if eq $ez .Eurozonep }}
<button
type="submit"
name="locale"
- value={{ .Bcp }}
- {{ if not .Enabled }}
+ value="{{ .Bcp }}"
+ {{ if not .Enabledp }}
disabled
{{ end }}
>
- <span
- lang={{ .Bcp }}
- data-code={{ .Language | toUpper }}
- >
- {{ .Name }}
+ <span>{{ .Language | toUpper }}</span>
+ <span lang="{{ .Bcp }}">
+ {{ .Name }}<br>
+ <span lang="{{ $p.Bcp }}" class="translation">
+ {{ $p.GetC .Name "Language Name" }}
+ </span>
</span>
</button>
{{ end }}
{{ end }}
</div>
</form>
-{{ end }}
+{{ end }} \ No newline at end of file
diff --git a/src/wikipedia/api.go b/src/wikipedia/api.go
new file mode 100644
index 0000000..fb06518
--- /dev/null
+++ b/src/wikipedia/api.go
@@ -0,0 +1,17 @@
+package wikipedia
+
+type APIResponse struct {
+ Continue *struct {
+ Continue string `json:"continue"`
+ LlContinue string `json:"llcontinue"`
+ } `json:"continue"`
+ Query struct {
+ Pages []struct {
+ Title string `json:"title"`
+ LangLinks *[]struct {
+ Lang string `json:"lang"`
+ Title string `json:"title"`
+ } `json:"langlinks"`
+ } `json:"pages"`
+ } `json:"query"`
+}
diff --git a/src/wikipedia/links.gen.go b/src/wikipedia/links.gen.go
new file mode 100644
index 0000000..42900cc
--- /dev/null
+++ b/src/wikipedia/links.gen.go
@@ -0,0 +1,13 @@
+// Code generated by extwiki. DO NOT EDIT.
+
+package wikipedia
+
+var extractedTitles = [...]string{
+ "Coat of arms of Andorra",
+ "Coat of arms of Germany",
+ "Dubravka (drama)",
+ "Eurovision Song Contest",
+ "Glagolitic script",
+ "Nikola Tesla",
+ "Royal cypher",
+}
diff --git a/src/wikipedia/wikipedia.go b/src/wikipedia/wikipedia.go
new file mode 100644
index 0000000..e55e9da
--- /dev/null
+++ b/src/wikipedia/wikipedia.go
@@ -0,0 +1,99 @@
+package wikipedia
+
+import (
+ "encoding/json"
+ "fmt"
+ "io"
+ "net/http"
+ "net/url"
+ "strconv"
+ "strings"
+ "time"
+)
+
+var (
+ defaultLocale string
+ titlemap = make(map[string]map[string]string)
+)
+
+func Init(locale string) error {
+ defaultLocale = locale
+ base := fmt.Sprintf("https://%s.wikipedia.org/w/api.php", defaultLocale)
+ u, err := url.Parse(base)
+ if err != nil {
+ return err
+ }
+
+ var resp APIResponse
+ titles := strings.Join(extractedTitles[:], "|")
+
+ q := u.Query()
+ q.Set("action", "query")
+ q.Set("format", "json")
+ q.Set("prop", "langlinks")
+ q.Set("titles", titles)
+ q.Set("formatversion", "2")
+ q.Set("lllimit", "max")
+
+ for {
+ if resp.Continue != nil {
+ q.Set("continue", resp.Continue.Continue)
+ q.Set("llcontinue", resp.Continue.LlContinue)
+ }
+ u.RawQuery = q.Encode()
+
+ respjson, err := http.Get(u.String())
+ if err != nil {
+ return err
+ }
+ if respjson.StatusCode >= 400 &&
+ respjson.StatusCode != http.StatusTooManyRequests {
+ return fmt.Errorf("Failed to GET %s: %s", u, respjson.Status)
+ }
+ defer respjson.Body.Close()
+
+ secs, err := strconv.Atoi(respjson.Header.Get("Retry-After"))
+ if err != nil {
+ time.Sleep(time.Duration(secs) * time.Second)
+ }
+
+ body, err := io.ReadAll(respjson.Body)
+ if err != nil {
+ return err
+ }
+
+ resp = APIResponse{}
+ if err = json.Unmarshal(body, &resp); err != nil {
+ return err
+ }
+
+ for _, page := range resp.Query.Pages {
+ if page.LangLinks == nil {
+ continue
+ }
+
+ t := url.PathEscape(page.Title)
+ if _, ok := titlemap[t]; !ok {
+ titlemap[t] = make(map[string]string)
+ }
+
+ for _, ll := range *page.LangLinks {
+ titlemap[t][ll.Lang] = url.PathEscape(ll.Title)
+ }
+ }
+
+ if resp.Continue == nil {
+ return nil
+ }
+ }
+}
+
+func Url(title, locale string) string {
+ base := "https://%s.wikipedia.org/wiki/%s"
+ title = url.PathEscape(title)
+ t, ok := titlemap[title][locale]
+ if !ok {
+ t, locale = title, defaultLocale
+ }
+ return fmt.Sprintf(base, locale, t)
+}