diff options
| -rw-r--r-- | GNUmakefile | 2 | ||||
| -rw-r--r-- | cmd/extpo/html.go | 114 | ||||
| -rw-r--r-- | cmd/extpo/main.go | 109 | ||||
| -rw-r--r-- | cmd/extpo/sql.go | 54 | ||||
| -rw-r--r-- | go.mod | 4 | ||||
| -rw-r--r-- | go.sum | 2 | ||||
| -rw-r--r-- | po/en/messages.po | 3025 | ||||
| -rw-r--r-- | po/nl/messages.po | 2653 | ||||
| -rw-r--r-- | po/sv/messages.po | 2787 |
9 files changed, 4924 insertions, 3826 deletions
diff --git a/GNUmakefile b/GNUmakefile index 3d7ec2c..e9b2eae 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -21,7 +21,7 @@ extract: extpo extwiki find . -name '*.go' -exec xgotext --foreign-user -o po/backend.pot {} + find . -name '*.html.tmpl' -exec ./extwiki {} + \ | gofmt >src/wikipedia/links.gen.go - find . -name '*.html.tmpl' -exec ./extpo {} + \ + find . \( -name '*.html.tmpl' -or -name '*.sql' \) -exec ./extpo {} + \ | msgcat po/backend.pot - -o po/messages.pot for bcp in $(ENABLED_LANGUAGES); \ do \ diff --git a/cmd/extpo/html.go b/cmd/extpo/html.go new file mode 100644 index 0000000..d53cbfa --- /dev/null +++ b/cmd/extpo/html.go @@ -0,0 +1,114 @@ +package main + +import ( + "strings" + "text/template/parse" +) + +func processHtml(path string) { + trees := make(map[string]*parse.Tree) + t := parse.New(path) + t.Mode |= parse.ParseComments | parse.SkipFuncCheck + try2(t.Parse(string(currentFile), "", "", trees)) + for _, t := range trees { + processHtmlNode(t.Root) + } +} + +func processHtmlNode(node parse.Node) { + switch n := node.(type) { + case *parse.ListNode: + for _, m := range n.Nodes { + processHtmlNode(m) + } + case *parse.PipeNode: + for _, m := range n.Cmds { + processHtmlNode(m) + } + case *parse.TemplateNode: + processHtmlNode(n.Pipe) + case *parse.IfNode: + processHtmlBranch(n.BranchNode) + case *parse.RangeNode: + processHtmlBranch(n.BranchNode) + case *parse.WithNode: + processHtmlBranch(n.BranchNode) + case *parse.BranchNode: + processHtmlBranch(*n) + case *parse.ActionNode: + processHtmlNode(n.Pipe) + case *parse.CommandNode: + if len(n.Args) == 0 { + break + } + + var funcname string + f, ok := n.Args[0].(*parse.FieldNode) + if !ok || len(f.Ident) == 0 { + ff, ok := n.Args[0].(*parse.VariableNode) + if !ok || len(ff.Ident) == 0 { + fff, ok := n.Args[0].(*parse.IdentifierNode) + if !ok { + for _, pipe := range n.Args { + processHtmlNode(pipe) + } + break + } + funcname = fff.Ident + } else { + funcname = ff.Ident[len(ff.Ident)-1] + } + } else { + funcname = f.Ident[len(f.Ident)-1] + } + + cfg, ok := configs[funcname] + if !ok { + for _, pipe := range n.Args { + processHtmlNode(pipe) + } + break + } + + var ( + tl translation + linenr int + ) + + if sn, ok := n.Args[cfg.arg].(*parse.StringNode); ok { + tl.msgid = sn.Text + linenr = getlinenr(sn.Pos.Position()) + } else { + break + } + if cfg.plural != -1 { + if sn, ok := n.Args[cfg.plural].(*parse.StringNode); ok { + tl.msgidPlural = sn.Text + } + } + if cfg.context != -1 { + if sn, ok := n.Args[cfg.context].(*parse.StringNode); ok { + tl.msgctxt = sn.Text + } + } + + ti := translations[tl] + if lastComment != "" { + ti.comment = lastComment + lastComment = "" + } + ti.locs = append(ti.locs, loc{currentPath, linenr}) + translations[tl] = ti + case *parse.CommentNode: + if strings.HasPrefix(n.Text, "/* TRANSLATORS:") { + lastComment = strings.TrimSpace(n.Text[2 : len(n.Text)-2]) + } + } +} + +func processHtmlBranch(n parse.BranchNode) { + processHtmlNode(n.List) + if n.ElseList != nil { + processHtmlNode(n.ElseList) + } +} diff --git a/cmd/extpo/main.go b/cmd/extpo/main.go index 6aa1503..5db7b7c 100644 --- a/cmd/extpo/main.go +++ b/cmd/extpo/main.go @@ -140,110 +140,11 @@ msgstr "" func process(path string) { currentPath = path currentFile = try2(os.ReadFile(path)) - trees := make(map[string]*parse.Tree) - t := parse.New(path) - t.Mode |= parse.ParseComments | parse.SkipFuncCheck - try2(t.Parse(string(currentFile), "", "", trees)) - for _, t := range trees { - processNode(t.Root) - } -} - -func processNode(node parse.Node) { - switch n := node.(type) { - case *parse.ListNode: - for _, m := range n.Nodes { - processNode(m) - } - case *parse.PipeNode: - for _, m := range n.Cmds { - processNode(m) - } - case *parse.TemplateNode: - processNode(n.Pipe) - case *parse.IfNode: - processBranch(n.BranchNode) - case *parse.RangeNode: - processBranch(n.BranchNode) - case *parse.WithNode: - processBranch(n.BranchNode) - case *parse.BranchNode: - processBranch(*n) - case *parse.ActionNode: - processNode(n.Pipe) - case *parse.CommandNode: - if len(n.Args) == 0 { - break - } - - var funcname string - f, ok := n.Args[0].(*parse.FieldNode) - if !ok || len(f.Ident) == 0 { - ff, ok := n.Args[0].(*parse.VariableNode) - if !ok || len(ff.Ident) == 0 { - fff, ok := n.Args[0].(*parse.IdentifierNode) - if !ok { - for _, pipe := range n.Args { - processNode(pipe) - } - break - } - funcname = fff.Ident - } else { - funcname = ff.Ident[len(ff.Ident)-1] - } - } else { - funcname = f.Ident[len(f.Ident)-1] - } - - cfg, ok := configs[funcname] - if !ok { - for _, pipe := range n.Args { - processNode(pipe) - } - break - } - - var ( - tl translation - linenr int - ) - - if sn, ok := n.Args[cfg.arg].(*parse.StringNode); ok { - tl.msgid = sn.Text - linenr = getlinenr(sn.Pos.Position()) - } else { - break - } - if cfg.plural != -1 { - if sn, ok := n.Args[cfg.plural].(*parse.StringNode); ok { - tl.msgidPlural = sn.Text - } - } - if cfg.context != -1 { - if sn, ok := n.Args[cfg.context].(*parse.StringNode); ok { - tl.msgctxt = sn.Text - } - } - - ti := translations[tl] - if lastComment != "" { - ti.comment = lastComment - lastComment = "" - } - ti.locs = append(ti.locs, loc{currentPath, linenr}) - translations[tl] = ti - case *parse.CommentNode: - if strings.HasPrefix(n.Text, "/* TRANSLATORS:") { - lastComment = strings.TrimSpace(n.Text[2 : len(n.Text)-2]) - } - } -} - -func processBranch(n parse.BranchNode) { - processNode(n.List) - if n.ElseList != nil { - processNode(n.ElseList) + switch { + case strings.HasSuffix(path, ".html.tmpl"): + processHtml(path) + case strings.HasSuffix(path, ".sql"): + processSql(path) } } diff --git a/cmd/extpo/sql.go b/cmd/extpo/sql.go new file mode 100644 index 0000000..43bea9c --- /dev/null +++ b/cmd/extpo/sql.go @@ -0,0 +1,54 @@ +package main + +import ( + "bytes" + "errors" + "io" + + "github.com/rqlite/sql" +) + +type sqlVisitor struct{} + +func processSql(path string) { + p := sql.NewParser(bytes.NewReader(currentFile)) + for { + stmt, err := p.ParseStatement() + switch { + case errors.Is(err, io.EOF): + return + case err != nil: + die(err) + } + sql.Walk(sqlVisitor{}, stmt) + } +} + +func processSqlArgs(msgidExpr, msgctxtExpr sql.Expr, pos sql.Pos) { + msgid, ok := msgidExpr.(*sql.StringLit) + if !ok { + return + } + msgctxt, ok := msgctxtExpr.(*sql.StringLit) + if !ok { + return + } + tl := translation{ + msgid: msgid.Value, + msgctxt: msgctxt.Value, + } + ti := translations[tl] + ti.locs = append(ti.locs, loc{currentPath, pos.Line}) + translations[tl] = ti +} + +func (v sqlVisitor) Visit(n sql.Node) (sql.Visitor, sql.Node, error) { + if cn, ok := n.(*sql.Call); ok && sql.IdentName(cn.Name) == "C_" { + processSqlArgs(cn.Args[0], cn.Args[1], cn.Lparen) + } + return v, n, nil +} + +func (v sqlVisitor) VisitEnd(n sql.Node) (sql.Node, error) { + return n, nil +} @@ -8,4 +8,6 @@ require ( github.com/mattn/go-sqlite3 v1.14.28 golang.org/x/crypto v0.39.0 golang.org/x/text v0.26.0 -)
\ No newline at end of file +) + +require github.com/rqlite/sql v0.0.0-20250623131620-453fa49cad04 // indirect @@ -11,6 +11,8 @@ github.com/lib/pq v1.10.9/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= github.com/mattn/go-sqlite3 v1.14.22/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y= github.com/mattn/go-sqlite3 v1.14.28 h1:ThEiQrnbtumT+QMknw63Befp/ce/nUPgBPMlRFEum7A= github.com/mattn/go-sqlite3 v1.14.28/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y= +github.com/rqlite/sql v0.0.0-20250623131620-453fa49cad04 h1:bjr7gZERAJhYhqkLHXbkBSpjbB+PlgW6e9CRCJ2+J/w= +github.com/rqlite/sql v0.0.0-20250623131620-453fa49cad04/go.mod h1:ib9zVtNgRKiGuoMyUqqL5aNpk+r+++YlyiVIkclVqPg= golang.org/x/crypto v0.39.0 h1:SHs+kF4LP+f+p14esP5jAoDpHU8Gu/v9lFRK6IT5imM= golang.org/x/crypto v0.39.0/go.mod h1:L+Xg3Wf6HoL4Bn4238Z6ft6KfEpN0tJGo53AAPC632U= golang.org/x/text v0.26.0 h1:P42AVeLghgTYr4+xUnTRKDMqpar+PtX7KWuNQL21L8M= diff --git a/po/en/messages.po b/po/en/messages.po index eafae4e..12b1c72 100644 --- a/po/en/messages.po +++ b/po/en/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Euro Cash Wiki v1.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-03 13:22+0100\n" +"POT-Creation-Date: 2025-11-03 15:47+0100\n" "PO-Revision-Date: 2025-08-03 22:47+0200\n" "Last-Translator: Thomas Voss <mail@thomasvoss.com>\n" "Language-Team: N/A\n" @@ -294,93 +294,191 @@ msgctxt "Place Name" msgid "Vatican City" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:60 -msgid "Estonian €1 coin" -msgstr "Estonian €1 coin" +#: src/templates/coins-designs-ee.html.tmpl:170 +msgid "Rene Haljasmäe" +msgstr "Rene Haljasmäe" -#: src/templates/coins-designs-ee.html.tmpl:92 -#: src/templates/coins-designs-ee.html.tmpl:106 -#: src/templates/coins-designs-ee.html.tmpl:114 -#: src/templates/coins-designs-ee.html.tmpl:122 -#: src/templates/coins-designs-ee.html.tmpl:131 -#: src/templates/coins-designs-ee.html.tmpl:140 -#: src/templates/coins-designs-ee.html.tmpl:147 -#: src/templates/coins-designs-ee.html.tmpl:155 -#: src/templates/coins-designs-ee.html.tmpl:163 -#: src/templates/coins-designs-ee.html.tmpl:172 -#: src/templates/coins-designs-ee.html.tmpl:180 -msgctxt "Header/Label" -msgid "Votes (%)" +#: src/templates/collecting-crh.html.tmpl:426 +msgctxt "Company Name" +msgid "HSBC Bank Malta" msgstr "" -#: src/templates/collecting-crh.html.tmpl:116 -msgctxt "Company Name" -msgid "KBC Bank" +#: src/templates/index.html.tmpl:14 +msgid "diversity" +msgstr "diversity" + +#: src/templates/coins-designs-hr.html.tmpl:33 +msgid "" +"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)." msgstr "" -#: src/templates/collecting.html.tmpl:46 -msgid "Shop Hunting" +#: src/templates/collecting-storage.html.tmpl:21 +msgid "" +"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." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:53 +#. TRANSLATORS: As in ‘5 Euro Banknote’ +#: src/templates/banknotes-codes.html.tmpl:512 +msgid "{N} Euro" +msgid_plural "{N} Euro" +msgstr[0] "" +msgstr[1] "" + +#: src/templates/coins-designs-ee.html.tmpl:138 +msgid "Jaak Peep, Villem Valme" +msgstr "Jaak Peep, Villem Valme" + +#: src/templates/collecting-crh.html.tmpl:43 msgid "" -"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." +"Be aware of the fact that the information below may be outdated or " +"inaccurate. Many of the details are self-reported." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:91 -#: src/templates/coins-designs-ee.html.tmpl:105 -#: src/templates/coins-designs-ee.html.tmpl:113 -#: src/templates/coins-designs-ee.html.tmpl:121 -#: src/templates/coins-designs-ee.html.tmpl:130 -#: src/templates/coins-designs-ee.html.tmpl:139 -#: src/templates/coins-designs-ee.html.tmpl:146 -#: src/templates/coins-designs-ee.html.tmpl:154 -#: src/templates/coins-designs-ee.html.tmpl:162 -#: src/templates/coins-designs-ee.html.tmpl:171 -#: src/templates/coins-designs-ee.html.tmpl:179 -msgctxt "Header/Label" -msgid "Votes" +#: src/templates/coins.html.tmpl:31 +msgid "View the 600+ different Euro-coin designs" +msgstr "View the 600+ different Euro-coin designs" + +#: src/templates/jargon.html.tmpl:61 +msgid "" +"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." msgstr "" -#: src/templates/jargon.html.tmpl:27 -msgid "General Terms" +#: src/templates/collecting-storage.html.tmpl:72 +msgid "Flips and capsules in a box" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:14 -msgid "Croatian €0.50 coin" -msgstr "Croatian €0.50 coin" +#: src/templates/banknotes-codes.html.tmpl:329 +#: src/templates/banknotes-codes.html.tmpl:461 +#: src/templates/collecting-crh.html.tmpl:263 +msgctxt "Company Name" +msgid "Bank of France" +msgstr "" -#: src/templates/banknotes.html.tmpl:22 +#: src/templates/coins-designs-ee.html.tmpl:119 +msgctxt "Coin Design" +msgid "In the Body" +msgstr "" + +#: src/templates/coins-designs-ee.html.tmpl:177 +msgctxt "Coin Design" +msgid "A Flower in the Rye" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:439 +msgid "" +"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." +msgstr "" + +#: src/templates/banknotes.html.tmpl:29 src/templates/coins.html.tmpl:29 +msgid "Designs" +msgstr "Designs" + +#: src/templates/coins.html.tmpl:22 msgid "" "On this section of the site you can find everything there is to know about " -"the banknotes of the Eurozone." +"the coins of the Eurozone." msgstr "" "On this section of the site you can find everything there is to know about " -"the banknotes of the Eurozone." +"the coins of the Eurozone." -#: src/templates/-base.html.tmpl:54 -msgid "Found a mistake or want to contribute missing information?" -msgstr "Found a mistake or want to contribute missing information?" +#: src/templates/coins-designs-ad.html.tmpl:20 +msgid "" +"On March of 2013 Andorra held a public design competition for all " +"denominations except for the €2 denomination which the government pre-" +"decided would bear the coat of arms of Andorra. Each set of denominations " +"had a theme that participants had to center their designs around. These " +"themes were:" +msgstr "" +"On March of 2013 Andorra held a public design competition for all " +"denominations except for the €2 denomination which the government pre-" +"decided would bear the coat of arms of Andorra. Each set of denominations " +"had a theme that participants had to center their designs around. These " +"themes were:" -#: src/templates/banknotes-codes.html.tmpl:267 -#: src/templates/banknotes-codes.html.tmpl:393 -msgctxt "Header/Label" -msgid "Printer" +#: src/templates/coins-designs-ad.html.tmpl:25 +msgid "€0.10, €0.20 and €0.50" +msgstr "€0.10, €0.20 and €0.50" + +#: src/templates/collecting-storage.html.tmpl:51 +msgid "Coin Rolls" msgstr "" -#: src/templates/collecting-crh.html.tmpl:150 +#: src/templates/collecting-crh.html.tmpl:93 msgid "" -"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." +"There is a fee of €1 per roll if you aren’t a customer and €0.30 otherwise. " +"Coin deposits are free for customers." msgstr "" -#: src/templates/-navbar.html.tmpl:48 -msgid "Jargon" -msgstr "Jargon" +#: src/templates/-404.html.tmpl:12 +msgid "" +"The page you were looking for does not exist. If you believe this is a " +"mistake then don’t hesitate to contact ‘@onetruemangoman’ on Discord or " +"email us at {Email:e}." +msgstr "" +"The page you were looking for does not exist. If you believe this is a " +"mistake then don’t hesitate to contact ‘@onetruemangoman’ on Discord or " +"email us at {Email:e}." + +#: src/templates/collecting-vending.html.tmpl:48 +msgid "" +"There are some limits to vending machine hunts which you need to be aware of." +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:8 +#: src/templates/collecting.html.tmpl:29 +msgid "Coin Roll Hunting" +msgstr "Coin Roll Hunting" + +#: src/templates/coins-designs-ad.html.tmpl:41 +msgid "Rejected Andorran design" +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:42 +msgid "" +"Euro banknotes have two codes on them: a printer code and a serial number. " +"The printer code tells you where a given note was printed, while the serial " +"number tells you which country issued the banknote (for the 2002 series) or " +"where the banknote was printed (for the Europa series)." +msgstr "" +"Euro banknotes have two codes on them: a printer code and a serial number. " +"The printer code tells you where a given note was printed, while the serial " +"number tells you which country issued the banknote (for the 2002 series) or " +"where the banknote was printed (for the Europa series)." + +#: src/templates/coins-designs-de.html.tmpl:15 +msgid "German €0.10 coin" +msgstr "German €0.10 coin" + +#: src/templates/collecting-crh.html.tmpl:127 +msgid "" +"Rolls can be obtained with no fee when you order through their online " +"platform." +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:278 +#: src/templates/collecting-crh.html.tmpl:286 +msgid "" +"Free coin rolls if you are a customer or €1 per roll if you are not a " +"customer. There are coin roll machines." +msgstr "" + +#: src/templates/coins-designs-be.html.tmpl:30 +msgid "Belgian €1 coin (King Albert; Series 2)" +msgstr "Belgian €1 coin (King Albert; Series 2)" #: src/templates/coins-designs-at.html.tmpl:30 msgid "" @@ -392,724 +490,838 @@ msgid "" "Nouveau style." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:8 -msgid "Andorran Euro Coin Designs" -msgstr "Andorran Euro Coin Designs" +#: src/templates/-base.html.tmpl:55 +msgid "Feel free to contact us!" +msgstr "Feel free to contact us!" -#: src/templates/coins-designs-ad.html.tmpl:12 -msgid "Andorran €0.01 coin" -msgstr "Andorran €0.01 coin" +#: src/templates/coins-mintages.html.tmpl:190 +#: src/templates/coins-mintages.html.tmpl:227 +msgctxt "Header/Label" +msgid "Commemorated Topic" +msgstr "" -#: src/templates/coins-mintages.html.tmpl:186 -#: src/templates/coins-mintages.html.tmpl:223 -msgid "Commemorative Coins" -msgstr "Commemorative Coins" +#: src/templates/collecting-crh.html.tmpl:90 +msgctxt "Company Name" +msgid "Raiffeisen Bank" +msgstr "" -#: src/templates/collecting-crh.html.tmpl:119 -msgid "Rolls can be obtained with no fee by customers only" +#: src/templates/collecting-crh.html.tmpl:137 +msgid "" +"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." msgstr "" -#: src/templates/-navbar.html.tmpl:43 -msgid "Home" -msgstr "Home" +#: src/templates/collecting-crh.html.tmpl:247 +msgid "" +"The Mint of Finland ceased all operations in late 2024 but still sells coins " +"on their website." +msgstr "" -#: src/templates/coins-designs-nl.html.tmpl:8 -msgid "Dutch Euro Coin Designs" -msgstr "Dutch Euro Coin Designs" +#: src/templates/collecting-crh.html.tmpl:467 +msgid "Coin rolls are available for a fee of €7 + €0.35 per roll." +msgstr "" -#: src/templates/coins-designs-be.html.tmpl:46 -#: src/templates/coins-designs-be.html.tmpl:51 -msgid "2008 portrait of King Albert II" +#: src/templates/index.html.tmpl:15 +msgid "cash" +msgstr "cash" + +#: src/templates/coins-designs-be.html.tmpl:57 +msgid "" +"In 2008 a second series of coins was released featuring a slightly modified " +"design in which the royal monogram was moved to the inner portion of the " +"coin along with the year of mintage in order to comply with the European " +"Commission’s guidelines. The country code ‘BE’ was also added to the design " +"underneath the royal monogram. The 2008 redesign also saw the use of a " +"slightly modified portrait of the King, but this design change was reverted " +"in 2009." msgstr "" -#: src/templates/coins-designs-at.html.tmpl:34 -msgid "Austrian €2 coin" -msgstr "Austrian €2 coin" +#: src/templates/coins-designs-at.html.tmpl:18 +msgid "Austrian €0.02 coin" +msgstr "Austrian €0.02 coin" -#: src/templates/collecting-crh.html.tmpl:374 -msgctxt "Company Name" -msgid "Top Exchange" +#: src/templates/banknotes.html.tmpl:45 +msgid "Test Notes" +msgstr "Test Notes" + +#: src/templates/collecting-storage.html.tmpl:33 +msgid "Coin Capsules" msgstr "" -#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script -#: src/templates/coins-designs-ee.html.tmpl:128 -msgctxt "Coin Design" -msgid "Tomson 5791" +#: src/templates/collecting-crh.html.tmpl:11 +msgid "What is ‘Coin Roll Hunting’?" msgstr "" -#. TRANSLATORS: Beginning of sentence, as in ‘United in …’ -#: src/templates/index.html.tmpl:13 -msgid "United in" -msgstr "United in" +#: src/templates/collecting-crh.html.tmpl:39 +msgid "" +"Below you can find country-specific details we have regarding obtaining coin " +"rolls. We lack a lot of information for many of the countries, so if you " +"have any additional information such as your banks fees, the availability of " +"coin roll machines, etc. feel free to contact us! You can find our contact " +"information {Link:l}here{-:E}." +msgstr "" -#: src/templates/collecting.html.tmpl:56 -msgid "Learn about collecting coins from vending machines" +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:297 +msgctxt "Company Name" +msgid "LCL" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:22 +#: src/templates/coins-designs-ee.html.tmpl:76 msgid "" -"The bronze coins feature the Alpine gentian, edelweiss and primrose " -"respectively, and were chosen to symbolize the role that Austria played in " -"the development of EU environmental policy." +"The winner of the contest was awarded 50,000 KR (€3,196) while the other " +"finalists were each awarded 20,000 KR (€1,278)." msgstr "" +"The winner of the contest was awarded 50,000 KR (€3,196) while the other " +"finalists were each awarded 20,000 KR (€1,278)." -#: src/templates/banknotes-codes.html.tmpl:357 -#: src/templates/banknotes-codes.html.tmpl:439 +#. TRANSLATORS: The OeNB prefers ‘Oe’ over ‘Ö’ +#: src/templates/collecting-crh.html.tmpl:59 msgctxt "Company Name" -msgid "Federal Printing Office" +msgid "Austrian National Bank" msgstr "" #. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:223 +#: src/templates/collecting-crh.html.tmpl:464 msgctxt "Company Name" -msgid "La Caixa" +msgid "ING" msgstr "" -#: src/templates/collecting-crh.html.tmpl:402 -msgid "" -"In general coin rolls are sold with for fee of €0.60 per roll, but we’re " -"lacking a lot of information." +#: src/templates/collecting-crh.html.tmpl:487 +msgctxt "Company Name" +msgid "Banco Comercial Português" msgstr "" -#: src/templates/-404.html.tmpl:12 -msgid "" -"The page you were looking for does not exist. If you believe this is a " -"mistake then don’t hesitate to contact ‘@onetruemangoman’ on Discord or " -"email us at {Email:e}." +#: src/dbx/sql/last.sql:151 +msgctxt "CC Name" +msgid "Slovak Republic to the EU" msgstr "" -"The page you were looking for does not exist. If you believe this is a " -"mistake then don’t hesitate to contact ‘@onetruemangoman’ on Discord or " -"email us at {Email:e}." -#: src/templates/coins-designs.html.tmpl:29 -msgid "" -"Here you’ll be able to view all the coin designs for each country in the " -"Eurozone. This section of the site doesn’t include minor varieties such as " -"different mintmarks or errors; those are on the {Link:l}varieties{-:E} page." +#: src/dbx/sql/last.sql:152 +msgctxt "CC Name" +msgid "Ľudovít Štúr" msgstr "" -"Here you’ll be able to view all the coin designs for each country in the " -"Eurozone. This section of the site doesn’t include minor varieties such as " -"different mintmarks or errors; those are on the {Link:l}varieties{-:E} page." -#: src/templates/banknotes-codes.html.tmpl:85 +#: src/templates/about.html.tmpl:17 +msgid "Contact Us" +msgstr "Contact Us" + +#: src/templates/collecting-storage.html.tmpl:48 msgid "" -"The first letter in the printer code identifies the specific printer at " -"which the banknote was printed. The tables below will tell you which letters " -"correspond to which printers. The final letter and number form a pair (such " -"as ‘A2’ or ‘D6’) — this pair acts as a set of coordinates telling you where " -"on the sheet of paper the banknote was located. During printing, banknotes " -"are printed in a grid on a large sheet of paper which is then cut into " -"individual banknotes. A note with the pair ‘A1’ will have been at the upper-" -"left corner of the printing sheet, with ‘A2’ to its right and ‘B1’ below it." +"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." msgstr "" -"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." -#: src/templates/banknotes-codes.html.tmpl:321 -#: src/templates/banknotes-codes.html.tmpl:453 -#: src/templates/collecting-crh.html.tmpl:336 +#: src/templates/-base.html.tmpl:54 +msgid "Found a mistake or want to contribute missing information?" +msgstr "Found a mistake or want to contribute missing information?" + +#: src/templates/banknotes-codes.html.tmpl:475 msgctxt "Company Name" -msgid "Central Bank of Ireland" +msgid "Giesecke+Devrient Leipzig" msgstr "" -#: src/templates/collecting-crh.html.tmpl:205 -msgid "Coin rolls are free but you must be a customer." -msgstr "" +#: src/templates/coins-designs-ee.html.tmpl:161 +msgid "Jaarno Ester" +msgstr "Jaarno Ester" -#: src/templates/collecting-crh.html.tmpl:490 -msgid "Coin bags are sold with no additional fees to bank customers." +#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script +#: src/templates/coins-designs-ee.html.tmpl:169 +msgctxt "Coin Design" +msgid "Nova" msgstr "" -#: src/templates/-navbar.html.tmpl:46 -msgid "Coins" -msgstr "Coins" - #. TRANSLATORS: Name of a bank #: src/templates/collecting-crh.html.tmpl:251 msgctxt "Company Name" msgid "Aktia Bank" msgstr "" -#: src/templates/collecting-crh.html.tmpl:370 -msgid "Coin rolls are available with a fee of 5%." -msgstr "" - -#: src/templates/collecting-crh.html.tmpl:422 -#: src/templates/collecting-crh.html.tmpl:429 -msgid "" -"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." +#: src/templates/collecting-crh.html.tmpl:496 +msgid "In general there is a €1.20 fee for coin rolls." msgstr "" -#: src/templates/coins.html.tmpl:37 -msgid "Mintages" -msgstr "Mintages" - -#: src/templates/-navbar.html.tmpl:44 -msgid "News" -msgstr "News" - -#: src/templates/banknotes-codes.html.tmpl:72 -msgid "Europa Series Printer Codes" -msgstr "Europa Series Printer Codes" +#: src/templates/coins-designs-at.html.tmpl:26 +msgid "Austrian €0.20 coin" +msgstr "Austrian €0.20 coin" -#: src/templates/coins-designs-ee.html.tmpl:85 -#: src/templates/coins-designs-ee.html.tmpl:100 -#: src/templates/coins-designs-ee.html.tmpl:109 -#: src/templates/coins-designs-ee.html.tmpl:117 -#: src/templates/coins-designs-ee.html.tmpl:125 -#: src/templates/coins-designs-ee.html.tmpl:134 -#: src/templates/coins-designs-ee.html.tmpl:143 -#: src/templates/coins-designs-ee.html.tmpl:150 -#: src/templates/coins-designs-ee.html.tmpl:158 -#: src/templates/coins-designs-ee.html.tmpl:166 -#: src/templates/coins-designs-ee.html.tmpl:175 +#: src/templates/coins-designs-de.html.tmpl:25 msgctxt "Header/Label" -msgid "Position" +msgid "City" msgstr "" -#: src/templates/collecting-crh.html.tmpl:11 -msgid "What is ‘Coin Roll Hunting’?" -msgstr "" +#: src/templates/coins-designs-ee.html.tmpl:145 +msgid "Mai Järmut, Villu Järmut" +msgstr "Mai Järmut, Villu Järmut" -#: src/templates/collecting-crh.html.tmpl:13 +#: src/templates/collecting-crh.html.tmpl:30 msgid "" -"Coin roll hunting is a popular method of coin collecting in which you " -"withdraw cash from your bank in the form of coins and then search through " -"those coins to find new additions to your collection. Once you’ve searched " -"through all your coins, you will typically deposit your left over coins at " -"the bank and withdraw new coins." +"It is also important to find details regarding the deposit of coins. " +"Depositing coins often also requires the payment of a fee – one which is " +"typically more expensive than the withdrawal fees. If depositing your coins " +"is too expensive you can always exchange your left over coins at shops for " +"banknotes. It is often cheaper (or even free) to deposit banknotes." msgstr "" -#: src/templates/collecting-crh.html.tmpl:157 -msgid "Hand-rolled coin rolls can be obtained with no additional fees." +#: src/templates/collecting-crh.html.tmpl:309 +msgid "" +"{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)." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:329 -#: src/templates/banknotes-codes.html.tmpl:461 -#: src/templates/collecting-crh.html.tmpl:263 -msgctxt "Company Name" -msgid "Bank of France" +#: src/templates/collecting-crh.html.tmpl:525 +msgid "" +"We currently have no information regarding coin roll hunting in San Marino." msgstr "" -#. TRANSLATORS: ‘Estonian’ as in the language, not the nationality -#: src/templates/coins-designs-ee.html.tmpl:137 -msgctxt "Coin Design" -msgid "Estonian" -msgstr "" +#: src/templates/language.html.tmpl:46 src/templates/language.html.tmpl:85 +msgid "Eurozone Languages" +msgstr "Eurozone Languages" -#: src/templates/coins-mintages.html.tmpl:110 -#: src/templates/coins-mintages.html.tmpl:148 -msgid "Standard Issue Coins" -msgstr "Standard Issue Coins" +#: src/templates/coins-designs-hr.html.tmpl:14 +msgid "Croatian €0.50 coin" +msgstr "Croatian €0.50 coin" -#: src/templates/collecting-crh.html.tmpl:244 -msgctxt "Company Name" -msgid "Mint of Finland" +#: src/templates/coins-designs-ad.html.tmpl:32 +msgid "" +"The results of the design contest with a few modifications are what became " +"the coins that entered circulation in 2014. While each set of denominations " +"has its own design, all four designs prominently feature the name of the " +"Principality (‘ANDORRA’) along the outer portion of the design with the year " +"of issue written underneath." msgstr "" -#: src/templates/collecting-crh.html.tmpl:313 -msgid "" -"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." +#: src/templates/jargon.html.tmpl:15 +msgid "Euro Cash Jargon" +msgstr "Euro Cash Jargon" + +#: src/templates/banknotes-codes.html.tmpl:98 +#: src/templates/banknotes-codes.html.tmpl:141 +#: src/templates/banknotes-codes.html.tmpl:185 +#: src/templates/banknotes-codes.html.tmpl:265 +#: src/templates/banknotes-codes.html.tmpl:391 +#: src/templates/coins-mintages.html.tmpl:56 +#: src/templates/coins-mintages.html.tmpl:62 +#: src/templates/coins-mintages.html.tmpl:152 +#: src/templates/coins-mintages.html.tmpl:226 +msgctxt "Header/Label" +msgid "Country" msgstr "" -#: src/templates/collecting-crh.html.tmpl:444 +#: src/templates/coins-designs-hr.html.tmpl:18 +msgid "Croatian €2 coin" +msgstr "Croatian €2 coin" + +#: src/templates/jargon.html.tmpl:45 msgid "" -"1- and 2 cent coins have been removed from circulation and cannot be " -"obtained." +"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." msgstr "" -#: src/templates/-404.html.tmpl:8 -msgid "Page Not Found" -msgstr "Page Not Found" - -#: src/templates/collecting.html.tmpl:48 -msgid "Learn about how to collect coins from shops" +#: src/templates/coins-designs-de.html.tmpl:47 +msgctxt "Place Name" +msgid "Hamburg" msgstr "" -#: src/templates/banknotes.html.tmpl:18 -msgid "Euro Banknotes" -msgstr "Euro Banknotes" +#: src/templates/coins-mintages.html.tmpl:39 +msgid "" +"Here you’ll be able to view all the known mintages for all coins. You’ll " +"also be able to filter on country, denomination, etc. If you have any " +"mintage data that’s missing from our site, feel free to contact us." +msgstr "" +"Here you’ll be able to view all the known mintages for all coins. You’ll " +"also be able to filter on country, denomination, etc. If you have any " +"mintage data that’s missing from our site, feel free to contact us." -#: src/templates/banknotes-codes.html.tmpl:50 +#: src/templates/coins-designs-ad.html.tmpl:53 msgid "" -"The printer code can be a bit tricky to find. The following dropdown menus " -"will show you where to find the printer code on each note." +"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." msgstr "" -"The printer code can be a bit tricky to find. The following dropdown menus " -"will show you where to find the printer code on each note." -#: src/templates/coins-designs-de.html.tmpl:57 +#: src/templates/collecting-storage.html.tmpl:76 +msgid "Coins in an album" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:112 msgid "" -"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." +"There is a €1.50 fee per transaction with no limit on the number of rolls " +"you may take." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:111 -msgctxt "Coin Design" -msgid "Consistency" +#: src/templates/collecting.html.tmpl:48 +msgid "Learn about how to collect coins from shops" msgstr "" -#: src/templates/collecting-crh.html.tmpl:218 -msgid "Coin rolls have no fees." +#: src/templates/collecting-crh.html.tmpl:147 +msgctxt "Company Name" +msgid "German Federal Bank" msgstr "" -#: src/templates/collecting-crh.html.tmpl:326 -msgid "" -"We currently have no information regarding coin roll hunting in Croatia." +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:283 +msgctxt "Company Name" +msgid "Crédit Mutuel" msgstr "" -#: src/templates/-navbar.html.tmpl:53 -msgid "Discord" -msgstr "Discord" +#: src/templates/collecting-vending.html.tmpl:8 +#: src/templates/collecting.html.tmpl:18 +msgid "Euro Coin Collecting" +msgstr "Euro Coin Collecting" -#: src/templates/jargon.html.tmpl:31 +#: src/templates/coins-designs-at.html.tmpl:22 msgid "" -"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)." +"The bronze coins feature the Alpine gentian, edelweiss and primrose " +"respectively, and were chosen to symbolize the role that Austria played in " +"the development of EU environmental policy." msgstr "" -#: src/templates/jargon.html.tmpl:45 +#: src/templates/collecting-storage.html.tmpl:30 msgid "" -"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." +"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." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:88 -msgid "2002 Series" -msgstr "2002 Series" +#: src/templates/collecting-storage.html.tmpl:42 +msgid "Coin Flips" +msgstr "" -#: src/templates/collecting-crh.html.tmpl:161 -msgctxt "Company Name" -msgid "Sparkasse" +#: src/templates/collecting-storage.html.tmpl:68 +msgid "Capsules in a case" msgstr "" -#: src/templates/collecting-crh.html.tmpl:496 -msgid "In general there is a €1.20 fee for coin rolls." +#: src/templates/banknotes-codes.html.tmpl:85 +msgid "" +"The first letter in the printer code identifies the specific printer at " +"which the banknote was printed. The tables below will tell you which letters " +"correspond to which printers. The final letter and number form a pair (such " +"as ‘A2’ or ‘D6’) – this pair acts as a set of coordinates telling you where " +"on the sheet of paper the banknote was located. During printing, banknotes " +"are printed in a grid on a large sheet of paper which is then cut into " +"individual banknotes. A note with the pair ‘A1’ will have been at the upper-" +"left corner of the printing sheet, with ‘A2’ to its right and ‘B1’ below it." msgstr "" -#: src/templates/banknotes.html.tmpl:45 -msgid "Test Notes" -msgstr "Test Notes" +#: src/templates/about.html.tmpl:8 +msgid "About Us" +msgstr "About Us" -#: src/templates/coins-designs-ad.html.tmpl:13 -msgid "Andorran €0.50 coin" -msgstr "Andorran €0.50 coin" +#: src/templates/-navbar.html.tmpl:97 +msgid "Language" +msgstr "Language" #: src/templates/jargon.html.tmpl:67 msgid "CRH — Coin Roll Hunting" msgstr "CRH — Coin Roll Hunting" -#: src/templates/collecting-crh.html.tmpl:168 -msgctxt "Company Name" -msgid "Volksbank" +#: src/templates/collecting-storage.html.tmpl:58 +msgid "" +"In case you’re looking for some inspiration on how to store your " +"collections, here are some examples:" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:29 +#: src/templates/coins-designs-ee.html.tmpl:65 msgid "" -"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’." +"The Estonian euro coins feature the same design across all eight " +"denominations. The country’s outline is prominently displayed above the " +"country’s name in Estonian (‘{EstonianStart:r}EESTI{EstonianEnd:E}’)." msgstr "" +"The Estonian euro coins feature the same design across all eight " +"denominations. The country’s outline is prominently displayed above the " +"country’s name in Estonian (‘{EstonianStart:r}EESTI{EstonianEnd:E}’)." -#: src/templates/coins-designs-at.html.tmpl:33 -msgid "Austrian €1 coin" -msgstr "Austrian €1 coin" +#: src/templates/coins-designs-be.html.tmpl:26 +msgid "Belgian €1 coin (King Albert; Series 1)" +msgstr "Belgian €1 coin (King Albert; Series 1)" -#: src/templates/banknotes-codes.html.tmpl:336 -#: src/templates/banknotes-codes.html.tmpl:468 -#: src/templates/collecting-crh.html.tmpl:198 -msgctxt "Company Name" -msgid "Royal Mint of Spain" +#: src/templates/coins-designs-be.html.tmpl:60 +msgid "" +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:171 -msgid "Coin rolls can be obtained for a fee of €0.25 per roll." +#: src/templates/banknotes-codes.html.tmpl:50 +msgid "" +"The printer code can be a bit tricky to find. The following dropdown menus " +"will show you where to find the printer code on each note." msgstr "" +"The printer code can be a bit tricky to find. The following dropdown menus " +"will show you where to find the printer code on each note." -#: src/templates/collecting-crh.html.tmpl:377 -msgid "Fee of €2 per roll of 2 euro coins." +#: src/templates/collecting-crh.html.tmpl:354 +msgid "" +"There are coin roll machines but it is unknown if you need to be a customer " +"or if there are additional fees." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:20 +#: src/templates/collecting-crh.html.tmpl:402 msgid "" -"On March of 2013 Andorra held a public design competition for all " -"denominations except for the €2 denomination which the government pre-" -"decided would bear the coat of arms of Andorra. Each set of denominations " -"had a theme that participants had to center their designs around. These " -"themes were:" +"In general coin rolls are sold with for fee of €0.60 per roll, but we’re " +"lacking a lot of information." msgstr "" -"On March of 2013 Andorra held a public design competition for all " -"denominations except for the €2 denomination which the government pre-" -"decided would bear the coat of arms of Andorra. Each set of denominations " -"had a theme that participants had to center their designs around. These " -"themes were:" -#: src/templates/collecting-crh.html.tmpl:79 +#: src/templates/collecting-crh.html.tmpl:448 msgctxt "Company Name" -msgid "Erste Bank" +msgid "The Dutch Central Bank" msgstr "" -#: src/templates/collecting-crh.html.tmpl:512 +#: src/templates/-error.html.tmpl:12 msgid "" -"You may be able to get uncirculated rolls, but this is not yet confirmed." +"If you’re seeing this page, it means that something went wrong on our end " +"that we need to fix. Our team has been notified of this error, and we " +"apologise for the inconvenience." msgstr "" +"If you’re seeing this page, it means that something went wrong on our end " +"that we need to fix. Our team has been notified of this error, and we " +"apologise for the inconvenience." -#: src/templates/collecting.html.tmpl:39 -msgid "Learn about the different methods to storing your collection" +#: src/templates/collecting-vending.html.tmpl:28 +msgid "" +"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." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:411 -msgctxt "Company Name" -msgid "Oberthur Fiduciaire AD" +#: src/templates/collecting-vending.html.tmpl:73 +msgid "" +"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 " +"€4.90 max change limit." msgstr "" -#. TRANSLATORS: The OeNB prefers ‘Oe’ over ‘Ö’ -#: src/templates/collecting-crh.html.tmpl:59 -msgctxt "Company Name" -msgid "Austrian National Bank" -msgstr "" +#: src/templates/coins-designs-at.html.tmpl:33 +msgid "Austrian €1 coin" +msgstr "Austrian €1 coin" -#: src/templates/collecting-crh.html.tmpl:354 +#: src/templates/collecting-storage.html.tmpl:26 msgid "" -"There are coin roll machines but it is unknown if you need to be a customer " -"or if there are additional fees." +"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 on top of each " +"other. Each layer has a grid of slots where you can insert your coins. " +"Typically you are meant to store your coins in a layer encased in a coin " +"capsule." msgstr "" -#: src/templates/collecting-crh.html.tmpl:531 -msgid "" -"Ask the Pope nicely and he’ll probably give you some Vatican coins for free." -msgstr "" +#: src/templates/coins-mintages.html.tmpl:35 +msgid "Euro Coin Mintages" +msgstr "Euro Coin Mintages" -#: src/templates/banknotes-codes.html.tmpl:42 +#: src/templates/coins-mintages.html.tmpl:46 msgid "" -"Euro banknotes have two codes on them: a printer code and a serial number. " -"The printer code tells you where a given note was printed, while the serial " -"number tells you which country issued the banknote (for the 2002 series) or " -"where the banknote was printed (for the Europa series)." +"Most coins from the years 2003–2016 are listed as NIFC coins while other " +"popular sources such as Numista claim they were minted for circulation. For " +"more information on why others are wrong, {Link:l}click here{-:E}." msgstr "" -"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)." +"Most coins from the years 2003–2016 are listed as NIFC coins while other " +"popular sources such as Numista claim they were minted for circulation. For " +"more information on why others are wrong, {Link:l}click here{-:E}." -#: src/templates/banknotes-codes.html.tmpl:269 -#: src/templates/banknotes-codes.html.tmpl:395 -msgctxt "Header/Label" -msgid "Local Names" +#: src/templates/collecting.html.tmpl:54 +msgid "Vending Machine Hunting" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:381 -msgid "Europa Series" -msgstr "Europa Series" +#: src/templates/banknotes-codes.html.tmpl:38 +#: src/templates/banknotes.html.tmpl:37 +msgid "Location Codes" +msgstr "Location Codes" -#: src/templates/coins-designs-de.html.tmpl:39 -msgctxt "Place Name" -msgid "Stuttgart" +#: src/templates/coins-mintages.html.tmpl:43 +msgid "Additional Notes" +msgstr "Additional Notes" + +#: src/templates/collecting-crh.html.tmpl:154 +msgctxt "Company Name" +msgid "German Post" msgstr "" -#: src/templates/collecting-crh.html.tmpl:516 +#: src/templates/collecting-crh.html.tmpl:367 msgctxt "Company Name" -msgid "Tatra banka" +msgid "ExchangeLT" msgstr "" -#: src/templates/banknotes.html.tmpl:29 src/templates/coins.html.tmpl:29 -msgid "Designs" -msgstr "Designs" +#: src/templates/collecting-crh.html.tmpl:490 +msgid "Coin bags are sold with no additional fees to bank customers." +msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:25 -msgid "€0.10, €0.20 and €0.50" -msgstr "€0.10, €0.20 and €0.50" +#: src/templates/collecting-crh.html.tmpl:503 +msgid "" +"You can purchase commemorative coins for face value, and coin rolls are sold " +"with no fees to everyone." +msgstr "" -#: src/templates/banknotes-codes.html.tmpl:97 -#: src/templates/banknotes-codes.html.tmpl:140 -#: src/templates/banknotes-codes.html.tmpl:184 -#: src/templates/banknotes-codes.html.tmpl:264 -#: src/templates/banknotes-codes.html.tmpl:390 -msgctxt "Header/Label" -msgid "Code" +#: src/templates/about.html.tmpl:19 +msgid "" +"While we try to stay as up-to-date as possible and to fact check our " +"information, it is always possible that we get something wrong, lack a " +"translation, or are missing some piece of data you may have. Should that be " +"the case, don’t hesitate to contact us; we’ll try to get the site updated or " +"fixed as soon as possible. You are always free to contribute via a git patch " +"if you are more technically inclined, but if not you can always send an " +"email to {Email:e} or contact ‘@onetruemangoman’ on Discord." msgstr "" +"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." -#: src/templates/banknotes-codes.html.tmpl:257 +#: src/templates/collecting-vending.html.tmpl:53 msgid "" -"The first letter of the printer code can be used to identify the specific " -"printer at which the banknote was printed. The printer and country codes do " -"not need to line up; a banknote issued by a country will often be printed in " -"another." +"Some machines have a maximum amount you can throw in, and will reject " +"anything higher. For example machines with a maximum limit of €5 will reject " +"any additional coins if you throw in €5. You can try to go above the limit " +"if you throw in €4.80 and then another €1 or €2 coin; the machine might " +"accept it." msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:297 +#: src/templates/banknotes.html.tmpl:39 +msgid "Find out where your notes were printed" +msgstr "Find out where your notes were printed" + +#: src/templates/banknotes-codes.html.tmpl:364 +#: src/templates/banknotes-codes.html.tmpl:496 +#: src/templates/collecting-crh.html.tmpl:99 msgctxt "Company Name" -msgid "LCL" +msgid "National Bank of Belgium" msgstr "" -#: src/templates/collecting-crh.html.tmpl:347 -msgid "Coin rolls are available to everyone." +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:393 +msgctxt "Company Name" +msgid "Dexia" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:41 -msgid "Rejected Andorran design" +#: src/templates/collecting-crh.html.tmpl:519 +msgid "" +"You can get an unlimited number of rolls for a €5 fee. You must be a " +"customer of the bank." msgstr "" -#: src/templates/collecting-crh.html.tmpl:37 -msgid "Country-Specific Details" +#: src/templates/-navbar.html.tmpl:56 +msgid "About" +msgstr "About" + +#: src/templates/collecting-vending.html.tmpl:31 +msgid "(Non-)Merging Machines" msgstr "" -#: src/templates/collecting-crh.html.tmpl:137 -msgid "" -"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." +#: src/templates/banknotes.html.tmpl:47 +msgid "Learn about the special test notes" +msgstr "Learn about the special test notes" + +#: src/templates/collecting-storage.html.tmpl:80 +msgid "Coins in an album with labels" msgstr "" -#: src/templates/collecting-crh.html.tmpl:317 -msgctxt "Company Name" -msgid "Piraeus Bank" +#: src/templates/banknotes-codes.html.tmpl:55 +msgid "2002 Series Printer Codes" +msgstr "2002 Series Printer Codes" + +#: src/templates/banknotes-codes.html.tmpl:90 +msgid "" +"In the 2002 series, the first letter of the serial number can be used to " +"identify the country that issued the banknote. The following table shows " +"which countries map to which codes." msgstr "" +"In the 2002 series, the first letter of the serial number can be used to " +"identify the country that issued the banknote. The following table shows " +"which countries map to which codes." #: src/templates/collecting-crh.html.tmpl:451 msgid "Obtaining coins from the Dutch Central Bank is not possible." msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:8 -msgid "Croatian Euro Coin Designs" -msgstr "Croatian Euro Coin Designs" - -#: src/templates/coins-designs-nl.html.tmpl:37 +#: src/templates/collecting-vending.html.tmpl:42 msgid "" -"Coins featuring both monarchs contain text reading ‘{DutchStart:r}BEATRIX " -"KONINGIN DER NEDERLANDEN{DutchEnd:E}’ (English: ‘BEATRIX QUEEN OF THE " -"NETHERLANDS’) and ‘{DutchStart:r}Willem-Alexander Koning der " -"Nederlanden{DutchEnd:E}’ (English: ‘Willem-Alexander King of the " -"Netherlands’) respectively. The €2 coins also feature an edge-inscription " -"reading ‘{DutchStart:r}GOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆{DutchEnd:E}’ (English: ‘GOD ⋆ " -"IS ⋆ WITH ⋆ US ⋆’)." +"The vending machine does not merge change together. This means if you throw " +"in five 50c coins it will return five 50c coins. This makes it very easy to " +"hunt a large amount of a specific denomination." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:56 -msgid "Finally, the €2 coin features the {Link:L}coat of arms of Andorra{-:E}." +#: src/templates/coins-designs-ee.html.tmpl:60 +msgid "Estonian €1 coin" +msgstr "Estonian €1 coin" + +#: src/templates/coins-designs-ee.html.tmpl:90 +#: src/templates/coins-designs-ee.html.tmpl:104 +#: src/templates/coins-designs-ee.html.tmpl:112 +#: src/templates/coins-designs-ee.html.tmpl:120 +#: src/templates/coins-designs-ee.html.tmpl:129 +#: src/templates/coins-designs-ee.html.tmpl:138 +#: src/templates/coins-designs-ee.html.tmpl:145 +#: src/templates/coins-designs-ee.html.tmpl:153 +#: src/templates/coins-designs-ee.html.tmpl:161 +#: src/templates/coins-designs-ee.html.tmpl:170 +#: src/templates/coins-designs-ee.html.tmpl:178 +msgctxt "Header/Label" +msgid "Author(s)" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:47 -msgid "" -"The printer code (not to be confused with the serial number) is a small code " -"printed on banknotes with information about where the banknote was printed. " -"All printer codes have the form ‘X000X0’ — or in other words — a letter " -"followed by 3 numbers, a letter and a final number." +#: src/templates/collecting-crh.html.tmpl:171 +msgid "Coin rolls can be obtained for a fee of €0.25 per roll." msgstr "" -"The printer code (not to be confused with the serial number) is a small code " -"printed on banknotes with information about where the banknote was printed. " -"All printer codes have the form ‘X000X0’ — or in other words — a letter " -"followed by 3 numbers, a letter and a final number." -#: src/templates/collecting-crh.html.tmpl:17 +#: src/templates/collecting-storage.html.tmpl:8 +#: src/templates/collecting.html.tmpl:37 +msgid "Coin Storage" +msgstr "Coin Storage" + +#: src/templates/coins-designs-at.html.tmpl:19 +msgid "Austrian €0.05 coin" +msgstr "Austrian €0.05 coin" + +#: src/templates/collecting-storage.html.tmpl:39 msgid "" -"This type of coin collecting is often called ‘coin roll hunting’ " -"(abbreviated to ‘CRH’) due to the fact that banks will often provide you " -"with coins in the form of paper-wrapped rolls. You may however find that " -"your coins come in plastic bags instead (common in countries like Ireland)." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:500 -msgctxt "Company Name" -msgid "Bank of Slovenia" -msgstr "" +#: src/templates/banknotes-codes.html.tmpl:72 +msgid "Europa Series Printer Codes" +msgstr "Europa Series Printer Codes" -#: src/templates/coins-designs-de.html.tmpl:8 -msgid "German Euro Coin Designs" -msgstr "German Euro Coin Designs" +#: src/templates/banknotes-codes.html.tmpl:516 +msgid "Printer code on a {N} euro bill" +msgid_plural "Printer code on a {N} euro bill" +msgstr[0] "" +msgstr[1] "" -#: src/templates/coins-designs-de.html.tmpl:43 -msgctxt "Place Name" -msgid "Karlsruhe" -msgstr "" +#: src/templates/coins-designs-de.html.tmpl:14 +msgid "German €0.01 coin" +msgstr "German €0.01 coin" -#: src/templates/collecting-crh.html.tmpl:203 -msgctxt "Company Name" -msgid "Santander Bank" +#: src/templates/coins-designs-de.html.tmpl:35 +msgctxt "Place Name" +msgid "Munich" msgstr "" -#: src/templates/collecting-crh.html.tmpl:439 +#: src/templates/collecting-crh.html.tmpl:13 msgid "" -"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." +"Coin roll hunting is a popular method of coin collecting in which you " +"withdraw cash from your bank in the form of coins and then search through " +"those coins to find new additions to your collection. Once you’ve searched " +"through all your coins, you will typically deposit your left over coins at " +"the bank and withdraw new coins." msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:456 -msgctxt "Company Name" -msgid "ABN AMRO" +#: src/templates/collecting.html.tmpl:31 +msgid "Learn about collecting coins from coin rolls" msgstr "" -#: src/templates/index.html.tmpl:22 -msgid "" -"Welcome to the Euro Cash Wiki! This sites aims to be a resource for you to " -"discover everything there is to know about the coins and banknotes of the " -"Euro, a currency that spans 26 countries and 350 million people. We also " -"have dedicated sections of the site for collectors." +#: src/templates/banknotes-codes.html.tmpl:279 +msgctxt "Company Name" +msgid "SETEC" msgstr "" -"Welcome to the Euro Cash Wiki! This sites aims to be a resource for you to " -"discover everything there is to know about the coins and banknotes of the " -"Euro, a currency that spans 26 countries and 350 million people. We also " -"have dedicated sections of the site for collectors." -#: src/templates/coins.html.tmpl:31 -msgid "View the 600+ different Euro-coin designs" -msgstr "View the 600+ different Euro-coin designs" +#: src/templates/coins-designs-ee.html.tmpl:120 +msgid "Jaan Meristo" +msgstr "Jaan Meristo" -#: src/templates/coins-designs-ee.html.tmpl:160 +#: src/templates/coins-designs-ee.html.tmpl:152 msgctxt "Coin Design" -msgid "Leopards-2" +msgid "Bird Road" msgstr "" -#: src/templates/collecting.html.tmpl:54 -msgid "Vending Machine Hunting" -msgstr "" +#: src/templates/coins-designs-ee.html.tmpl:178 +msgid "Margus Kadarik" +msgstr "Margus Kadarik" -#: src/templates/coins-designs-ad.html.tmpl:50 +#: src/templates/collecting-crh.html.tmpl:54 msgid "" -"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." +"Coin rolls can be obtained from Andbank, Creand and MoraBanc. All three of " +"these banks require that you are a customer to get rolls, however there have " +"been reports of individuals managing to get rolls without any fees and " +"without being a customer by simply asking kindly at the bank." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:170 -msgid "Rene Haljasmäe" -msgstr "Rene Haljasmäe" - -#: src/templates/collecting-crh.html.tmpl:388 -msgid "" -"We currently have no information regarding regular coins, however their " -"webshop sells commemorative coins. Commemorative coins are also available " -"for purchase in-person." +#: src/templates/collecting-crh.html.tmpl:116 +msgctxt "Company Name" +msgid "KBC Bank" msgstr "" -#: src/templates/collecting-crh.html.tmpl:408 -msgid "We currently have no information regarding coin roll hunting in Monaco." +#: src/templates/collecting-crh.html.tmpl:236 +msgctxt "Company Name" +msgid "Bank of Finland" msgstr "" -#: src/templates/collecting-crh.html.tmpl:471 -msgctxt "Company Name" -msgid "Rabobank" +#: src/templates/coins-designs-hr.html.tmpl:25 +msgid "" +"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)." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:45 -msgid "Printer Codes" +#: src/templates/banknotes.html.tmpl:22 +msgid "" +"On this section of the site you can find everything there is to know about " +"the banknotes of the Eurozone." msgstr "" +"On this section of the site you can find everything there is to know about " +"the banknotes of the Eurozone." -#: src/templates/banknotes-codes.html.tmpl:307 +#: src/templates/coins-designs-ad.html.tmpl:17 +msgid "Andorran €2 coin" +msgstr "Andorran €2 coin" + +#: src/templates/banknotes-codes.html.tmpl:286 +#: src/templates/banknotes-codes.html.tmpl:404 msgctxt "Company Name" -msgid "De La Rue" +msgid "Oberthur" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:350 -msgctxt "Company Name" -msgid "Giesecke+Devrient" +#: src/templates/coins-mintages.html.tmpl:294 +msgctxt "Header/Label" +msgid "Unknown" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:177 -msgctxt "Coin Design" -msgid "A Flower in the Rye" +#: src/templates/collecting-storage.html.tmpl:84 +msgid "Coins in a reusable roll" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:26 -msgid "Andorra’s Romanesque art" -msgstr "Andorra’s Romanesque art" +#: src/templates/banknotes-codes.html.tmpl:381 +msgid "Europa Series" +msgstr "Europa Series" -#: src/templates/index.html.tmpl:15 -msgid "cash" -msgstr "cash" +#: src/templates/coins.html.tmpl:39 +msgid "View the mintage figures of all the Euro coins" +msgstr "View the mintage figures of all the Euro coins" -#: src/templates/collecting.html.tmpl:18 -msgid "Euro Coin Collecting" -msgstr "Euro Coin Collecting" +#: src/templates/coins.html.tmpl:47 +msgid "View all the known Euro varieties" +msgstr "View all the known Euro varieties" -#: src/templates/coins-designs-nl.html.tmpl:41 +#: src/templates/coins-designs-be.html.tmpl:34 +msgid "Belgian €1 coin (King Philippe)" +msgstr "Belgian €1 coin (King Philippe)" + +#: src/templates/coins-designs-ad.html.tmpl:16 +msgid "Andorran €1 coin" +msgstr "Andorran €1 coin" + +#: src/templates/jargon.html.tmpl:42 msgid "" -"The €1 and €2 coins featuring King Willem-Alexander were minted with a much " -"lower {Link:l}relief{-:E} than most euro coins of the same denomination. As " -"a result it is not uncommon for these coins to appear worn after little use " -"in circulation." +"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." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:55 -msgid "2002 Series Printer Codes" -msgstr "2002 Series Printer Codes" +#: src/templates/coins-designs-ee.html.tmpl:55 +msgid "Estonian Euro Coin Designs" +msgstr "Estonian Euro Coin Designs" -#: src/templates/collecting-crh.html.tmpl:54 +#: src/templates/-navbar.html.tmpl:48 +msgid "Jargon" +msgstr "Jargon" + +#: src/templates/collecting-vending.html.tmpl:13 msgid "" -"Coin rolls can be obtained from Andbank, Creand and MoraBanc. All three of " -"these banks require that you are a customer to get rolls, however there have " -"been reports of individuals managing to get rolls without any fees and " -"without being a customer by simply asking kindly at the bank." +"‘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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:184 +#: src/templates/jargon.html.tmpl:19 msgid "" -"You can purchase commemorative coins — including those released years ago — " -"for face value." +"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." msgstr "" -#: src/templates/collecting.html.tmpl:22 +#: src/templates/coins-designs-ee.html.tmpl:129 +msgid "Taavi Torim" +msgstr "Taavi Torim" + +#: src/templates/collecting-crh.html.tmpl:17 msgid "" -"On this section of the site you can find everything there is to know about " -"collecting Euro coins. If this is a hobby that interests you, join the " -"Discord server linked at the top of the page!" +"This type of coin collecting is often called ‘coin roll hunting’ " +"(abbreviated to ‘CRH’) due to the fact that banks will often provide you " +"with coins in the form of paper-wrapped rolls. You may however find that " +"your coins come in plastic bags instead (common in countries like Ireland)." msgstr "" -#: src/templates/coins-designs-be.html.tmpl:26 -msgid "Belgian €1 coin (King Albert; Series 1)" -msgstr "Belgian €1 coin (King Albert; Series 1)" +#: src/templates/collecting-crh.html.tmpl:244 +msgctxt "Company Name" +msgid "Mint of Finland" +msgstr "" -#: src/templates/jargon.html.tmpl:51 +#: src/templates/collecting-crh.html.tmpl:271 +#: src/templates/collecting-crh.html.tmpl:293 +msgid "Coin rolls can be obtained with no fee. You must be a customer." +msgstr "" + +#: src/templates/collecting.html.tmpl:56 +msgid "Learn about collecting coins from vending machines" +msgstr "" + +#: src/templates/coins-designs-hr.html.tmpl:13 +msgid "Croatian €0.01 coin" +msgstr "Croatian €0.01 coin" + +#: src/templates/collecting-storage.html.tmpl:53 msgid "" -"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." +"This is probably the most inexpensive way to store your coins. If you take " +"good care of the paper when opening 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." msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:275 -msgctxt "Company Name" -msgid "CIC" +#: src/templates/coins-designs-de.html.tmpl:43 +msgctxt "Place Name" +msgid "Karlsruhe" msgstr "" -#: src/templates/collecting-crh.html.tmpl:278 -#: src/templates/collecting-crh.html.tmpl:286 +#: src/templates/coins-designs-ee.html.tmpl:73 msgid "" -"Free coin rolls if you are a customer or €1 per roll if you are not a " -"customer. There are coin roll machines." +"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%)." +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:157 +msgid "Hand-rolled coin rolls can be obtained with no additional fees." +msgstr "" + +#: src/templates/collecting-vending.html.tmpl:26 +msgid "Rejected Stoppers and Coins" msgstr "" +#: src/templates/coins-designs-ad.html.tmpl:24 +msgid "Andorran landscapes, nature, fauna and flora" +msgstr "Andorran landscapes, nature, fauna and flora" + #: src/templates/coins-designs-ad.html.tmpl:35 msgid "" "The Andorran 1c, 2c and 5c coins all feature the same design of a Pyrenean " @@ -1118,204 +1330,219 @@ msgid "" "and Spain." msgstr "" -#: src/templates/jargon.html.tmpl:34 -msgid "BU — Brilliantly Uncirculated" +#: src/templates/jargon.html.tmpl:65 +msgid "Collector-Specific Terms" msgstr "" -#: src/templates/jargon.html.tmpl:49 -msgid "PMD — Post-Mint Damage" +#: src/templates/collecting-crh.html.tmpl:320 +msgid "" +"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)." msgstr "" -#: src/templates/collecting-crh.html.tmpl:181 -msgctxt "Company Name" -msgid "Bank of Estonia Museum" -msgstr "" +#: src/templates/-navbar.html.tmpl:47 +msgid "Banknotes" +msgstr "Banknotes" -#: src/templates/language.html.tmpl:46 src/templates/language.html.tmpl:85 -msgid "Eurozone Languages" -msgstr "Eurozone Languages" +#: src/templates/collecting-vending.html.tmpl:16 +msgid "The Test Coins" +msgstr "" -#: src/templates/coins-designs-at.html.tmpl:18 -msgid "Austrian €0.02 coin" -msgstr "Austrian €0.02 coin" +#: src/templates/coins-designs-hr.html.tmpl:29 +msgid "" +"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’." +msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:32 +#: src/templates/coins-designs-be.html.tmpl:39 msgid "" -"The results of the design contest with a few modifications are what became " -"the coins that entered circulation in 2014. While each set of denominations " -"has its own design, all four designs prominently feature the name of the " -"Principality (‘ANDORRA’) along the outer portion of the design with the year " -"of issue written underneath." +"Since 1999 Belgium has released three series of euro coins, with each series " +"having a single design repeated on all denominations. Starting in 1999 the " +"Belgian euro coins featured the portrait of King Albert II with the {Link:L}" +"royal monogram{-:E} in the outer ring of the coins." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:293 -#: src/templates/banknotes-codes.html.tmpl:425 +#: src/templates/banknotes-codes.html.tmpl:45 +msgid "Printer Codes" +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:314 +#: src/templates/banknotes-codes.html.tmpl:446 +#: src/templates/collecting-crh.html.tmpl:344 msgctxt "Company Name" -msgid "Austrian Banknote and Security Printing" +msgid "Bank of Italy" msgstr "" -#: src/templates/collecting-crh.html.tmpl:467 -msgid "Coin rolls are available for a fee of €7 + €0.35 per roll." +#: src/templates/banknotes-codes.html.tmpl:350 +msgctxt "Company Name" +msgid "Giesecke+Devrient" msgstr "" -#: src/templates/about.html.tmpl:11 -msgid "Open Source" -msgstr "Open Source" +#: src/templates/banknotes-codes.html.tmpl:409 +msgctxt "Place Name" +msgid "Bulgaria" +msgstr "" -#: src/templates/coins-designs-at.html.tmpl:25 -msgid "Austrian €0.10 coin" -msgstr "Austrian €0.10 coin" +#: src/templates/coins.html.tmpl:37 +msgid "Mintages" +msgstr "Mintages" -#: src/templates/banknotes-codes.html.tmpl:57 -msgid "All these images are taken from {Link:L}eurobilltracker.com{-:E}." -msgstr "All these images are taken from {Link:L}eurobilltracker.com{-:E}." +#: src/templates/-navbar.html.tmpl:46 +msgid "Coins" +msgstr "Coins" -#. TRANSLATORS: As in ‘5 Euro Banknote’ -#: src/templates/banknotes-codes.html.tmpl:512 -msgid "{N} Euro" -msgid_plural "{N} Euro" -msgstr[0] "" -msgstr[1] "" +#: src/templates/banknotes-codes.html.tmpl:343 +#: src/templates/banknotes-codes.html.tmpl:489 +#: src/templates/collecting-crh.html.tmpl:306 +msgctxt "Company Name" +msgid "Bank of Greece" +msgstr "" -#: src/templates/coins-mintages.html.tmpl:97 +#: src/templates/coins-designs-ee.html.tmpl:85 +#: src/templates/coins-designs-ee.html.tmpl:100 +#: src/templates/coins-designs-ee.html.tmpl:109 +#: src/templates/coins-designs-ee.html.tmpl:117 +#: src/templates/coins-designs-ee.html.tmpl:125 +#: src/templates/coins-designs-ee.html.tmpl:134 +#: src/templates/coins-designs-ee.html.tmpl:143 +#: src/templates/coins-designs-ee.html.tmpl:150 +#: src/templates/coins-designs-ee.html.tmpl:158 +#: src/templates/coins-designs-ee.html.tmpl:166 +#: src/templates/coins-designs-ee.html.tmpl:175 msgctxt "Header/Label" -msgid "Circulation Coins" +msgid "Position" msgstr "" -#: src/templates/collecting-crh.html.tmpl:414 -msgctxt "Company Name" -msgid "Central Bank of Malta" +#. TRANSLATORS: ‘Estonian’ as in the language, not the nationality +#: src/templates/coins-designs-ee.html.tmpl:137 +msgctxt "Coin Design" +msgid "Estonian" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:13 -msgid "Croatian €0.01 coin" -msgstr "Croatian €0.01 coin" +#: src/templates/coins-mintages.html.tmpl:99 +msgctxt "Header/Label" +msgid "NIFC and BU Coins" +msgstr "" -#: src/templates/coins-designs-at.html.tmpl:37 +#: src/templates/collecting-crh.html.tmpl:62 msgid "" -"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." +"The Austrian National Bank does not distribute circulated rolls but sells " +"rolls of commemorative coins at face value on release as well as " +"uncirculated rolls for all denominations." msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:269 -msgctxt "Company Name" -msgid "Caisse d’Épargne" +#: src/templates/collecting-crh.html.tmpl:259 +msgid "" +"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." msgstr "" -#: src/templates/banknotes.html.tmpl:39 -msgid "Find out where your notes were printed" -msgstr "Find out where your notes were printed" - -#: src/templates/banknotes-codes.html.tmpl:314 -#: src/templates/banknotes-codes.html.tmpl:446 -#: src/templates/collecting-crh.html.tmpl:344 -msgctxt "Company Name" -msgid "Bank of Italy" +#: src/templates/about.html.tmpl:13 +msgid "" +"This website is an open project, and a collaboration between developers, " +"translators, and researchers. All source code, data, images, and more for " +"the website are open source and can be found {LinkGit:L}here{-:E}. This site " +"is licensed under the {LinkBSD:L}BSD Zero Clause License{-:E} giving you the " +"full freedom to do whatever you would like with any of the content on this " +"site." msgstr "" +"This website is an open project, and a collaboration between developers, " +"translators, and researchers. All source code, data, images, and more for " +"the website are open source and can be found {LinkGit:L}here{-:E}. This site " +"is licensed under the {LinkBSD:L}BSD Zero Clause License{-:E} giving you the " +"full freedom to do whatever you would like with any of the content on this " +"site." -#: src/templates/coins-designs-ee.html.tmpl:104 -msgid "Lembit Lõhmus" -msgstr "Lembit Lõhmus" +#: src/templates/coins.html.tmpl:45 +msgid "Varieties" +msgstr "Varieties" -#: src/templates/collecting-crh.html.tmpl:127 +#: src/templates/collecting-vending.html.tmpl:23 msgid "" -"Rolls can be obtained with no fee when you order through their online " -"platform." +"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." +msgstr "" + +#: src/templates/jargon.html.tmpl:29 +msgid "AU — Almost Uncirculated" msgstr "" #. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:291 +#: src/templates/collecting-crh.html.tmpl:456 msgctxt "Company Name" -msgid "Crédit Agricole" +msgid "ABN AMRO" msgstr "" -#: src/templates/coins.html.tmpl:18 -msgid "Euro Coins" -msgstr "Euro Coins" - -#: src/templates/-navbar.html.tmpl:45 -msgid "Coin Collecting" -msgstr "Coin Collecting" +#: src/templates/index.html.tmpl:22 +msgid "" +"Welcome to the Euro Cash Wiki! This sites aims to be a resource for you to " +"discover everything there is to know about the coins and banknotes of the " +"Euro, a currency that spans 26 countries and 350 million people. We also " +"have dedicated sections of the site for collectors." +msgstr "" +"Welcome to the Euro Cash Wiki! This sites aims to be a resource for you to " +"discover everything there is to know about the coins and banknotes of the " +"Euro, a currency that spans 26 countries and 350 million people. We also " +"have dedicated sections of the site for collectors." -#: src/templates/coins-designs-be.html.tmpl:30 -msgid "Belgian €1 coin (King Albert; Series 2)" -msgstr "Belgian €1 coin (King Albert; Series 2)" +#: src/templates/coins-designs-at.html.tmpl:25 +msgid "Austrian €0.10 coin" +msgstr "Austrian €0.10 coin" -#: src/templates/coins-designs-ad.html.tmpl:28 -msgid "Casa de la Vall" -msgstr "Casa de la Vall" +#: src/templates/coins-designs-at.html.tmpl:34 +msgid "Austrian €2 coin" +msgstr "Austrian €2 coin" -#: src/templates/banknotes-codes.html.tmpl:482 -msgctxt "Company Name" -msgid "Giesecke+Devrient Munich" -msgstr "" +#: src/templates/banknotes-codes.html.tmpl:88 +msgid "2002 Series" +msgstr "2002 Series" -#: src/templates/coins-designs-ee.html.tmpl:90 -#: src/templates/coins-designs-ee.html.tmpl:104 -#: src/templates/coins-designs-ee.html.tmpl:112 -#: src/templates/coins-designs-ee.html.tmpl:120 -#: src/templates/coins-designs-ee.html.tmpl:129 -#: src/templates/coins-designs-ee.html.tmpl:138 -#: src/templates/coins-designs-ee.html.tmpl:145 -#: src/templates/coins-designs-ee.html.tmpl:153 -#: src/templates/coins-designs-ee.html.tmpl:161 -#: src/templates/coins-designs-ee.html.tmpl:170 -#: src/templates/coins-designs-ee.html.tmpl:178 -msgctxt "Header/Label" -msgid "Author(s)" +#: src/templates/collecting-crh.html.tmpl:104 +msgid "" +"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." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:364 -#: src/templates/banknotes-codes.html.tmpl:496 -#: src/templates/collecting-crh.html.tmpl:99 +#: src/templates/collecting-crh.html.tmpl:500 msgctxt "Company Name" -msgid "National Bank of Belgium" +msgid "Bank of Slovenia" msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:283 -msgctxt "Company Name" -msgid "Crédit Mutuel" +#: src/templates/coins-designs-ad.html.tmpl:45 +msgid "The rejected Andorran design" msgstr "" -#: src/templates/collecting-crh.html.tmpl:459 +#: src/templates/collecting-crh.html.tmpl:215 msgid "" -"Coin rolls are available for a fee of €0.30 per roll. You must withdraw " -"between 10–20 rolls." +"Coin rolls have a fee of €2 for 5 rolls. This seems to vary by location." msgstr "" -#: src/templates/-error.html.tmpl:15 -msgid "" -"If this issue persists, don’t hesitate to contact ‘@onetruemangoman’ on " -"Discord or to email us at {Email:e}" +#: src/templates/collecting-crh.html.tmpl:351 +msgctxt "Company Name" +msgid "Banca di Cambiano" msgstr "" -"If this issue persists, don’t hesitate to contact ‘@onetruemangoman’ on " -"Discord or to email us at {Email:e}" -#: src/templates/coins-designs-at.html.tmpl:19 -msgid "Austrian €0.05 coin" -msgstr "Austrian €0.05 coin" - -#: src/templates/collecting-crh.html.tmpl:34 -msgid "" -"In some countries such as Austria it is even common to be able to withdraw " -"new coins from your account using other coins." +#: src/templates/collecting-crh.html.tmpl:474 +msgid "Coin rolls are available for a fee of €7 + €0.50 per roll." msgstr "" -#: src/templates/language.html.tmpl:47 src/templates/language.html.tmpl:90 -msgid "Other Languages" -msgstr "Other Languages" - -#: src/templates/collecting.html.tmpl:31 -msgid "Learn about collecting coins from coin rolls" +#: src/templates/collecting-vending.html.tmpl:61 +msgid "" +"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." msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:18 -msgid "Croatian €2 coin" -msgstr "Croatian €2 coin" - #: src/templates/coins-designs-nl.html.tmpl:33 msgid "" "From the years 1999–2013 all Dutch euro coins featured the portrait of " @@ -1326,203 +1553,186 @@ msgid "" "coins of many monarchies around the world." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:23 -msgid "€0.01, €0.02 and €0.05" -msgstr "€0.01, €0.02 and €0.05" +#: src/templates/coins-designs-ee.html.tmpl:88 +#: src/templates/coins-designs-ee.html.tmpl:98 +msgctxt "Header/Label" +msgid "Translation" +msgstr "" -#: src/templates/collecting-crh.html.tmpl:164 +#: src/templates/collecting-crh.html.tmpl:363 msgid "" -"Coin rolls can be obtained for a fee of €0.50–€1.50 per roll. The amount " -"varies per branch." +"Allegedly, coin rolls are only available for businesses, but this needs " +"additional confirmation." msgstr "" -#: src/templates/collecting-crh.html.tmpl:247 +#: src/templates/collecting-vending.html.tmpl:78 msgid "" -"The Mint of Finland ceased all operations in late 2024 but still sells coins " -"on their website." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:259 -msgid "" -"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." +#: src/templates/collecting.html.tmpl:39 +msgid "Learn about the different methods to storing your collection" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:33 +#: src/templates/banknotes-codes.html.tmpl:257 msgid "" -"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)." +"The first letter of the printer code can be used to identify the specific " +"printer at which the banknote was printed. The printer and country codes do " +"not need to line up; a banknote issued by a country will often be printed in " +"another." msgstr "" -#: src/templates/coins-designs-be.html.tmpl:21 -msgid "Belgian Euro Coin Designs" -msgstr "Belgian Euro Coin Designs" - -#: src/templates/jargon.html.tmpl:54 -msgid "Relief" +#: src/templates/collecting-crh.html.tmpl:232 +msgid "" +"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)." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:475 -msgctxt "Company Name" -msgid "Giesecke+Devrient Leipzig" +#: src/dbx/sql/last.sql:138 src/dbx/sql/last.sql:141 src/dbx/sql/last.sql:144 +#: src/dbx/sql/last.sql:147 src/dbx/sql/last.sql:150 src/dbx/sql/last.sql:153 +#: src/dbx/sql/last.sql:154 src/dbx/sql/last.sql:157 +msgctxt "CC Name" +msgid "EU Flag" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:73 -msgid "" -"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%)." -msgstr "" +#: src/templates/-404.html.tmpl:8 +msgid "Page Not Found" +msgstr "Page Not Found" -#: src/templates/collecting-crh.html.tmpl:487 +#: src/templates/banknotes-codes.html.tmpl:336 +#: src/templates/banknotes-codes.html.tmpl:468 +#: src/templates/collecting-crh.html.tmpl:198 msgctxt "Company Name" -msgid "Banco Comercial Português" +msgid "Royal Mint of Spain" msgstr "" -#: src/templates/jargon.html.tmpl:65 -msgid "Collector-Specific Terms" +#: src/templates/coins-designs-ee.html.tmpl:104 +msgid "Lembit Lõhmus" +msgstr "Lembit Lõhmus" + +#: src/templates/collecting-crh.html.tmpl:419 +msgctxt "Company Name" +msgid "Bank of Valletta" msgstr "" -#: src/templates/coins-mintages.html.tmpl:294 -msgctxt "Header/Label" -msgid "Unknown" +#: src/templates/collecting-crh.html.tmpl:119 +msgid "Rolls can be obtained with no fee by customers only" msgstr "" -#: src/templates/collecting-crh.html.tmpl:363 +#: src/templates/collecting-crh.html.tmpl:326 msgid "" -"Allegedly, coin rolls are only available for businesses, but this needs " -"additional confirmation." +"We currently have no information regarding coin roll hunting in Croatia." msgstr "" -#: src/templates/collecting-crh.html.tmpl:483 -msgid "Coin bags are sold with no additional fees to everyone." +#: src/dbx/sql/last.sql:155 +msgctxt "CC Name" +msgid "Peace and security" msgstr "" -#: src/templates/collecting-crh.html.tmpl:503 +#: src/templates/coins-designs-at.html.tmpl:12 msgid "" -"You can purchase commemorative coins for face value, and coin rolls are sold " -"with no fees to everyone." +"The Austrian euro coins can be grouped into three different themes. The " +"bronze coins feature Austrian flowers, the gold coins feature Austrian " +"architecture and the bimetalic coins feature famous Austrian people. All " +"coins also feature an Austrian flag as well as the coins denomination. These " +"coins together with the {Link:l}Greek euro coins{-:E} are the only coins " +"that feature the denomination on both the common and national sides of the " +"coin." msgstr "" -#: src/templates/index.html.tmpl:9 -msgid "The Euro Cash Wiki" -msgstr "The Euro Cash Wiki" +#: src/templates/coins-designs-ad.html.tmpl:13 +msgid "Andorran €0.50 coin" +msgstr "Andorran €0.50 coin" -#: src/templates/coins.html.tmpl:22 -msgid "" -"On this section of the site you can find everything there is to know about " -"the coins of the Eurozone." +#: src/templates/jargon.html.tmpl:59 +msgid "UNC — Uncirculated" msgstr "" -"On this section of the site you can find everything there is to know about " -"the coins of the Eurozone." -#: src/templates/coins-designs-ad.html.tmpl:45 -msgid "The rejected Andorran design" +#: src/templates/collecting-storage.html.tmpl:35 +msgid "" +"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 reuse, something not typically possible with coin flips." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:88 -#: src/templates/coins-designs-ee.html.tmpl:98 +#: src/templates/coins-mintages.html.tmpl:101 msgctxt "Header/Label" -msgid "Translation" +msgid "Proof Coins" msgstr "" -#: src/templates/coins-mintages.html.tmpl:39 -msgid "" -"Here you’ll be able to view all the known mintages for all coins. You’ll " -"also be able to filter on country, denomination, etc. If you have any " -"mintage data that’s missing from our site, feel free to contact us." +#: src/templates/coins-mintages.html.tmpl:104 +msgctxt "Header/Label" +msgid "Filter" msgstr "" -"Here you’ll be able to view all the known mintages for all coins. You’ll " -"also be able to filter on country, denomination, etc. If you have any " -"mintage data that’s missing from our site, feel free to contact us." -#: src/templates/collecting-crh.html.tmpl:24 -msgid "Getting Started" +#: src/templates/collecting-crh.html.tmpl:531 +msgid "" +"Ask the Pope nicely and he’ll probably give you some Vatican coins for free." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:19 +#: src/templates/collecting-storage.html.tmpl:17 msgid "" -"The German euro coins feature three different designs. A unique feature of " -"German euro coins are the mint marks on each coin that denote in which city " -"a given coin was minted. Germany has five active mints that produce Euro " -"coins, which are denoted in the table below." +"Coin albums are one of the most popular ways of storing coins. In a coin " +"album you have multiple coin sheets. These sheets are plastic pages with " +"slots that you can put your coins 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." msgstr "" -"The German euro coins feature three different designs. A unique feature of " -"German euro coins are the mint marks on each coin that denote in which city " -"a given coin was minted. Germany has five active mints that produce Euro " -"coins, which are denoted in the table below." -#: src/templates/coins-designs-de.html.tmpl:47 -msgctxt "Place Name" -msgid "Hamburg" +#: src/templates/collecting-crh.html.tmpl:203 +msgctxt "Company Name" +msgid "Santander Bank" msgstr "" -#: src/templates/coins-mintages.html.tmpl:43 -msgid "Additional Notes" -msgstr "Additional Notes" - -#: src/templates/about.html.tmpl:13 -msgid "" -"This website is an open project, and a collaboration between developers, " -"translators, and researchers. All source code, data, images, and more for " -"the website are open source and can be found {LinkGit:L}here{-:E}. This site " -"is licensed under the {LinkBSD:L}BSD Zero Clause License{-:E} giving you the " -"full freedom to do whatever you would like with any of the content on this " -"site." +#: src/templates/collecting-crh.html.tmpl:377 +msgid "Fee of €2 per roll of 2 euro coins." msgstr "" -"This website is an open project, and a collaboration between developers, " -"translators, and researchers. All source code, data, images, and more for " -"the website are open source and can be found {LinkGit:L}here{-:E}. This site " -"is licensed under the {LinkBSD:L}BSD Zero Clause License{-:E} giving you the " -"full freedom to do whatever you would like with any of the content on this " -"site." -#: src/templates/collecting-crh.html.tmpl:215 -msgid "" -"Coin rolls have a fee of €2 for 5 rolls. This seems to vary by location." +#: src/templates/collecting-crh.html.tmpl:383 +msgctxt "Company Name" +msgid "Central Bank of Luxembourg" msgstr "" -#: src/templates/collecting-crh.html.tmpl:309 -msgid "" -"{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)." +#: src/dbx/sql/last.sql:136 src/dbx/sql/last.sql:139 src/dbx/sql/last.sql:142 +#: src/dbx/sql/last.sql:145 src/dbx/sql/last.sql:148 +msgctxt "CC Name" +msgid "Hessen" msgstr "" -#: src/templates/collecting-crh.html.tmpl:8 -#: src/templates/collecting.html.tmpl:29 -msgid "Coin Roll Hunting" -msgstr "Coin Roll Hunting" - -#: src/templates/coins-designs-ee.html.tmpl:55 -msgid "Estonian Euro Coin Designs" -msgstr "Estonian Euro Coin Designs" +#: src/templates/jargon.html.tmpl:54 +msgid "Relief" +msgstr "" -#: src/templates/coins-mintages.html.tmpl:46 +#: src/templates/collecting-storage.html.tmpl:12 msgid "" -"Most coins from the years 2003–2016 are listed as NIFC coins while other " -"popular sources such as Numista claim they were minted for circulation. For " -"more information on why others are wrong, {Link:l}click here{-:E}." +"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." msgstr "" -"Most coins from the years 2003–2016 are listed as NIFC coins while other " -"popular sources such as Numista claim they were minted for circulation. For " -"more information on why others are wrong, {Link:l}click here{-:E}." -#: src/templates/coins-mintages.html.tmpl:54 +#: src/templates/banknotes-codes.html.tmpl:267 +#: src/templates/banknotes-codes.html.tmpl:393 msgctxt "Header/Label" -msgid "Filter Method" +msgid "Printer" msgstr "" -#: src/templates/collecting-crh.html.tmpl:66 -msgctxt "Company Name" -msgid "Bank Austria" +#: src/templates/coins-mintages.html.tmpl:191 +#: src/templates/coins-mintages.html.tmpl:228 +msgctxt "Header/Label" +msgid "Mintage" msgstr "" -#: src/templates/collecting-crh.html.tmpl:217 -msgid "Madrid" +#: src/templates/collecting-crh.html.tmpl:143 +msgid "" +"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." msgstr "" #: src/templates/collecting-crh.html.tmpl:226 @@ -1531,80 +1741,72 @@ msgid "" "need to be a customer, but this needs to be verified." msgstr "" -#: src/templates/collecting-crh.html.tmpl:367 -msgctxt "Company Name" -msgid "ExchangeLT" +#: src/templates/collecting-crh.html.tmpl:240 +msgid "" +"It is probably not possible to obtain coin rolls, but this is not confirmed." msgstr "" -#: src/templates/coins-designs-at.html.tmpl:8 -msgid "Austrian Euro Coin Designs" -msgstr "Austrian Euro Coin Designs" - -#: src/templates/coins-designs-de.html.tmpl:15 -msgid "German €0.10 coin" -msgstr "German €0.10 coin" - -#: src/templates/coins-designs-de.html.tmpl:35 -msgctxt "Place Name" -msgid "Munich" +#: src/templates/banknotes-codes.html.tmpl:321 +#: src/templates/banknotes-codes.html.tmpl:453 +#: src/templates/collecting-crh.html.tmpl:336 +msgctxt "Company Name" +msgid "Central Bank of Ireland" msgstr "" -#: src/templates/collecting-crh.html.tmpl:30 +#: src/templates/coins-designs-de.html.tmpl:19 msgid "" -"It is also important to find details regarding the deposit of coins. " -"Depositing coins often also requires the payment of a fee — one which is " -"typically more expensive than the withdrawal fees. If depositing your coins " -"is too expensive you can always exchange your left over coins at shops for " -"banknotes. It is often cheaper (or even free) to deposit banknotes." +"The German euro coins feature three different designs. A unique feature of " +"German euro coins are the mint marks on each coin that denote in which city " +"a given coin was minted. Germany has five active mints that produce Euro " +"coins, which are denoted in the table below." msgstr "" +"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." -#. TRANSLATORS: On the German page the filter is called ‘Münzrollengeber’. For other languages we link to the English site, so mention the English filter name surrounded by ‘{EnglishStart:r}’ and ‘{EnglishEnd:E}’, and also translate it in parenthesis to your language. For example the Swedish page might say: ‘”{EnglishStart:r}coin roll dispenser{EnglishEnd:E}” (svenska: ”myntrullsautomat”)’ -#: src/templates/collecting-crh.html.tmpl:73 -msgid "" -"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}." -msgstr "" +#: src/templates/coins-designs-ee.html.tmpl:112 +#: src/templates/coins-designs-ee.html.tmpl:153 +msgid "Tiit Jürna" +msgstr "Tiit Jürna" -#: src/templates/collecting-crh.html.tmpl:232 +#: src/templates/collecting-crh.html.tmpl:82 msgid "" -"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)." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:240 -msgid "" -"It is probably not possible to obtain coin rolls, but this is not confirmed." +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:109 +msgctxt "Company Name" +msgid "Argenta" msgstr "" -#: src/templates/collecting-crh.html.tmpl:271 -#: src/templates/collecting-crh.html.tmpl:293 -msgid "Coin rolls can be obtained with no fee. You must be a customer." +#: src/templates/collecting-crh.html.tmpl:317 +msgctxt "Company Name" +msgid "Piraeus Bank" msgstr "" -#: src/templates/-error.html.tmpl:12 +#: src/templates/coins-designs-ad.html.tmpl:50 msgid "" -"If you’re seeing this page, it means that something went wrong on our end " -"that we need to fix. Our team has been notified of this error, and we " -"apologise for the inconvenience." +"The Andorran 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." msgstr "" -"If you’re seeing this page, it means that something went wrong on our end " -"that we need to fix. Our team has been notified of this error, and we " -"apologise for the inconvenience." -#: src/templates/jargon.html.tmpl:19 -msgid "" -"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." +#: src/templates/jargon.html.tmpl:27 +msgid "General Terms" msgstr "" -#: src/templates/jargon.html.tmpl:36 -msgid "" -"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." +#: src/templates/banknotes-codes.html.tmpl:305 +msgctxt "Place Name" +msgid "United Kingdom" msgstr "" #: src/templates/coins-designs-de.html.tmpl:26 @@ -1612,163 +1814,170 @@ msgctxt "Header/Label" msgid "Mintmark" msgstr "" -#: src/templates/coins-mintages.html.tmpl:35 -msgid "Euro Coin Mintages" -msgstr "Euro Coin Mintages" - -#: src/templates/coins-mintages.html.tmpl:99 +#: src/templates/coins-designs-ee.html.tmpl:185 msgctxt "Header/Label" -msgid "NIFC and BU Coins" +msgid "Total" msgstr "" -#: src/templates/coins-mintages.html.tmpl:190 -#: src/templates/coins-mintages.html.tmpl:227 -msgctxt "Header/Label" -msgid "Commemorated Topic" +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:124 +msgctxt "Company Name" +msgid "Belfius" msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:109 +#: src/templates/collecting-crh.html.tmpl:133 msgctxt "Company Name" -msgid "Argenta" +msgid "Bank of Cyprus" msgstr "" -#: src/templates/collecting.html.tmpl:37 -msgid "Coin Storage" -msgstr "Coin Storage" +#: src/templates/collecting-crh.html.tmpl:161 +msgctxt "Company Name" +msgid "Sparkasse" +msgstr "" -#: src/templates/jargon.html.tmpl:61 +#: src/templates/collecting-vending.html.tmpl:33 +msgid "We generally identify between two main types of vending machines." +msgstr "" + +#: src/templates/coins-designs-ad.html.tmpl:8 +msgid "Andorran Euro Coin Designs" +msgstr "Andorran Euro Coin Designs" + +#: src/templates/jargon.html.tmpl:36 msgid "" -"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." +"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." msgstr "" -#: src/templates/coins-designs.html.tmpl:25 -msgid "Euro Coin Designs" -msgstr "Euro Coin Designs" +#: src/templates/coins-designs-de.html.tmpl:57 +msgid "" +"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." +msgstr "" -#: src/templates/coins-designs-de.html.tmpl:65 +#: src/templates/coins-designs-ee.html.tmpl:69 msgid "" -"The €2 coin also features an edge-inscription of Germany’s national motto " -"and incipit of Germany’s national anthem. It reads ‘{GermanStart:r}EINIGKEIT " -"UND RECHT UND FREIHEIT{GermanEnd:E}’ (English: ‘UNITY AND JUSTICE AND " -"FREEDOM’)." +"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." msgstr "" -"The €2 coin also features an edge-inscription of Germany’s national motto " -"and incipit of Germany’s national anthem. It reads ‘{GermanStart:r}EINIGKEIT " -"UND RECHT UND FREIHEIT{GermanEnd:E}’ (English: ‘UNITY AND JUSTICE AND " -"FREEDOM’)." -#: src/templates/coins-designs-ee.html.tmpl:87 -#: src/templates/coins-designs-ee.html.tmpl:97 -#: src/templates/coins-designs-ee.html.tmpl:144 -msgctxt "Header/Label" -msgid "Name" +#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script +#: src/templates/coins-designs-ee.html.tmpl:128 +msgctxt "Coin Design" +msgid "Tomson 5791" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:112 -#: src/templates/coins-designs-ee.html.tmpl:153 -msgid "Tiit Jürna" -msgstr "Tiit Jürna" +#: src/templates/collecting-crh.html.tmpl:218 +msgid "Coin rolls have no fees." +msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:120 -msgid "Jaan Meristo" -msgstr "Jaan Meristo" +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:223 +msgctxt "Company Name" +msgid "La Caixa" +msgstr "" -#: src/templates/collecting-crh.html.tmpl:21 +#: src/templates/collecting-vending.html.tmpl:58 msgid "" -"Depending on your bank and branch, the process of obtaining coins may " -"differ. Some banks require you speak to a teller while others have coin " -"machines. Some banks may also require that you are a customer or even that " -"you have a business account. If you aren’t sure about if you can get coins " -"we suggest you contact your bank, although further down this page we also " -"have additional information about the withdrawal of coins in various " -"countries and major banks." +"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." msgstr "" -#: src/templates/jargon.html.tmpl:42 +#: src/templates/coins-designs-hr.html.tmpl:21 msgid "" -"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." +"The Croatian euro coins feature four different themes, with each design " +"featuring the Croatian checkerboard and the country’s name in Croatian " +"(‘{CroatianStart:r}HRVATSKA{CroatianEnd:E}’). All designs were selected " +"after voting in a public design competition." msgstr "" +"The Croatian euro coins feature four different themes, with each design " +"featuring the Croatian checkerboard and the country’s name in Croatian " +"(‘{CroatianStart:r}HRVATSKA{CroatianEnd:E}’). All designs were selected " +"after voting in a public design competition." -#: src/templates/banknotes-codes.html.tmpl:279 -msgctxt "Company Name" -msgid "SETEC" -msgstr "" +#: src/templates/coins-designs-ad.html.tmpl:26 +msgid "Andorra’s Romanesque art" +msgstr "Andorra’s Romanesque art" -#: src/templates/coins-designs-de.html.tmpl:31 -msgctxt "Place Name" -msgid "Berlin" +#: src/templates/collecting-crh.html.tmpl:37 +msgid "Country-Specific Details" msgstr "" -#: src/templates/collecting-crh.html.tmpl:112 +#: src/templates/collecting-crh.html.tmpl:313 msgid "" -"There is a €1.50 fee per transaction with no limit on the number of rolls " -"you may take." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:143 +#: src/templates/collecting-crh.html.tmpl:332 msgid "" -"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." +"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." msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:464 +#: src/templates/collecting-crh.html.tmpl:370 +msgid "Coin rolls are available with a fee of 5%." +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:374 msgctxt "Company Name" -msgid "ING" +msgid "Top Exchange" msgstr "" -#: src/templates/collecting-crh.html.tmpl:474 -msgid "Coin rolls are available for a fee of €7 + €0.50 per roll." +#. TRANSLATORS: Beginning of sentence, as in ‘United in …’ +#: src/templates/index.html.tmpl:13 +msgid "United in" +msgstr "United in" + +#: src/templates/collecting-vending.html.tmpl:40 +msgid "Non-Merging" msgstr "" -#: src/templates/coins-designs-be.html.tmpl:57 -msgid "" -"In 2008 a second series of coins was released featuring a slightly modified " -"design in which the royal monogram was moved to the inner portion of the " -"coin along with the year of mintage in order to comply with the European " -"Commission’s guidelines. The country code ‘BE’ was also added to the design " -"underneath the royal monogram. The 2008 redesign also saw the use of a " -"slightly modified portrait of the King, but this design change was reverted " -"in 2009." +#: src/templates/coins-designs-ee.html.tmpl:87 +#: src/templates/coins-designs-ee.html.tmpl:97 +#: src/templates/coins-designs-ee.html.tmpl:144 +msgctxt "Header/Label" +msgid "Name" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:516 -msgid "Printer code on a {N} euro bill" -msgid_plural "Printer code on a {N} euro bill" -msgstr[0] "" -msgstr[1] "" +#: src/templates/coins-mintages.html.tmpl:110 +#: src/templates/coins-mintages.html.tmpl:148 +msgid "Standard Issue Coins" +msgstr "Standard Issue Coins" -#: src/templates/coins-designs-de.html.tmpl:60 +#: src/templates/collecting-crh.html.tmpl:164 msgid "" -"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." +"Coin rolls can be obtained for a fee of €0.50–€1.50 per roll. The amount " +"varies per branch." msgstr "" -#: src/templates/collecting-crh.html.tmpl:39 -msgid "" -"Below you can find country-specific details we have regarding obtaining coin " -"rolls. We lack a lot of information for many of the countries, so if you " -"have any additional information such as your banks fees, the availability of " -"coin roll machines, etc. feel free to contact us! You can find our contact " -"information {Link:l}here{-:E}." +#: src/templates/collecting-crh.html.tmpl:205 +msgid "Coin rolls are free but you must be a customer." msgstr "" -#: src/templates/collecting-crh.html.tmpl:154 +#: src/templates/collecting-crh.html.tmpl:360 msgctxt "Company Name" -msgid "German Post" +msgid "Bank of Lithuania" msgstr "" +#: src/templates/collecting-crh.html.tmpl:396 +msgid "You should be able to get coin rolls with no additional fees." +msgstr "" + +#: src/templates/-navbar.html.tmpl:44 +msgid "News" +msgstr "News" + +#: src/templates/coins-designs-nl.html.tmpl:8 +msgid "Dutch Euro Coin Designs" +msgstr "Dutch Euro Coin Designs" + #: src/templates/collecting-crh.html.tmpl:193 msgid "" "You can purchase individual coins and commemorative coin rolls (even those " @@ -1776,315 +1985,359 @@ msgid "" "do it." msgstr "" -#: src/templates/collecting-crh.html.tmpl:426 -msgctxt "Company Name" -msgid "HSBC Bank Malta" +#: src/templates/collecting-crh.html.tmpl:422 +#: src/templates/collecting-crh.html.tmpl:429 +msgid "" +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:448 +#: src/templates/collecting-crh.html.tmpl:516 msgctxt "Company Name" -msgid "The Dutch Central Bank" +msgid "Tatra banka" msgstr "" -#: src/templates/-navbar.html.tmpl:56 -msgid "About" -msgstr "About" +#: src/dbx/sql/last.sql:156 +msgctxt "CC Name" +msgid "Fête de la Fédération" +msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:17 -msgid "Croatian €1 coin" -msgstr "Croatian €1 coin" +#: src/templates/-navbar.html.tmpl:45 +msgid "Coin Collecting" +msgstr "Coin Collecting" -#: src/templates/banknotes.html.tmpl:31 -msgid "View the different Euro banknote designs" +#: src/templates/collecting-vending.html.tmpl:36 +msgid "Merging" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:152 -msgctxt "Coin Design" -msgid "Bird Road" +#: src/templates/collecting-vending.html.tmpl:46 +msgid "Limits" msgstr "" -#: src/templates/language.html.tmpl:45 src/templates/language.html.tmpl:79 -msgid "Select Your Language" -msgstr "Select Your Language" +#: src/templates/collecting-vending.html.tmpl:64 +msgid "" +"For information on Austrian cigarette machines, see the ‘{LinkStart:r}" +"Cigarette Machines{LinkEnd:E}’ section." +msgstr "" -#: src/templates/coins.html.tmpl:47 -msgid "View all the known Euro varieties" -msgstr "View all the known Euro varieties" +#: src/templates/coins-designs-at.html.tmpl:8 +msgid "Austrian Euro Coin Designs" +msgstr "Austrian Euro Coin Designs" -#: src/templates/jargon.html.tmpl:39 -msgid "NIFC — Not Intended For Circulation" +#: src/templates/banknotes-codes.html.tmpl:357 +#: src/templates/banknotes-codes.html.tmpl:439 +msgctxt "Company Name" +msgid "Federal Printing Office" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:90 -msgid "" -"In the 2002 series, the first letter of the serial number can be used to " -"identify the country that issued the banknote. The following table shows " -"which countries map to which codes." +#: src/templates/collecting-crh.html.tmpl:181 +msgctxt "Company Name" +msgid "Bank of Estonia Museum" msgstr "" -"In the 2002 series, the first letter of the serial number can be used to " -"identify the country that issued the banknote. The following table shows " -"which countries map to which codes." -#: src/templates/coins-mintages.html.tmpl:104 -msgctxt "Header/Label" -msgid "Filter" +#: src/templates/collecting-crh.html.tmpl:414 +msgctxt "Company Name" +msgid "Central Bank of Malta" msgstr "" -#: src/templates/collecting-crh.html.tmpl:93 -msgid "" -"There is a fee of €1 per roll if you aren’t a customer and €0.30 otherwise. " -"Coin deposits are free for customers." +#: src/templates/collecting-vending.html.tmpl:71 +msgid "Cigarette Machines" msgstr "" -#: src/templates/collecting-crh.html.tmpl:519 +#: src/templates/jargon.html.tmpl:39 +msgid "NIFC — Not Intended For Circulation" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:21 msgid "" -"You can get an unlimited number of rolls for a €5 fee. You must be a " -"customer of the bank." +"Depending on your bank and branch, the process of obtaining coins may " +"differ. Some banks require you speak to a teller while others have coin " +"machines. Some banks may also require that you are a customer or even that " +"you have a business account. If you aren’t sure about if you can get coins " +"we suggest you contact your bank, although further down this page we also " +"have additional information about the withdrawal of coins in various " +"countries and major banks." msgstr "" -#: src/templates/-navbar.html.tmpl:97 -msgid "Language" -msgstr "Language" +#: src/templates/collecting-crh.html.tmpl:509 +msgctxt "Company Name" +msgid "National Bank of Slovakia" +msgstr "" -#: src/templates/coins-designs-be.html.tmpl:39 +#: src/templates/collecting-storage.html.tmpl:44 msgid "" -"Since 1999 Belgium has released three series of euro coins, with each series " -"having a single design repeated on all denominations. Starting in 1999 the " -"Belgian euro coins featured the portrait of King Albert II with the {Link:L}" -"royal monogram{-:E} in the outer ring of the coins." +"Coin flips, also known as ‘2×2’ 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." msgstr "" -#: src/templates/jargon.html.tmpl:15 -msgid "Euro Cash Jargon" -msgstr "Euro Cash Jargon" - -#: src/templates/-base.html.tmpl:55 -msgid "Feel free to contact us!" -msgstr "Feel free to contact us!" +#: src/templates/banknotes-codes.html.tmpl:57 +msgid "All these images are taken from {Link:L}eurobilltracker.com{-:E}." +msgstr "All these images are taken from {Link:L}eurobilltracker.com{-:E}." -#: src/templates/banknotes-codes.html.tmpl:343 -#: src/templates/banknotes-codes.html.tmpl:489 -#: src/templates/collecting-crh.html.tmpl:306 -msgctxt "Company Name" -msgid "Bank of Greece" +#: src/templates/banknotes-codes.html.tmpl:383 +msgid "" +"In the Europa series the first letter of the serial number can be used to " +"identify the printer that printed the banknote, just like the printer code. " +"The following table shows which countries map to which codes." msgstr "" +"In the Europa series the first letter of the serial number can be used to " +"identify the printer that printed the banknote, just like the printer code. " +"The following table shows which countries map to which codes." -#: src/templates/coins-designs-ee.html.tmpl:178 -msgid "Margus Kadarik" -msgstr "Margus Kadarik" +#: src/templates/coins-designs-ee.html.tmpl:160 +msgctxt "Coin Design" +msgid "Leopards-2" +msgstr "" -#: src/templates/coins-mintages.html.tmpl:101 +#: src/templates/coins-mintages.html.tmpl:97 msgctxt "Header/Label" -msgid "Proof Coins" +msgid "Circulation Coins" msgstr "" -#: src/templates/collecting-crh.html.tmpl:320 +#: src/templates/collecting-crh.html.tmpl:459 msgid "" -"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)." +"Coin rolls are available for a fee of €0.30 per roll. You must withdraw " +"between 10–20 rolls." msgstr "" -#: src/templates/index.html.tmpl:14 -msgid "diversity" -msgstr "diversity" +#: src/templates/coins-designs-be.html.tmpl:21 +msgid "Belgian Euro Coin Designs" +msgstr "Belgian Euro Coin Designs" -#: src/templates/coins-designs-be.html.tmpl:34 -msgid "Belgian €1 coin (King Philippe)" -msgstr "Belgian €1 coin (King Philippe)" +#: src/templates/coins-designs-ee.html.tmpl:91 +#: src/templates/coins-designs-ee.html.tmpl:105 +#: src/templates/coins-designs-ee.html.tmpl:113 +#: src/templates/coins-designs-ee.html.tmpl:121 +#: src/templates/coins-designs-ee.html.tmpl:130 +#: src/templates/coins-designs-ee.html.tmpl:139 +#: src/templates/coins-designs-ee.html.tmpl:146 +#: src/templates/coins-designs-ee.html.tmpl:154 +#: src/templates/coins-designs-ee.html.tmpl:162 +#: src/templates/coins-designs-ee.html.tmpl:171 +#: src/templates/coins-designs-ee.html.tmpl:179 +msgctxt "Header/Label" +msgid "Votes" +msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:16 -msgid "Andorran €1 coin" -msgstr "Andorran €1 coin" +#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script +#: src/templates/coins-designs-ee.html.tmpl:103 +msgctxt "Coin Design" +msgid "Hara 2" +msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:69 -msgid "" -"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." +#: src/templates/collecting-vending.html.tmpl:55 +msgid "Maximum Change Limit" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:119 -msgctxt "Coin Design" -msgid "In the Body" +#: src/templates/coins-designs-ad.html.tmpl:23 +msgid "€0.01, €0.02 and €0.05" +msgstr "€0.01, €0.02 and €0.05" + +#: src/templates/jargon.html.tmpl:31 +msgid "" +"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)." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:161 -msgid "Jaarno Ester" -msgstr "Jaarno Ester" +#: src/templates/collecting-storage.html.tmpl:56 +msgid "Examples" +msgstr "" -#: src/templates/collecting-crh.html.tmpl:419 +#: src/templates/banknotes-codes.html.tmpl:307 msgctxt "Company Name" -msgid "Bank of Valletta" +msgid "De La Rue" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:24 -msgid "Andorran landscapes, nature, fauna and flora" -msgstr "Andorran landscapes, nature, fauna and flora" +#: src/templates/coins-designs-de.html.tmpl:54 +msgid "" +"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." +msgstr "" -#: src/templates/coins-designs-at.html.tmpl:17 -msgid "Austrian €0.01 coin" -msgstr "Austrian €0.01 coin" +#: src/templates/coins-designs-de.html.tmpl:60 +msgid "" +"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." +msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:17 -msgid "Andorran €2 coin" -msgstr "Andorran €2 coin" +#: src/templates/collecting-crh.html.tmpl:34 +msgid "" +"In some countries such as Austria it is even common to be able to withdraw " +"new coins from your account using other coins." +msgstr "" -#: src/templates/-base.html.tmpl:11 -msgid "Euro Cash Wiki" -msgstr "Euro Cash Wiki" +#: src/templates/collecting-vending.html.tmpl:51 +msgid "Maximum Input Limit" +msgstr "" -#: src/templates/banknotes-codes.html.tmpl:98 -#: src/templates/banknotes-codes.html.tmpl:141 -#: src/templates/banknotes-codes.html.tmpl:185 -#: src/templates/banknotes-codes.html.tmpl:265 -#: src/templates/banknotes-codes.html.tmpl:391 -#: src/templates/coins-mintages.html.tmpl:56 -#: src/templates/coins-mintages.html.tmpl:62 -#: src/templates/coins-mintages.html.tmpl:152 -#: src/templates/coins-mintages.html.tmpl:226 -msgctxt "Header/Label" -msgid "Country" +#: src/templates/index.html.tmpl:9 +msgid "The Euro Cash Wiki" +msgstr "The Euro Cash Wiki" + +#: src/templates/-navbar.html.tmpl:53 +msgid "Discord" +msgstr "Discord" + +#: src/templates/jargon.html.tmpl:34 +msgid "BU — Brilliantly Uncirculated" msgstr "" -#: src/templates/collecting-crh.html.tmpl:190 +#: src/templates/banknotes-codes.html.tmpl:482 msgctxt "Company Name" -msgid "Bank of Spain" +msgid "Giesecke+Devrient Munich" msgstr "" -#: src/templates/about.html.tmpl:8 -msgid "About Us" -msgstr "About Us" +#: src/templates/coins-designs-de.html.tmpl:16 +msgid "German €1 coin" +msgstr "German €1 coin" -#: src/templates/banknotes-codes.html.tmpl:286 -#: src/templates/banknotes-codes.html.tmpl:404 +#: src/templates/collecting-crh.html.tmpl:79 msgctxt "Company Name" -msgid "Oberthur" +msgid "Erste Bank" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:383 -msgid "" -"In the Europa series the first letter of the serial number can be used to " -"identify the printer that printed the banknote, just like the printer code. " -"The following table shows which countries map to which codes." +#: src/templates/collecting-crh.html.tmpl:190 +msgctxt "Company Name" +msgid "Bank of Spain" msgstr "" -"In the Europa series the first letter of the serial number can be used to " -"identify the printer that printed the banknote, just like the printer code. " -"The following table shows which countries map to which codes." -#: src/templates/coins-designs-ee.html.tmpl:65 +#: src/templates/collecting-vending.html.tmpl:18 msgid "" -"The Estonian euro coins feature the same design across all eight " -"denominations. The country’s outline is prominently displayed above the " -"country’s name in Estonian (‘{EstonianStart:r}EESTI{EstonianEnd:E}’)." +"First, you want to make sure the vending machine you come across actually " +"gives back change – sometimes they don’t! Throw in a 10c 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 coin and press the return button. You should do " +"this because vending machines may not return €2 coins, but rather €1 or 50c " +"coins instead. It’s better to find out immediately as opposed to later once " +"you’ve already put in all of your €2 coins." msgstr "" -"The Estonian euro coins feature the same design across all eight " -"denominations. The country’s outline is prominently displayed above the " -"country’s name in Estonian (‘{EstonianStart:r}EESTI{EstonianEnd:E}’)." -#: src/templates/collecting-crh.html.tmpl:509 -msgctxt "Company Name" -msgid "National Bank of Slovakia" -msgstr "" +#: src/templates/banknotes.html.tmpl:18 +msgid "Euro Banknotes" +msgstr "Euro Banknotes" -#: src/templates/banknotes-codes.html.tmpl:305 -msgctxt "Place Name" -msgid "United Kingdom" +#: src/templates/coins-designs-ad.html.tmpl:56 +msgid "Finally, the €2 coin features the {Link:L}coat of arms of Andorra{-:E}." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:129 -msgid "Taavi Torim" -msgstr "Taavi Torim" +#: src/templates/banknotes-codes.html.tmpl:269 +#: src/templates/banknotes-codes.html.tmpl:395 +msgctxt "Header/Label" +msgid "Local Names" +msgstr "" -#: src/templates/collecting-crh.html.tmpl:332 +#: src/templates/collecting-crh.html.tmpl:254 msgid "" -"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." +"Coin rolls used to be obtainable without fees, however you can no longer " +"obtain rolls." msgstr "" -#: src/templates/collecting-crh.html.tmpl:525 +#: src/templates/collecting-crh.html.tmpl:300 msgid "" -"We currently have no information regarding coin roll hunting in San Marino." +"There are coin roll machines but it is not yet known if you need to be a " +"customer or if there are fees." msgstr "" -#: src/templates/coins.html.tmpl:45 -msgid "Varieties" -msgstr "Varieties" +#: src/templates/collecting-crh.html.tmpl:408 +msgid "We currently have no information regarding coin roll hunting in Monaco." +msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:25 -msgid "" -"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)." +#: src/templates/collecting-crh.html.tmpl:471 +msgctxt "Company Name" +msgid "Rabobank" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:26 -msgid "Austrian €0.20 coin" -msgstr "Austrian €0.20 coin" +#: src/templates/coins-designs-at.html.tmpl:37 +msgid "" +"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." +msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:145 -msgid "Mai Järmut, Villu Järmut" -msgstr "Mai Järmut, Villu Järmut" +#: src/templates/-base.html.tmpl:11 +msgid "Euro Cash Wiki" +msgstr "Euro Cash Wiki" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:209 +#: src/templates/banknotes-codes.html.tmpl:293 +#: src/templates/banknotes-codes.html.tmpl:425 msgctxt "Company Name" -msgid "BBVA" +msgid "Austrian Banknote and Security Printing" msgstr "" -#. TRANSLATORS: City in Spain -#: src/templates/collecting-crh.html.tmpl:213 -msgid "Alicante" +#: src/templates/coins-designs-de.html.tmpl:8 +msgid "German Euro Coin Designs" +msgstr "German Euro Coin Designs" + +#: src/templates/coins-designs-ee.html.tmpl:92 +#: src/templates/coins-designs-ee.html.tmpl:106 +#: src/templates/coins-designs-ee.html.tmpl:114 +#: src/templates/coins-designs-ee.html.tmpl:122 +#: src/templates/coins-designs-ee.html.tmpl:131 +#: src/templates/coins-designs-ee.html.tmpl:140 +#: src/templates/coins-designs-ee.html.tmpl:147 +#: src/templates/coins-designs-ee.html.tmpl:155 +#: src/templates/coins-designs-ee.html.tmpl:163 +#: src/templates/coins-designs-ee.html.tmpl:172 +#: src/templates/coins-designs-ee.html.tmpl:180 +msgctxt "Header/Label" +msgid "Votes (%)" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:21 -msgid "" -"The Croatian euro coins feature four different themes, with each design " -"featuring the Croatian checkerboard and the country’s name in Croatian " -"(‘{CroatianStart:r}HRVATSKA{CroatianEnd:E}’). All designs were selected " -"after voting in a public design competition." +#: src/templates/coins-designs-ee.html.tmpl:111 +msgctxt "Coin Design" +msgid "Consistency" msgstr "" -"The Croatian euro coins feature four different themes, with each design " -"featuring the Croatian checkerboard and the country’s name in Croatian " -"(‘{CroatianStart:r}HRVATSKA{CroatianEnd:E}’). All designs were selected " -"after voting in a public design competition." -#: src/templates/banknotes-codes.html.tmpl:300 -#: src/templates/banknotes-codes.html.tmpl:432 +#: src/templates/collecting-crh.html.tmpl:24 +msgid "Getting Started" +msgstr "" + +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:275 msgctxt "Company Name" -msgid "Royal Joh. Enschedé" +msgid "CIC" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:76 +#: src/templates/coins-designs-nl.html.tmpl:41 msgid "" -"The winner of the contest was awarded 50,000 KR (€3,196) while the other " -"finalists were each awarded 20,000 KR (€1,278)." +"The €1 and €2 coins featuring King Willem-Alexander were minted with a much " +"lower {Link:l}relief{-:E} than most euro coins of the same denomination. As " +"a result it is not uncommon for these coins to appear worn after little use " +"in circulation." msgstr "" -"The winner of the contest was awarded 50,000 KR (€3,196) while the other " -"finalists were each awarded 20,000 KR (€1,278)." -#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script -#: src/templates/coins-designs-ee.html.tmpl:103 -msgctxt "Coin Design" -msgid "Hara 2" -msgstr "" +#: src/templates/coins-designs-ad.html.tmpl:12 +msgid "Andorran €0.01 coin" +msgstr "Andorran €0.01 coin" -#: src/templates/collecting-crh.html.tmpl:43 -msgid "" -"Be aware of the fact that the information below may be outdated or " -"inaccurate. Many of the details are self-reported." +#: src/templates/collecting-storage.html.tmpl:15 +msgid "Coin Albums" msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:124 -msgctxt "Company Name" -msgid "Belfius" +#: src/templates/collecting-storage.html.tmpl:24 +msgid "Coin Boxes" msgstr "" -#: src/templates/collecting-crh.html.tmpl:147 -msgctxt "Company Name" -msgid "German Federal Bank" +#: src/templates/coins-mintages.html.tmpl:58 +#: src/templates/coins-mintages.html.tmpl:79 +#: src/templates/coins-mintages.html.tmpl:114 +#: src/templates/coins-mintages.html.tmpl:189 +msgctxt "Header/Label" +msgid "Year" msgstr "" #: src/templates/collecting-crh.html.tmpl:177 @@ -2093,97 +2346,93 @@ msgid "" "expensive. You also generally need to make an appointment in advance." msgstr "" -#: src/templates/about.html.tmpl:17 -msgid "Contact Us" -msgstr "Contact Us" +#. TRANSLATORS: City in Spain +#: src/templates/collecting-crh.html.tmpl:213 +msgid "Alicante" +msgstr "" -#: src/templates/coins-designs-at.html.tmpl:27 -msgid "Austrian €0.50 coin" -msgstr "Austrian €0.50 coin" +#: src/templates/collecting-crh.html.tmpl:347 +msgid "Coin rolls are available to everyone." +msgstr "" -#: src/templates/banknotes.html.tmpl:47 -msgid "Learn about the special test notes" -msgstr "Learn about the special test notes" +#: src/templates/-error.html.tmpl:15 +msgid "" +"If this issue persists, don’t hesitate to contact ‘@onetruemangoman’ on " +"Discord or to email us at {Email:e}" +msgstr "" +"If this issue persists, don’t hesitate to contact ‘@onetruemangoman’ on " +"Discord or to email us at {Email:e}" -#: src/templates/coins-designs-de.html.tmpl:16 -msgid "German €1 coin" -msgstr "German €1 coin" +#: src/templates/-navbar.html.tmpl:43 +msgid "Home" +msgstr "Home" -#: src/templates/collecting-crh.html.tmpl:300 +#: src/templates/collecting-vending.html.tmpl:21 +msgid "The Stopper" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:150 msgid "" -"There are coin roll machines but it is not yet known if you need to be a " -"customer or if there are fees." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:360 +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:209 msgctxt "Company Name" -msgid "Bank of Lithuania" +msgid "BBVA" msgstr "" #. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:393 +#: src/templates/collecting-crh.html.tmpl:269 msgctxt "Company Name" -msgid "Dexia" +msgid "Caisse d’Épargne" msgstr "" -#: src/templates/coins-designs-be.html.tmpl:60 -msgid "" -"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." +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:291 +msgctxt "Company Name" +msgid "Crédit Agricole" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:38 -#: src/templates/banknotes.html.tmpl:37 -msgid "Location Codes" -msgstr "Location Codes" +#: src/templates/language.html.tmpl:47 src/templates/language.html.tmpl:90 +msgid "Other Languages" +msgstr "Other Languages" -#: src/templates/jargon.html.tmpl:59 -msgid "UNC — Uncirculated" +#: src/templates/banknotes-codes.html.tmpl:47 +msgid "" +"The printer code (not to be confused with the serial number) is a small code " +"printed on banknotes with information about where the banknote was printed. " +"All printer codes have the form ‘X000X0’ – or in other words – a letter " +"followed by 3 numbers, a letter and a final number." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:14 -msgid "German €0.01 coin" -msgstr "German €0.01 coin" +#: src/templates/coins-designs-at.html.tmpl:27 +msgid "Austrian €0.50 coin" +msgstr "Austrian €0.50 coin" -#: src/templates/collecting-crh.html.tmpl:90 -msgctxt "Company Name" -msgid "Raiffeisen Bank" +#: src/templates/banknotes.html.tmpl:31 +msgid "View the different Euro banknote designs" msgstr "" -#: src/templates/about.html.tmpl:19 -msgid "" -"While we try to stay as up-to-date as possible and to fact check our " -"information, it is always possible that we get something wrong, lack a " -"translation, or are missing some piece of data you may have. Should that be " -"the case, don’t hesitate to contact us; we’ll try to get the site updated or " -"fixed as soon as possible. You are always free to contribute via a git patch " -"if you are more technically inclined, but if not you can always send an " -"email to {Email:e} or contact ‘@onetruemangoman’ on Discord." +#: src/templates/jargon.html.tmpl:49 +msgid "PMD — Post-Mint Damage" msgstr "" -"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." -#: src/templates/-navbar.html.tmpl:47 -msgid "Banknotes" -msgstr "Banknotes" +#: src/templates/coins-designs-de.html.tmpl:31 +msgctxt "Place Name" +msgid "Berlin" +msgstr "" -#: src/templates/jargon.html.tmpl:22 -msgid "" -"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." +#: src/templates/collecting-crh.html.tmpl:483 +msgid "Coin bags are sold with no additional fees to everyone." msgstr "" -#: src/templates/jargon.html.tmpl:29 -msgid "AU — Almost Uncirculated" +#: src/templates/collecting-crh.html.tmpl:512 +msgid "" +"You may be able to get uncirculated rolls, but this is not yet confirmed." msgstr "" #: src/templates/jargon.html.tmpl:69 @@ -2193,9 +2442,14 @@ msgid "" "obtained at banks or coin roll machines." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:138 -msgid "Jaak Peep, Villem Valme" -msgstr "Jaak Peep, Villem Valme" +#: src/templates/collecting-storage.html.tmpl:88 +msgid "Flips in an album" +msgstr "" + +#: src/templates/coins-mintages.html.tmpl:186 +#: src/templates/coins-mintages.html.tmpl:223 +msgid "Commemorative Coins" +msgstr "Commemorative Coins" #: src/templates/collecting-crh.html.tmpl:26 msgid "" @@ -2206,48 +2460,90 @@ msgid "" "charge you a small fee per roll and/or transaction." msgstr "" -#: src/templates/coins.html.tmpl:39 -msgid "View the mintage figures of all the Euro coins" -msgstr "View the mintage figures of all the Euro coins" +#: src/templates/collecting-crh.html.tmpl:480 +msgctxt "Company Name" +msgid "Bank of Portugal" +msgstr "" -#: src/templates/collecting-crh.html.tmpl:236 +#: src/templates/language.html.tmpl:45 src/templates/language.html.tmpl:79 +msgid "Select Your Language" +msgstr "Select Your Language" + +#: src/templates/collecting-vending.html.tmpl:11 +msgid "What is Vending Machine Hunting?" +msgstr "" + +#: src/templates/coins-designs-hr.html.tmpl:17 +msgid "Croatian €1 coin" +msgstr "Croatian €1 coin" + +#: src/templates/coins-designs-be.html.tmpl:46 +#: src/templates/coins-designs-be.html.tmpl:51 +msgid "2008 portrait of King Albert II" +msgstr "" + +#: src/templates/coins-designs-at.html.tmpl:17 +msgid "Austrian €0.01 coin" +msgstr "Austrian €0.01 coin" + +#: src/templates/coins-designs.html.tmpl:25 +msgid "Euro Coin Designs" +msgstr "Euro Coin Designs" + +#: src/templates/banknotes-codes.html.tmpl:411 msgctxt "Company Name" -msgid "Bank of Finland" +msgid "Oberthur Fiduciaire AD" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:185 -msgctxt "Header/Label" -msgid "Total" +#: src/templates/collecting-crh.html.tmpl:168 +msgctxt "Company Name" +msgid "Volksbank" msgstr "" -#: src/templates/coins-mintages.html.tmpl:191 -#: src/templates/coins-mintages.html.tmpl:228 -msgctxt "Header/Label" -msgid "Mintage" +#: src/templates/collecting-crh.html.tmpl:217 +msgid "Madrid" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:12 +#: src/templates/collecting.html.tmpl:22 msgid "" -"The Austrian euro coins can be grouped into three different themes. The " -"bronze coins feature Austrian flowers, the gold coins feature Austrian " -"architecture and the bimetalic coins feature famous Austrian people. All " -"coins also feature an Austrian flag as well as the coins denomination. These " -"coins together with the {Link:l}Greek euro coins{-:E} are the only coins " -"that feature the denomination on both the common and national sides of the " -"coin." +"On this section of the site you can find everything there is to know about " +"collecting Euro coins. If this is a hobby that interests you, join the " +"Discord server linked at the top of the page!" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:409 -msgctxt "Place Name" -msgid "Bulgaria" +#: src/templates/coins-designs-hr.html.tmpl:38 +msgid "" +"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ć." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:54 +#: src/templates/coins-designs-nl.html.tmpl:37 msgid "" -"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." +"Coins featuring both monarchs contain text reading ‘{DutchStart:r}BEATRIX " +"KONINGIN DER NEDERLANDEN{DutchEnd:E}’ (English: ‘BEATRIX QUEEN OF THE " +"NETHERLANDS’) and ‘{DutchStart:r}Willem-Alexander Koning der " +"Nederlanden{DutchEnd:E}’ (English: ‘Willem-Alexander King of the " +"Netherlands’) respectively. The €2 coins also feature an edge-inscription " +"reading ‘{DutchStart:r}GOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆{DutchEnd:E}’ (English: ‘GOD ⋆ " +"IS ⋆ WITH ⋆ US ⋆’)." +msgstr "" + +#: src/templates/coins-designs-ad.html.tmpl:28 +msgid "Casa de la Vall" +msgstr "Casa de la Vall" + +#: src/templates/banknotes-codes.html.tmpl:300 +#: src/templates/banknotes-codes.html.tmpl:432 +msgctxt "Company Name" +msgid "Royal Joh. Enschedé" +msgstr "" + +#: src/templates/coins-mintages.html.tmpl:54 +msgctxt "Header/Label" +msgid "Filter Method" msgstr "" #: src/templates/collecting-crh.html.tmpl:86 @@ -2257,92 +2553,161 @@ msgid "" "is free for all Erste Bank customers at Dornbirner Sparkasse with no limit." msgstr "" -#: src/templates/collecting-crh.html.tmpl:104 +#: src/templates/coins.html.tmpl:18 +msgid "Euro Coins" +msgstr "Euro Coins" + +#: src/templates/collecting-vending.html.tmpl:38 msgid "" -"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." +"The vending machine merges change together. For example if you throw in five " +"50c coins, the machine returns either two €1 coins and one 50c coin or one " +"€2 and one 50c coin. This usually means you can hunt €2 coins very quickly " +"but other denominations only once at a time. A good tip is to throw in an " +"odd number of euros and €0.80 if you want to search through all " +"denominations." msgstr "" -#: src/templates/collecting-crh.html.tmpl:254 +#: src/templates/coins-designs-hr.html.tmpl:8 +msgid "Croatian Euro Coin Designs" +msgstr "Croatian Euro Coin Designs" + +#: src/templates/jargon.html.tmpl:22 msgid "" -"Coin rolls used to be obtainable without fees, however you can no longer " -"obtain rolls." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:383 -msgctxt "Company Name" -msgid "Central Bank of Luxembourg" +#: src/templates/banknotes-codes.html.tmpl:97 +#: src/templates/banknotes-codes.html.tmpl:140 +#: src/templates/banknotes-codes.html.tmpl:184 +#: src/templates/banknotes-codes.html.tmpl:264 +#: src/templates/banknotes-codes.html.tmpl:390 +msgctxt "Header/Label" +msgid "Code" msgstr "" -#: src/templates/coins-mintages.html.tmpl:58 -#: src/templates/coins-mintages.html.tmpl:79 -#: src/templates/coins-mintages.html.tmpl:114 -#: src/templates/coins-mintages.html.tmpl:189 -msgctxt "Header/Label" -msgid "Year" +#: src/templates/collecting-crh.html.tmpl:66 +msgctxt "Company Name" +msgid "Bank Austria" msgstr "" -#: src/templates/collecting-crh.html.tmpl:62 +#: src/templates/collecting-crh.html.tmpl:184 msgid "" -"The Austrian National Bank does not distribute circulated rolls but sells " -"rolls of commemorative coins at face value on release as well as " -"uncirculated rolls for all denominations." +"You can purchase commemorative coins – including those released years ago – " +"for face value." msgstr "" -#: src/templates/collecting-crh.html.tmpl:82 +#: src/templates/coins-designs-de.html.tmpl:39 +msgctxt "Place Name" +msgid "Stuttgart" +msgstr "" + +#. TRANSLATORS: On the German page the filter is called ‘Münzrollengeber’. For other languages we link to the English site, so mention the English filter name surrounded by ‘{EnglishStart:r}’ and ‘{EnglishEnd:E}’, and also translate it in parenthesis to your language. For example the Swedish page might say: ‘”{EnglishStart:r}coin roll dispenser{EnglishEnd:E}” (svenska: ”myntrullsautomat”)’ +#: src/templates/collecting-crh.html.tmpl:73 msgid "" -"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." +"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}." msgstr "" -#: src/templates/collecting-crh.html.tmpl:351 -msgctxt "Company Name" -msgid "Banca di Cambiano" +#: src/templates/collecting-crh.html.tmpl:388 +msgid "" +"We currently have no information regarding regular coins, however their " +"webshop sells commemorative coins. Commemorative coins are also available " +"for purchase in-person." msgstr "" -#: src/templates/collecting-crh.html.tmpl:396 -msgid "You should be able to get coin rolls with no additional fees." +#: src/templates/collecting-crh.html.tmpl:444 +msgid "" +"1- and 2 cent coins have been removed from circulation and cannot be " +"obtained." msgstr "" -#: src/templates/collecting-crh.html.tmpl:133 -msgctxt "Company Name" -msgid "Bank of Cyprus" +#: src/dbx/sql/last.sql:137 src/dbx/sql/last.sql:140 src/dbx/sql/last.sql:143 +#: src/dbx/sql/last.sql:146 src/dbx/sql/last.sql:149 +msgctxt "CC Name" +msgid "German Reunification" msgstr "" -#: src/templates/collecting-crh.html.tmpl:480 -msgctxt "Company Name" -msgid "Bank of Portugal" +#: src/templates/about.html.tmpl:11 +msgid "Open Source" +msgstr "Open Source" + +#: src/templates/coins-designs-de.html.tmpl:65 +msgid "" +"The €2 coin also features an edge-inscription of Germany’s national motto " +"and incipit of Germany’s national anthem. It reads ‘{GermanStart:r}EINIGKEIT " +"UND RECHT UND FREIHEIT{GermanEnd:E}’ (English: ‘UNITY AND JUSTICE AND " +"FREEDOM’)." msgstr "" +"The €2 coin also features an edge-inscription of Germany’s national motto " +"and incipit of Germany’s national anthem. It reads ‘{GermanStart:r}EINIGKEIT " +"UND RECHT UND FREIHEIT{GermanEnd:E}’ (English: ‘UNITY AND JUSTICE AND " +"FREEDOM’)." -#: src/templates/banknotes-codes.html.tmpl:373 -#: src/templates/banknotes-codes.html.tmpl:418 -msgctxt "Company Name" -msgid "Valora S.A." +#: src/templates/collecting.html.tmpl:46 +msgid "Shop Hunting" msgstr "" -#: src/templates/coins-designs-de.html.tmpl:25 -msgctxt "Header/Label" -msgid "City" +#: src/templates/jargon.html.tmpl:51 +msgid "" +"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." msgstr "" -#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script -#: src/templates/coins-designs-ee.html.tmpl:169 -msgctxt "Coin Design" -msgid "Nova" +#: src/templates/collecting-storage.html.tmpl:64 +msgid "Flips in a case" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:38 +#: src/templates/coins-designs.html.tmpl:29 msgid "" -"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ć." +"Here you’ll be able to view all the coin designs for each country in the " +"Eurozone. This section of the site doesn’t include minor varieties such as " +"different mintmarks or errors; those are on the {Link:l}varieties{-:E} page." msgstr "" +"Here you’ll be able to view all the coin designs for each country in the " +"Eurozone. This section of the site doesn’t include minor varieties such as " +"different mintmarks or errors; those are on the {Link:l}varieties{-:E} page." + +#: src/templates/banknotes-codes.html.tmpl:373 +#: src/templates/banknotes-codes.html.tmpl:418 +msgctxt "Company Name" +msgid "Valora S.A." +msgstr "" + +#~ msgid "" +#~ "The first letter in the printer code identifies the specific printer at " +#~ "which the banknote was printed. The tables below will tell you which " +#~ "letters correspond to which printers. The final letter and number form a " +#~ "pair (such as ‘A2’ or ‘D6’) — this pair acts as a set of coordinates " +#~ "telling you where on the sheet of paper the banknote was located. During " +#~ "printing, banknotes are printed in a grid on a large sheet of paper which " +#~ "is then cut into individual banknotes. A note with the pair ‘A1’ will " +#~ "have been at the upper-left corner of the printing sheet, with ‘A2’ to " +#~ "its right and ‘B1’ below it." +#~ msgstr "" +#~ "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." + +#~ msgid "" +#~ "The printer code (not to be confused with the serial number) is a small " +#~ "code printed on banknotes with information about where the banknote was " +#~ "printed. All printer codes have the form ‘X000X0’ — or in other words — a " +#~ "letter followed by 3 numbers, a letter and a final number." +#~ msgstr "" +#~ "The printer code (not to be confused with the serial number) is a small " +#~ "code printed on banknotes with information about where the banknote was " +#~ "printed. All printer codes have the form ‘X000X0’ — or in other words — a " +#~ "letter followed by 3 numbers, a letter and a final number." #~ msgid "Proof Coins" #~ msgstr "Proof Coins" diff --git a/po/nl/messages.po b/po/nl/messages.po index c1298ad..5cd7edc 100644 --- a/po/nl/messages.po +++ b/po/nl/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Euro Cash Wiki v1.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-03 13:22+0100\n" +"POT-Creation-Date: 2025-11-03 15:47+0100\n" "PO-Revision-Date: 2025-08-03 22:47+0200\n" "Last-Translator: Thomas Voss <mail@thomasvoss.com>\n" "Language-Team: N/A\n" @@ -294,372 +294,413 @@ msgctxt "Place Name" msgid "Vatican City" msgstr "Vaticaanstad" -#: src/templates/coins-designs-ee.html.tmpl:60 -msgid "Estonian €1 coin" +#: src/templates/coins-designs-ee.html.tmpl:170 +msgid "Rene Haljasmäe" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:92 -#: src/templates/coins-designs-ee.html.tmpl:106 -#: src/templates/coins-designs-ee.html.tmpl:114 -#: src/templates/coins-designs-ee.html.tmpl:122 -#: src/templates/coins-designs-ee.html.tmpl:131 -#: src/templates/coins-designs-ee.html.tmpl:140 -#: src/templates/coins-designs-ee.html.tmpl:147 -#: src/templates/coins-designs-ee.html.tmpl:155 -#: src/templates/coins-designs-ee.html.tmpl:163 -#: src/templates/coins-designs-ee.html.tmpl:172 -#: src/templates/coins-designs-ee.html.tmpl:180 -msgctxt "Header/Label" -msgid "Votes (%)" +#: src/templates/collecting-crh.html.tmpl:426 +msgctxt "Company Name" +msgid "HSBC Bank Malta" msgstr "" -#: src/templates/collecting-crh.html.tmpl:116 -msgctxt "Company Name" -msgid "KBC Bank" +#: src/templates/index.html.tmpl:14 +msgid "diversity" msgstr "" -#: src/templates/collecting.html.tmpl:46 -msgid "Shop Hunting" -msgstr "Winkeljacht" +#: src/templates/coins-designs-hr.html.tmpl:33 +msgid "" +"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)." +msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:53 +#: src/templates/collecting-storage.html.tmpl:21 msgid "" -"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." +"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." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:91 -#: src/templates/coins-designs-ee.html.tmpl:105 -#: src/templates/coins-designs-ee.html.tmpl:113 -#: src/templates/coins-designs-ee.html.tmpl:121 -#: src/templates/coins-designs-ee.html.tmpl:130 -#: src/templates/coins-designs-ee.html.tmpl:139 -#: src/templates/coins-designs-ee.html.tmpl:146 -#: src/templates/coins-designs-ee.html.tmpl:154 -#: src/templates/coins-designs-ee.html.tmpl:162 -#: src/templates/coins-designs-ee.html.tmpl:171 -#: src/templates/coins-designs-ee.html.tmpl:179 -msgctxt "Header/Label" -msgid "Votes" +#. TRANSLATORS: As in ‘5 Euro Banknote’ +#: src/templates/banknotes-codes.html.tmpl:512 +msgid "{N} Euro" +msgid_plural "{N} Euro" +msgstr[0] "" +msgstr[1] "" + +#: src/templates/coins-designs-ee.html.tmpl:138 +msgid "Jaak Peep, Villem Valme" msgstr "" -#: src/templates/jargon.html.tmpl:27 -msgid "General Terms" +#: src/templates/collecting-crh.html.tmpl:43 +msgid "" +"Be aware of the fact that the information below may be outdated or " +"inaccurate. Many of the details are self-reported." msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:14 -msgid "Croatian €0.50 coin" +#: src/templates/coins.html.tmpl:31 +msgid "View the 600+ different Euro-coin designs" msgstr "" -#: src/templates/banknotes.html.tmpl:22 +#: src/templates/jargon.html.tmpl:61 msgid "" -"On this section of the site you can find everything there is to know about " -"the banknotes of the Eurozone." +"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." msgstr "" -#: src/templates/-base.html.tmpl:54 -msgid "Found a mistake or want to contribute missing information?" +#: src/templates/collecting-storage.html.tmpl:72 +msgid "Flips and capsules in a box" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:267 -#: src/templates/banknotes-codes.html.tmpl:393 -msgctxt "Header/Label" -msgid "Printer" +#: src/templates/banknotes-codes.html.tmpl:329 +#: src/templates/banknotes-codes.html.tmpl:461 +#: src/templates/collecting-crh.html.tmpl:263 +msgctxt "Company Name" +msgid "Bank of France" msgstr "" -#: src/templates/collecting-crh.html.tmpl:150 +#: src/templates/coins-designs-ee.html.tmpl:119 +msgctxt "Coin Design" +msgid "In the Body" +msgstr "" + +#: src/templates/coins-designs-ee.html.tmpl:177 +msgctxt "Coin Design" +msgid "A Flower in the Rye" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:439 msgid "" -"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." +"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." msgstr "" -#: src/templates/-navbar.html.tmpl:48 -msgid "Jargon" +#: src/templates/banknotes.html.tmpl:29 src/templates/coins.html.tmpl:29 +msgid "Designs" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:30 +#: src/templates/coins.html.tmpl:22 msgid "" -"The €0.10 coin features St. Stephen’s Cathedral. It symbolises the Viennese " -"Gothic architectural style dating to around the year 1160. The €0.20 coin " -"features Belvedere Palace. This is an example of Baroque architecture and " -"symbolises the national freedom and sovereignty of Austria. Finally, the " -"€0.50 coin features the Secession Building: an exhibition hall in the Art " -"Nouveau style." +"On this section of the site you can find everything there is to know about " +"the coins of the Eurozone." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:8 -msgid "Andorran Euro Coin Designs" +#: src/templates/coins-designs-ad.html.tmpl:20 +msgid "" +"On March of 2013 Andorra held a public design competition for all " +"denominations except for the €2 denomination which the government pre-" +"decided would bear the coat of arms of Andorra. Each set of denominations " +"had a theme that participants had to center their designs around. These " +"themes were:" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:12 -msgid "Andorran €0.01 coin" +#: src/templates/coins-designs-ad.html.tmpl:25 +msgid "€0.10, €0.20 and €0.50" msgstr "" -#: src/templates/coins-mintages.html.tmpl:186 -#: src/templates/coins-mintages.html.tmpl:223 -msgid "Commemorative Coins" +#: src/templates/collecting-storage.html.tmpl:51 +msgid "Coin Rolls" msgstr "" -#: src/templates/collecting-crh.html.tmpl:119 -msgid "Rolls can be obtained with no fee by customers only" +#: src/templates/collecting-crh.html.tmpl:93 +msgid "" +"There is a fee of €1 per roll if you aren’t a customer and €0.30 otherwise. " +"Coin deposits are free for customers." msgstr "" -#: src/templates/-navbar.html.tmpl:43 -msgid "Home" +#: src/templates/-404.html.tmpl:12 +msgid "" +"The page you were looking for does not exist. If you believe this is a " +"mistake then don’t hesitate to contact ‘@onetruemangoman’ on Discord or " +"email us at {Email:e}." msgstr "" -#: src/templates/coins-designs-nl.html.tmpl:8 -msgid "Dutch Euro Coin Designs" +#: src/templates/collecting-vending.html.tmpl:48 +msgid "" +"There are some limits to vending machine hunts which you need to be aware of." msgstr "" -#: src/templates/coins-designs-be.html.tmpl:46 -#: src/templates/coins-designs-be.html.tmpl:51 -msgid "2008 portrait of King Albert II" +#: src/templates/collecting-crh.html.tmpl:8 +#: src/templates/collecting.html.tmpl:29 +msgid "Coin Roll Hunting" +msgstr "Muntenroljacht" + +#: src/templates/coins-designs-ad.html.tmpl:41 +msgid "Rejected Andorran design" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:34 -msgid "Austrian €2 coin" +#: src/templates/banknotes-codes.html.tmpl:42 +msgid "" +"Euro banknotes have two codes on them: a printer code and a serial number. " +"The printer code tells you where a given note was printed, while the serial " +"number tells you which country issued the banknote (for the 2002 series) or " +"where the banknote was printed (for the Europa series)." msgstr "" -#: src/templates/collecting-crh.html.tmpl:374 -msgctxt "Company Name" -msgid "Top Exchange" +#: src/templates/coins-designs-de.html.tmpl:15 +msgid "German €0.10 coin" msgstr "" -#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script -#: src/templates/coins-designs-ee.html.tmpl:128 -msgctxt "Coin Design" -msgid "Tomson 5791" +#: src/templates/collecting-crh.html.tmpl:127 +msgid "" +"Rolls can be obtained with no fee when you order through their online " +"platform." msgstr "" -#. TRANSLATORS: Beginning of sentence, as in ‘United in …’ -#: src/templates/index.html.tmpl:13 -msgid "United in" +#: src/templates/collecting-crh.html.tmpl:278 +#: src/templates/collecting-crh.html.tmpl:286 +msgid "" +"Free coin rolls if you are a customer or €1 per roll if you are not a " +"customer. There are coin roll machines." msgstr "" -#: src/templates/collecting.html.tmpl:56 -msgid "Learn about collecting coins from vending machines" +#: src/templates/coins-designs-be.html.tmpl:30 +msgid "Belgian €1 coin (King Albert; Series 2)" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:22 +#: src/templates/coins-designs-at.html.tmpl:30 msgid "" -"The bronze coins feature the Alpine gentian, edelweiss and primrose " -"respectively, and were chosen to symbolize the role that Austria played in " -"the development of EU environmental policy." +"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." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:357 -#: src/templates/banknotes-codes.html.tmpl:439 -msgctxt "Company Name" -msgid "Federal Printing Office" +#: src/templates/-base.html.tmpl:55 +msgid "Feel free to contact us!" msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:223 +#: src/templates/coins-mintages.html.tmpl:190 +#: src/templates/coins-mintages.html.tmpl:227 +msgctxt "Header/Label" +msgid "Commemorated Topic" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:90 msgctxt "Company Name" -msgid "La Caixa" +msgid "Raiffeisen Bank" msgstr "" -#: src/templates/collecting-crh.html.tmpl:402 +#: src/templates/collecting-crh.html.tmpl:137 msgid "" -"In general coin rolls are sold with for fee of €0.60 per roll, but we’re " -"lacking a lot of information." +"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." msgstr "" -#: src/templates/-404.html.tmpl:12 +#: src/templates/collecting-crh.html.tmpl:247 msgid "" -"The page you were looking for does not exist. If you believe this is a " -"mistake then don’t hesitate to contact ‘@onetruemangoman’ on Discord or " -"email us at {Email:e}." +"The Mint of Finland ceased all operations in late 2024 but still sells coins " +"on their website." msgstr "" -#: src/templates/coins-designs.html.tmpl:29 -msgid "" -"Here you’ll be able to view all the coin designs for each country in the " -"Eurozone. This section of the site doesn’t include minor varieties such as " -"different mintmarks or errors; those are on the {Link:l}varieties{-:E} page." +#: src/templates/collecting-crh.html.tmpl:467 +msgid "Coin rolls are available for a fee of €7 + €0.35 per roll." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:85 +#: src/templates/index.html.tmpl:15 +msgid "cash" +msgstr "" + +#: src/templates/coins-designs-be.html.tmpl:57 msgid "" -"The first letter in the printer code identifies the specific printer at " -"which the banknote was printed. The tables below will tell you which letters " -"correspond to which printers. The final letter and number form a pair (such " -"as ‘A2’ or ‘D6’) — this pair acts as a set of coordinates telling you where " -"on the sheet of paper the banknote was located. During printing, banknotes " -"are printed in a grid on a large sheet of paper which is then cut into " -"individual banknotes. A note with the pair ‘A1’ will have been at the upper-" -"left corner of the printing sheet, with ‘A2’ to its right and ‘B1’ below it." +"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." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:321 -#: src/templates/banknotes-codes.html.tmpl:453 -#: src/templates/collecting-crh.html.tmpl:336 -msgctxt "Company Name" -msgid "Central Bank of Ireland" +#: src/templates/coins-designs-at.html.tmpl:18 +msgid "Austrian €0.02 coin" msgstr "" -#: src/templates/collecting-crh.html.tmpl:205 -msgid "Coin rolls are free but you must be a customer." +#: src/templates/banknotes.html.tmpl:45 +msgid "Test Notes" msgstr "" -#: src/templates/collecting-crh.html.tmpl:490 -msgid "Coin bags are sold with no additional fees to bank customers." +#: src/templates/collecting-storage.html.tmpl:33 +msgid "Coin Capsules" msgstr "" -#: src/templates/-navbar.html.tmpl:46 -msgid "Coins" +#: src/templates/collecting-crh.html.tmpl:11 +msgid "What is ‘Coin Roll Hunting’?" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:39 +msgid "" +"Below you can find country-specific details we have regarding obtaining coin " +"rolls. We lack a lot of information for many of the countries, so if you " +"have any additional information such as your banks fees, the availability of " +"coin roll machines, etc. feel free to contact us! You can find our contact " +"information {Link:l}here{-:E}." msgstr "" #. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:251 +#: src/templates/collecting-crh.html.tmpl:297 msgctxt "Company Name" -msgid "Aktia Bank" +msgid "LCL" msgstr "" -#: src/templates/collecting-crh.html.tmpl:370 -msgid "Coin rolls are available with a fee of 5%." +#: src/templates/coins-designs-ee.html.tmpl:76 +msgid "" +"The winner of the contest was awarded 50,000 KR (€3,196) while the other " +"finalists were each awarded 20,000 KR (€1,278)." msgstr "" -#: src/templates/collecting-crh.html.tmpl:422 -#: src/templates/collecting-crh.html.tmpl:429 -msgid "" -"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." +#. TRANSLATORS: The OeNB prefers ‘Oe’ over ‘Ö’ +#: src/templates/collecting-crh.html.tmpl:59 +msgctxt "Company Name" +msgid "Austrian National Bank" msgstr "" -#: src/templates/coins.html.tmpl:37 -msgid "Mintages" +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:464 +msgctxt "Company Name" +msgid "ING" msgstr "" -#: src/templates/-navbar.html.tmpl:44 -msgid "News" +#: src/templates/collecting-crh.html.tmpl:487 +msgctxt "Company Name" +msgid "Banco Comercial Português" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:72 -msgid "Europa Series Printer Codes" +#: src/dbx/sql/last.sql:151 +msgctxt "CC Name" +msgid "Slovak Republic to the EU" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:85 -#: src/templates/coins-designs-ee.html.tmpl:100 -#: src/templates/coins-designs-ee.html.tmpl:109 -#: src/templates/coins-designs-ee.html.tmpl:117 -#: src/templates/coins-designs-ee.html.tmpl:125 -#: src/templates/coins-designs-ee.html.tmpl:134 -#: src/templates/coins-designs-ee.html.tmpl:143 -#: src/templates/coins-designs-ee.html.tmpl:150 -#: src/templates/coins-designs-ee.html.tmpl:158 -#: src/templates/coins-designs-ee.html.tmpl:166 -#: src/templates/coins-designs-ee.html.tmpl:175 -msgctxt "Header/Label" -msgid "Position" +#: src/dbx/sql/last.sql:152 +msgctxt "CC Name" +msgid "Ľudovít Štúr" msgstr "" -#: src/templates/collecting-crh.html.tmpl:11 -msgid "What is ‘Coin Roll Hunting’?" +#: src/templates/about.html.tmpl:17 +msgid "Contact Us" msgstr "" -#: src/templates/collecting-crh.html.tmpl:13 +#: src/templates/collecting-storage.html.tmpl:48 msgid "" -"Coin roll hunting is a popular method of coin collecting in which you " -"withdraw cash from your bank in the form of coins and then search through " -"those coins to find new additions to your collection. Once you’ve searched " -"through all your coins, you will typically deposit your left over coins at " -"the bank and withdraw new coins." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:157 -msgid "Hand-rolled coin rolls can be obtained with no additional fees." +#: src/templates/-base.html.tmpl:54 +msgid "Found a mistake or want to contribute missing information?" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:329 -#: src/templates/banknotes-codes.html.tmpl:461 -#: src/templates/collecting-crh.html.tmpl:263 +#: src/templates/banknotes-codes.html.tmpl:475 msgctxt "Company Name" -msgid "Bank of France" +msgid "Giesecke+Devrient Leipzig" msgstr "" -#. TRANSLATORS: ‘Estonian’ as in the language, not the nationality -#: src/templates/coins-designs-ee.html.tmpl:137 -msgctxt "Coin Design" -msgid "Estonian" +#: src/templates/coins-designs-ee.html.tmpl:161 +msgid "Jaarno Ester" msgstr "" -#: src/templates/coins-mintages.html.tmpl:110 -#: src/templates/coins-mintages.html.tmpl:148 -msgid "Standard Issue Coins" +#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script +#: src/templates/coins-designs-ee.html.tmpl:169 +msgctxt "Coin Design" +msgid "Nova" msgstr "" -#: src/templates/collecting-crh.html.tmpl:244 +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:251 msgctxt "Company Name" -msgid "Mint of Finland" +msgid "Aktia Bank" msgstr "" -#: src/templates/collecting-crh.html.tmpl:313 -msgid "" -"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." +#: src/templates/collecting-crh.html.tmpl:496 +msgid "In general there is a €1.20 fee for coin rolls." msgstr "" -#: src/templates/collecting-crh.html.tmpl:444 -msgid "" -"1- and 2 cent coins have been removed from circulation and cannot be " -"obtained." +#: src/templates/coins-designs-at.html.tmpl:26 +msgid "Austrian €0.20 coin" msgstr "" -#: src/templates/-404.html.tmpl:8 -msgid "Page Not Found" +#: src/templates/coins-designs-de.html.tmpl:25 +msgctxt "Header/Label" +msgid "City" msgstr "" -#: src/templates/collecting.html.tmpl:48 -msgid "Learn about how to collect coins from shops" +#: src/templates/coins-designs-ee.html.tmpl:145 +msgid "Mai Järmut, Villu Järmut" msgstr "" -#: src/templates/banknotes.html.tmpl:18 -msgid "Euro Banknotes" +#: src/templates/collecting-crh.html.tmpl:30 +msgid "" +"It is also important to find details regarding the deposit of coins. " +"Depositing coins often also requires the payment of a fee – one which is " +"typically more expensive than the withdrawal fees. If depositing your coins " +"is too expensive you can always exchange your left over coins at shops for " +"banknotes. It is often cheaper (or even free) to deposit banknotes." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:50 +#: src/templates/collecting-crh.html.tmpl:309 msgid "" -"The printer code can be a bit tricky to find. The following dropdown menus " -"will show you where to find the printer code on each note." +"{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)." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:57 +#: src/templates/collecting-crh.html.tmpl:525 msgid "" -"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." +"We currently have no information regarding coin roll hunting in San Marino." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:111 -msgctxt "Coin Design" -msgid "Consistency" -msgstr "" +#: src/templates/language.html.tmpl:46 src/templates/language.html.tmpl:85 +msgid "Eurozone Languages" +msgstr "Talen van de eurozone" -#: src/templates/collecting-crh.html.tmpl:218 -msgid "Coin rolls have no fees." +#: src/templates/coins-designs-hr.html.tmpl:14 +msgid "Croatian €0.50 coin" msgstr "" -#: src/templates/collecting-crh.html.tmpl:326 +#: src/templates/coins-designs-ad.html.tmpl:32 msgid "" -"We currently have no information regarding coin roll hunting in Croatia." +"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." msgstr "" -#: src/templates/-navbar.html.tmpl:53 -msgid "Discord" +#: src/templates/jargon.html.tmpl:15 +msgid "Euro Cash Jargon" msgstr "" -#: src/templates/jargon.html.tmpl:31 -msgid "" -"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)." +#: src/templates/banknotes-codes.html.tmpl:98 +#: src/templates/banknotes-codes.html.tmpl:141 +#: src/templates/banknotes-codes.html.tmpl:185 +#: src/templates/banknotes-codes.html.tmpl:265 +#: src/templates/banknotes-codes.html.tmpl:391 +#: src/templates/coins-mintages.html.tmpl:56 +#: src/templates/coins-mintages.html.tmpl:62 +#: src/templates/coins-mintages.html.tmpl:152 +#: src/templates/coins-mintages.html.tmpl:226 +msgctxt "Header/Label" +msgid "Country" +msgstr "" + +#: src/templates/coins-designs-hr.html.tmpl:18 +msgid "Croatian €2 coin" msgstr "" #: src/templates/jargon.html.tmpl:45 @@ -671,363 +712,402 @@ msgid "" "put NIFCs that have gone unsold for multiple years into circulation." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:88 -msgid "2002 Series" +#: src/templates/coins-designs-de.html.tmpl:47 +msgctxt "Place Name" +msgid "Hamburg" +msgstr "Hamburg" + +#: src/templates/coins-mintages.html.tmpl:39 +msgid "" +"Here you’ll be able to view all the known mintages for all coins. You’ll " +"also be able to filter on country, denomination, etc. If you have any " +"mintage data that’s missing from our site, feel free to contact us." msgstr "" -#: src/templates/collecting-crh.html.tmpl:161 -msgctxt "Company Name" -msgid "Sparkasse" +#: src/templates/coins-designs-ad.html.tmpl:53 +msgid "" +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:496 -msgid "In general there is a €1.20 fee for coin rolls." +#: src/templates/collecting-storage.html.tmpl:76 +msgid "Coins in an album" msgstr "" -#: src/templates/banknotes.html.tmpl:45 -msgid "Test Notes" +#: src/templates/collecting-crh.html.tmpl:112 +msgid "" +"There is a €1.50 fee per transaction with no limit on the number of rolls " +"you may take." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:13 -msgid "Andorran €0.50 coin" +#: src/templates/collecting.html.tmpl:48 +msgid "Learn about how to collect coins from shops" msgstr "" -#: src/templates/jargon.html.tmpl:67 -msgid "CRH — Coin Roll Hunting" +#: src/templates/collecting-crh.html.tmpl:147 +msgctxt "Company Name" +msgid "German Federal Bank" msgstr "" -#: src/templates/collecting-crh.html.tmpl:168 +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:283 msgctxt "Company Name" -msgid "Volksbank" +msgid "Crédit Mutuel" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:29 -msgid "" -"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’." +#: src/templates/collecting-vending.html.tmpl:8 +#: src/templates/collecting.html.tmpl:18 +msgid "Euro Coin Collecting" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:33 -msgid "Austrian €1 coin" +#: src/templates/coins-designs-at.html.tmpl:22 +msgid "" +"The bronze coins feature the Alpine gentian, edelweiss and primrose " +"respectively, and were chosen to symbolize the role that Austria played in " +"the development of EU environmental policy." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:336 -#: src/templates/banknotes-codes.html.tmpl:468 -#: src/templates/collecting-crh.html.tmpl:198 -msgctxt "Company Name" -msgid "Royal Mint of Spain" +#: src/templates/collecting-storage.html.tmpl:30 +msgid "" +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:171 -msgid "Coin rolls can be obtained for a fee of €0.25 per roll." +#: src/templates/collecting-storage.html.tmpl:42 +msgid "Coin Flips" msgstr "" -#: src/templates/collecting-crh.html.tmpl:377 -msgid "Fee of €2 per roll of 2 euro coins." +#: src/templates/collecting-storage.html.tmpl:68 +msgid "Capsules in a case" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:20 +#: src/templates/banknotes-codes.html.tmpl:85 msgid "" -"On March of 2013 Andorra held a public design competition for all " -"denominations except for the €2 denomination which the government pre-" -"decided would bear the coat of arms of Andorra. Each set of denominations " -"had a theme that participants had to center their designs around. These " -"themes were:" +"The first letter in the printer code identifies the specific printer at " +"which the banknote was printed. The tables below will tell you which letters " +"correspond to which printers. The final letter and number form a pair (such " +"as ‘A2’ or ‘D6’) – this pair acts as a set of coordinates telling you where " +"on the sheet of paper the banknote was located. During printing, banknotes " +"are printed in a grid on a large sheet of paper which is then cut into " +"individual banknotes. A note with the pair ‘A1’ will have been at the upper-" +"left corner of the printing sheet, with ‘A2’ to its right and ‘B1’ below it." msgstr "" -#: src/templates/collecting-crh.html.tmpl:79 -msgctxt "Company Name" -msgid "Erste Bank" +#: src/templates/about.html.tmpl:8 +msgid "About Us" msgstr "" -#: src/templates/collecting-crh.html.tmpl:512 -msgid "" -"You may be able to get uncirculated rolls, but this is not yet confirmed." +#: src/templates/-navbar.html.tmpl:97 +msgid "Language" msgstr "" -#: src/templates/collecting.html.tmpl:39 -msgid "Learn about the different methods to storing your collection" +#: src/templates/jargon.html.tmpl:67 +msgid "CRH — Coin Roll Hunting" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:411 -msgctxt "Company Name" -msgid "Oberthur Fiduciaire AD" +#: src/templates/collecting-storage.html.tmpl:58 +msgid "" +"In case you’re looking for some inspiration on how to store your " +"collections, here are some examples:" msgstr "" -#. TRANSLATORS: The OeNB prefers ‘Oe’ over ‘Ö’ -#: src/templates/collecting-crh.html.tmpl:59 -msgctxt "Company Name" -msgid "Austrian National Bank" +#: src/templates/coins-designs-ee.html.tmpl:65 +msgid "" +"The Estonian euro coins feature the same design across all eight " +"denominations. The country’s outline is prominently displayed above the " +"country’s name in Estonian (‘{EstonianStart:r}EESTI{EstonianEnd:E}’)." msgstr "" -#: src/templates/collecting-crh.html.tmpl:354 -msgid "" -"There are coin roll machines but it is unknown if you need to be a customer " -"or if there are additional fees." +#: src/templates/coins-designs-be.html.tmpl:26 +msgid "Belgian €1 coin (King Albert; Series 1)" msgstr "" -#: src/templates/collecting-crh.html.tmpl:531 +#: src/templates/coins-designs-be.html.tmpl:60 msgid "" -"Ask the Pope nicely and he’ll probably give you some Vatican coins for free." +"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." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:42 +#: src/templates/banknotes-codes.html.tmpl:50 msgid "" -"Euro banknotes have two codes on them: a printer code and a serial number. " -"The printer code tells you where a given note was printed, while the serial " -"number tells you which country issued the banknote (for the 2002 series) or " -"where the banknote was printed (for the Europa series)." +"The printer code can be a bit tricky to find. The following dropdown menus " +"will show you where to find the printer code on each note." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:269 -#: src/templates/banknotes-codes.html.tmpl:395 -msgctxt "Header/Label" -msgid "Local Names" +#: src/templates/collecting-crh.html.tmpl:354 +msgid "" +"There are coin roll machines but it is unknown if you need to be a customer " +"or if there are additional fees." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:381 -msgid "Europa Series" +#: src/templates/collecting-crh.html.tmpl:402 +msgid "" +"In general coin rolls are sold with for fee of €0.60 per roll, but we’re " +"lacking a lot of information." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:39 -msgctxt "Place Name" -msgid "Stuttgart" -msgstr "Stuttgart" - -#: src/templates/collecting-crh.html.tmpl:516 +#: src/templates/collecting-crh.html.tmpl:448 msgctxt "Company Name" -msgid "Tatra banka" +msgid "The Dutch Central Bank" msgstr "" -#: src/templates/banknotes.html.tmpl:29 src/templates/coins.html.tmpl:29 -msgid "Designs" +#: src/templates/-error.html.tmpl:12 +msgid "" +"If you’re seeing this page, it means that something went wrong on our end " +"that we need to fix. Our team has been notified of this error, and we " +"apologise for the inconvenience." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:25 -msgid "€0.10, €0.20 and €0.50" +#: src/templates/collecting-vending.html.tmpl:28 +msgid "" +"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." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:97 -#: src/templates/banknotes-codes.html.tmpl:140 -#: src/templates/banknotes-codes.html.tmpl:184 -#: src/templates/banknotes-codes.html.tmpl:264 -#: src/templates/banknotes-codes.html.tmpl:390 -msgctxt "Header/Label" -msgid "Code" +#: src/templates/collecting-vending.html.tmpl:73 +msgid "" +"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 " +"€4.90 max change limit." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:257 -msgid "" -"The first letter of the printer code can be used to identify the specific " -"printer at which the banknote was printed. The printer and country codes do " -"not need to line up; a banknote issued by a country will often be printed in " -"another." +#: src/templates/coins-designs-at.html.tmpl:33 +msgid "Austrian €1 coin" msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:297 -msgctxt "Company Name" -msgid "LCL" +#: src/templates/collecting-storage.html.tmpl:26 +msgid "" +"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 on top of each " +"other. Each layer has a grid of slots where you can insert your coins. " +"Typically you are meant to store your coins in a layer encased in a coin " +"capsule." msgstr "" -#: src/templates/collecting-crh.html.tmpl:347 -msgid "Coin rolls are available to everyone." +#: src/templates/coins-mintages.html.tmpl:35 +msgid "Euro Coin Mintages" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:41 -msgid "Rejected Andorran design" +#: src/templates/coins-mintages.html.tmpl:46 +msgid "" +"Most coins from the years 2003–2016 are listed as NIFC coins while other " +"popular sources such as Numista claim they were minted for circulation. For " +"more information on why others are wrong, {Link:l}click here{-:E}." msgstr "" -#: src/templates/collecting-crh.html.tmpl:37 -msgid "Country-Specific Details" +#: src/templates/collecting.html.tmpl:54 +msgid "Vending Machine Hunting" +msgstr "Verkoopautomatenjacht" + +#: src/templates/banknotes-codes.html.tmpl:38 +#: src/templates/banknotes.html.tmpl:37 +msgid "Location Codes" msgstr "" -#: src/templates/collecting-crh.html.tmpl:137 -msgid "" -"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." +#: src/templates/coins-mintages.html.tmpl:43 +msgid "Additional Notes" msgstr "" -#: src/templates/collecting-crh.html.tmpl:317 +#: src/templates/collecting-crh.html.tmpl:154 msgctxt "Company Name" -msgid "Piraeus Bank" +msgid "German Post" msgstr "" -#: src/templates/collecting-crh.html.tmpl:451 -msgid "Obtaining coins from the Dutch Central Bank is not possible." +#: src/templates/collecting-crh.html.tmpl:367 +msgctxt "Company Name" +msgid "ExchangeLT" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:8 -msgid "Croatian Euro Coin Designs" +#: src/templates/collecting-crh.html.tmpl:490 +msgid "Coin bags are sold with no additional fees to bank customers." msgstr "" -#: src/templates/coins-designs-nl.html.tmpl:37 +#: src/templates/collecting-crh.html.tmpl:503 msgid "" -"Coins featuring both monarchs contain text reading ‘{DutchStart:r}BEATRIX " -"KONINGIN DER NEDERLANDEN{DutchEnd:E}’ (English: ‘BEATRIX QUEEN OF THE " -"NETHERLANDS’) and ‘{DutchStart:r}Willem-Alexander Koning der " -"Nederlanden{DutchEnd:E}’ (English: ‘Willem-Alexander King of the " -"Netherlands’) respectively. The €2 coins also feature an edge-inscription " -"reading ‘{DutchStart:r}GOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆{DutchEnd:E}’ (English: ‘GOD ⋆ " -"IS ⋆ WITH ⋆ US ⋆’)." -msgstr "" - -#: src/templates/coins-designs-ad.html.tmpl:56 -msgid "Finally, the €2 coin features the {Link:L}coat of arms of Andorra{-:E}." +"You can purchase commemorative coins for face value, and coin rolls are sold " +"with no fees to everyone." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:47 +#: src/templates/about.html.tmpl:19 msgid "" -"The printer code (not to be confused with the serial number) is a small code " -"printed on banknotes with information about where the banknote was printed. " -"All printer codes have the form ‘X000X0’ — or in other words — a letter " -"followed by 3 numbers, a letter and a final number." +"While we try to stay as up-to-date as possible and to fact check our " +"information, it is always possible that we get something wrong, lack a " +"translation, or are missing some piece of data you may have. Should that be " +"the case, don’t hesitate to contact us; we’ll try to get the site updated or " +"fixed as soon as possible. You are always free to contribute via a git patch " +"if you are more technically inclined, but if not you can always send an " +"email to {Email:e} or contact ‘@onetruemangoman’ on Discord." msgstr "" -#: src/templates/collecting-crh.html.tmpl:17 +#: src/templates/collecting-vending.html.tmpl:53 msgid "" -"This type of coin collecting is often called ‘coin roll hunting’ " -"(abbreviated to ‘CRH’) due to the fact that banks will often provide you " -"with coins in the form of paper-wrapped rolls. You may however find that " -"your coins come in plastic bags instead (common in countries like Ireland)." +"Some machines have a maximum amount you can throw in, and will reject " +"anything higher. For example machines with a maximum limit of €5 will reject " +"any additional coins if you throw in €5. You can try to go above the limit " +"if you throw in €4.80 and then another €1 or €2 coin; the machine might " +"accept it." msgstr "" -#: src/templates/collecting-crh.html.tmpl:500 -msgctxt "Company Name" -msgid "Bank of Slovenia" +#: src/templates/banknotes.html.tmpl:39 +msgid "Find out where your notes were printed" msgstr "" -#: src/templates/coins-designs-de.html.tmpl:8 -msgid "German Euro Coin Designs" +#: src/templates/banknotes-codes.html.tmpl:364 +#: src/templates/banknotes-codes.html.tmpl:496 +#: src/templates/collecting-crh.html.tmpl:99 +msgctxt "Company Name" +msgid "National Bank of Belgium" msgstr "" -#: src/templates/coins-designs-de.html.tmpl:43 -msgctxt "Place Name" -msgid "Karlsruhe" -msgstr "Karlsruhe" - -#: src/templates/collecting-crh.html.tmpl:203 +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:393 msgctxt "Company Name" -msgid "Santander Bank" +msgid "Dexia" msgstr "" -#: src/templates/collecting-crh.html.tmpl:439 +#: src/templates/collecting-crh.html.tmpl:519 msgid "" -"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." +"You can get an unlimited number of rolls for a €5 fee. You must be a " +"customer of the bank." msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:456 -msgctxt "Company Name" -msgid "ABN AMRO" +#: src/templates/-navbar.html.tmpl:56 +msgid "About" msgstr "" -#: src/templates/index.html.tmpl:22 -msgid "" -"Welcome to the Euro Cash Wiki! This sites aims to be a resource for you to " -"discover everything there is to know about the coins and banknotes of the " -"Euro, a currency that spans 26 countries and 350 million people. We also " -"have dedicated sections of the site for collectors." +#: src/templates/collecting-vending.html.tmpl:31 +msgid "(Non-)Merging Machines" msgstr "" -#: src/templates/coins.html.tmpl:31 -msgid "View the 600+ different Euro-coin designs" +#: src/templates/banknotes.html.tmpl:47 +msgid "Learn about the special test notes" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:160 -msgctxt "Coin Design" -msgid "Leopards-2" +#: src/templates/collecting-storage.html.tmpl:80 +msgid "Coins in an album with labels" msgstr "" -#: src/templates/collecting.html.tmpl:54 -msgid "Vending Machine Hunting" -msgstr "Verkoopautomatenjacht" +#: src/templates/banknotes-codes.html.tmpl:55 +msgid "2002 Series Printer Codes" +msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:50 +#: src/templates/banknotes-codes.html.tmpl:90 msgid "" -"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." +"In the 2002 series, the first letter of the serial number can be used to " +"identify the country that issued the banknote. The following table shows " +"which countries map to which codes." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:170 -msgid "Rene Haljasmäe" +#: src/templates/collecting-crh.html.tmpl:451 +msgid "Obtaining coins from the Dutch Central Bank is not possible." msgstr "" -#: src/templates/collecting-crh.html.tmpl:388 +#: src/templates/collecting-vending.html.tmpl:42 msgid "" -"We currently have no information regarding regular coins, however their " -"webshop sells commemorative coins. Commemorative coins are also available " -"for purchase in-person." +"The vending machine does not merge change together. This means if you throw " +"in five 50c coins it will return five 50c coins. This makes it very easy to " +"hunt a large amount of a specific denomination." msgstr "" -#: src/templates/collecting-crh.html.tmpl:408 -msgid "We currently have no information regarding coin roll hunting in Monaco." +#: src/templates/coins-designs-ee.html.tmpl:60 +msgid "Estonian €1 coin" msgstr "" -#: src/templates/collecting-crh.html.tmpl:471 -msgctxt "Company Name" -msgid "Rabobank" +#: src/templates/coins-designs-ee.html.tmpl:90 +#: src/templates/coins-designs-ee.html.tmpl:104 +#: src/templates/coins-designs-ee.html.tmpl:112 +#: src/templates/coins-designs-ee.html.tmpl:120 +#: src/templates/coins-designs-ee.html.tmpl:129 +#: src/templates/coins-designs-ee.html.tmpl:138 +#: src/templates/coins-designs-ee.html.tmpl:145 +#: src/templates/coins-designs-ee.html.tmpl:153 +#: src/templates/coins-designs-ee.html.tmpl:161 +#: src/templates/coins-designs-ee.html.tmpl:170 +#: src/templates/coins-designs-ee.html.tmpl:178 +msgctxt "Header/Label" +msgid "Author(s)" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:45 -msgid "Printer Codes" +#: src/templates/collecting-crh.html.tmpl:171 +msgid "Coin rolls can be obtained for a fee of €0.25 per roll." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:307 -msgctxt "Company Name" -msgid "De La Rue" +#: src/templates/collecting-storage.html.tmpl:8 +#: src/templates/collecting.html.tmpl:37 +msgid "Coin Storage" +msgstr "Muntopslag" + +#: src/templates/coins-designs-at.html.tmpl:19 +msgid "Austrian €0.05 coin" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:350 -msgctxt "Company Name" -msgid "Giesecke+Devrient" +#: src/templates/collecting-storage.html.tmpl:39 +msgid "" +"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." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:177 -msgctxt "Coin Design" -msgid "A Flower in the Rye" +#: src/templates/banknotes-codes.html.tmpl:72 +msgid "Europa Series Printer Codes" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:26 -msgid "Andorra’s Romanesque art" +#: src/templates/banknotes-codes.html.tmpl:516 +msgid "Printer code on a {N} euro bill" +msgid_plural "Printer code on a {N} euro bill" +msgstr[0] "" +msgstr[1] "" + +#: src/templates/coins-designs-de.html.tmpl:14 +msgid "German €0.01 coin" msgstr "" -#: src/templates/index.html.tmpl:15 -msgid "cash" +#: src/templates/coins-designs-de.html.tmpl:35 +msgctxt "Place Name" +msgid "Munich" +msgstr "München" + +#: src/templates/collecting-crh.html.tmpl:13 +msgid "" +"Coin roll hunting is a popular method of coin collecting in which you " +"withdraw cash from your bank in the form of coins and then search through " +"those coins to find new additions to your collection. Once you’ve searched " +"through all your coins, you will typically deposit your left over coins at " +"the bank and withdraw new coins." msgstr "" -#: src/templates/collecting.html.tmpl:18 -msgid "Euro Coin Collecting" +#: src/templates/collecting.html.tmpl:31 +msgid "Learn about collecting coins from coin rolls" msgstr "" -#: src/templates/coins-designs-nl.html.tmpl:41 -msgid "" -"The €1 and €2 coins featuring King Willem-Alexander were minted with a much " -"lower {Link:l}relief{-:E} than most euro coins of the same denomination. As " -"a result it is not uncommon for these coins to appear worn after little use " -"in circulation." +#: src/templates/banknotes-codes.html.tmpl:279 +msgctxt "Company Name" +msgid "SETEC" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:55 -msgid "2002 Series Printer Codes" +#: src/templates/coins-designs-ee.html.tmpl:120 +msgid "Jaan Meristo" +msgstr "" + +#: src/templates/coins-designs-ee.html.tmpl:152 +msgctxt "Coin Design" +msgid "Bird Road" +msgstr "" + +#: src/templates/coins-designs-ee.html.tmpl:178 +msgid "Margus Kadarik" msgstr "" #: src/templates/collecting-crh.html.tmpl:54 @@ -1038,139 +1118,215 @@ msgid "" "without being a customer by simply asking kindly at the bank." msgstr "" -#: src/templates/collecting-crh.html.tmpl:184 +#: src/templates/collecting-crh.html.tmpl:116 +msgctxt "Company Name" +msgid "KBC Bank" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:236 +msgctxt "Company Name" +msgid "Bank of Finland" +msgstr "" + +#: src/templates/coins-designs-hr.html.tmpl:25 msgid "" -"You can purchase commemorative coins — including those released years ago — " -"for face value." +"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)." msgstr "" -#: src/templates/collecting.html.tmpl:22 +#: src/templates/banknotes.html.tmpl:22 msgid "" "On this section of the site you can find everything there is to know about " -"collecting Euro coins. If this is a hobby that interests you, join the " -"Discord server linked at the top of the page!" +"the banknotes of the Eurozone." msgstr "" -#: src/templates/coins-designs-be.html.tmpl:26 -msgid "Belgian €1 coin (King Albert; Series 1)" +#: src/templates/coins-designs-ad.html.tmpl:17 +msgid "Andorran €2 coin" msgstr "" -#: src/templates/jargon.html.tmpl:51 +#: src/templates/banknotes-codes.html.tmpl:286 +#: src/templates/banknotes-codes.html.tmpl:404 +msgctxt "Company Name" +msgid "Oberthur" +msgstr "" + +#: src/templates/coins-mintages.html.tmpl:294 +msgctxt "Header/Label" +msgid "Unknown" +msgstr "" + +#: src/templates/collecting-storage.html.tmpl:84 +msgid "Coins in a reusable roll" +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:381 +msgid "Europa Series" +msgstr "" + +#: src/templates/coins.html.tmpl:39 +msgid "View the mintage figures of all the Euro coins" +msgstr "" + +#: src/templates/coins.html.tmpl:47 +msgid "View all the known Euro varieties" +msgstr "" + +#: src/templates/coins-designs-be.html.tmpl:34 +msgid "Belgian €1 coin (King Philippe)" +msgstr "" + +#: src/templates/coins-designs-ad.html.tmpl:16 +msgid "Andorran €1 coin" +msgstr "" + +#: src/templates/jargon.html.tmpl:42 msgid "" -"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." +"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." msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:275 -msgctxt "Company Name" -msgid "CIC" +#: src/templates/coins-designs-ee.html.tmpl:55 +msgid "Estonian Euro Coin Designs" msgstr "" -#: src/templates/collecting-crh.html.tmpl:278 -#: src/templates/collecting-crh.html.tmpl:286 +#: src/templates/-navbar.html.tmpl:48 +msgid "Jargon" +msgstr "" + +#: src/templates/collecting-vending.html.tmpl:13 msgid "" -"Free coin rolls if you are a customer or €1 per roll if you are not a " -"customer. There are coin roll machines." +"‘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." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:35 +#: src/templates/jargon.html.tmpl:19 msgid "" -"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." +"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." msgstr "" -#: src/templates/jargon.html.tmpl:34 -msgid "BU — Brilliantly Uncirculated" +#: src/templates/coins-designs-ee.html.tmpl:129 +msgid "Taavi Torim" msgstr "" -#: src/templates/jargon.html.tmpl:49 -msgid "PMD — Post-Mint Damage" +#: src/templates/collecting-crh.html.tmpl:17 +msgid "" +"This type of coin collecting is often called ‘coin roll hunting’ " +"(abbreviated to ‘CRH’) due to the fact that banks will often provide you " +"with coins in the form of paper-wrapped rolls. You may however find that " +"your coins come in plastic bags instead (common in countries like Ireland)." msgstr "" -#: src/templates/collecting-crh.html.tmpl:181 +#: src/templates/collecting-crh.html.tmpl:244 msgctxt "Company Name" -msgid "Bank of Estonia Museum" +msgid "Mint of Finland" msgstr "" -#: src/templates/language.html.tmpl:46 src/templates/language.html.tmpl:85 -msgid "Eurozone Languages" -msgstr "Talen van de eurozone" +#: src/templates/collecting-crh.html.tmpl:271 +#: src/templates/collecting-crh.html.tmpl:293 +msgid "Coin rolls can be obtained with no fee. You must be a customer." +msgstr "" -#: src/templates/coins-designs-at.html.tmpl:18 -msgid "Austrian €0.02 coin" +#: src/templates/collecting.html.tmpl:56 +msgid "Learn about collecting coins from vending machines" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:32 +#: src/templates/coins-designs-hr.html.tmpl:13 +msgid "Croatian €0.01 coin" +msgstr "" + +#: src/templates/collecting-storage.html.tmpl:53 msgid "" -"The results of the design contest with a few modifications are what became " -"the coins that entered circulation in 2014. While each set of denominations " -"has its own design, all four designs prominently feature the name of the " -"Principality (‘ANDORRA’) along the outer portion of the design with the year " -"of issue written underneath." +"This is probably the most inexpensive way to store your coins. If you take " +"good care of the paper when opening 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." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:293 -#: src/templates/banknotes-codes.html.tmpl:425 -msgctxt "Company Name" -msgid "Austrian Banknote and Security Printing" +#: src/templates/coins-designs-de.html.tmpl:43 +msgctxt "Place Name" +msgid "Karlsruhe" +msgstr "Karlsruhe" + +#: src/templates/coins-designs-ee.html.tmpl:73 +msgid "" +"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%)." msgstr "" -#: src/templates/collecting-crh.html.tmpl:467 -msgid "Coin rolls are available for a fee of €7 + €0.35 per roll." +#: src/templates/collecting-crh.html.tmpl:157 +msgid "Hand-rolled coin rolls can be obtained with no additional fees." msgstr "" -#: src/templates/about.html.tmpl:11 -msgid "Open Source" +#: src/templates/collecting-vending.html.tmpl:26 +msgid "Rejected Stoppers and Coins" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:25 -msgid "Austrian €0.10 coin" +#: src/templates/coins-designs-ad.html.tmpl:24 +msgid "Andorran landscapes, nature, fauna and flora" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:57 -msgid "All these images are taken from {Link:L}eurobilltracker.com{-:E}." +#: src/templates/coins-designs-ad.html.tmpl:35 +msgid "" +"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." msgstr "" -#. TRANSLATORS: As in ‘5 Euro Banknote’ -#: src/templates/banknotes-codes.html.tmpl:512 -msgid "{N} Euro" -msgid_plural "{N} Euro" -msgstr[0] "" -msgstr[1] "" +#: src/templates/jargon.html.tmpl:65 +msgid "Collector-Specific Terms" +msgstr "" -#: src/templates/coins-mintages.html.tmpl:97 -msgctxt "Header/Label" -msgid "Circulation Coins" +#: src/templates/collecting-crh.html.tmpl:320 +msgid "" +"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)." msgstr "" -#: src/templates/collecting-crh.html.tmpl:414 -msgctxt "Company Name" -msgid "Central Bank of Malta" +#: src/templates/-navbar.html.tmpl:47 +msgid "Banknotes" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:13 -msgid "Croatian €0.01 coin" +#: src/templates/collecting-vending.html.tmpl:16 +msgid "The Test Coins" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:37 +#: src/templates/coins-designs-hr.html.tmpl:29 msgid "" -"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." +"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’." msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:269 -msgctxt "Company Name" -msgid "Caisse d’Épargne" +#: src/templates/coins-designs-be.html.tmpl:39 +msgid "" +"Since 1999 Belgium has released three series of euro coins, with each series " +"having a single design repeated on all denominations. Starting in 1999 the " +"Belgian euro coins featured the portrait of King Albert II with the {Link:L}" +"royal monogram{-:E} in the outer ring of the coins." msgstr "" -#: src/templates/banknotes.html.tmpl:39 -msgid "Find out where your notes were printed" +#: src/templates/banknotes-codes.html.tmpl:45 +msgid "Printer Codes" msgstr "" #: src/templates/banknotes-codes.html.tmpl:314 @@ -1180,103 +1336,159 @@ msgctxt "Company Name" msgid "Bank of Italy" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:104 -msgid "Lembit Lõhmus" +#: src/templates/banknotes-codes.html.tmpl:350 +msgctxt "Company Name" +msgid "Giesecke+Devrient" msgstr "" -#: src/templates/collecting-crh.html.tmpl:127 -msgid "" -"Rolls can be obtained with no fee when you order through their online " -"platform." +#: src/templates/banknotes-codes.html.tmpl:409 +msgctxt "Place Name" +msgid "Bulgaria" +msgstr "Bulgarija" + +#: src/templates/coins.html.tmpl:37 +msgid "Mintages" msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:291 +#: src/templates/-navbar.html.tmpl:46 +msgid "Coins" +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:343 +#: src/templates/banknotes-codes.html.tmpl:489 +#: src/templates/collecting-crh.html.tmpl:306 msgctxt "Company Name" -msgid "Crédit Agricole" +msgid "Bank of Greece" msgstr "" -#: src/templates/coins.html.tmpl:18 -msgid "Euro Coins" +#: src/templates/coins-designs-ee.html.tmpl:85 +#: src/templates/coins-designs-ee.html.tmpl:100 +#: src/templates/coins-designs-ee.html.tmpl:109 +#: src/templates/coins-designs-ee.html.tmpl:117 +#: src/templates/coins-designs-ee.html.tmpl:125 +#: src/templates/coins-designs-ee.html.tmpl:134 +#: src/templates/coins-designs-ee.html.tmpl:143 +#: src/templates/coins-designs-ee.html.tmpl:150 +#: src/templates/coins-designs-ee.html.tmpl:158 +#: src/templates/coins-designs-ee.html.tmpl:166 +#: src/templates/coins-designs-ee.html.tmpl:175 +msgctxt "Header/Label" +msgid "Position" msgstr "" -#: src/templates/-navbar.html.tmpl:45 -msgid "Coin Collecting" +#. TRANSLATORS: ‘Estonian’ as in the language, not the nationality +#: src/templates/coins-designs-ee.html.tmpl:137 +msgctxt "Coin Design" +msgid "Estonian" msgstr "" -#: src/templates/coins-designs-be.html.tmpl:30 -msgid "Belgian €1 coin (King Albert; Series 2)" +#: src/templates/coins-mintages.html.tmpl:99 +msgctxt "Header/Label" +msgid "NIFC and BU Coins" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:28 -msgid "Casa de la Vall" +#: src/templates/collecting-crh.html.tmpl:62 +msgid "" +"The Austrian National Bank does not distribute circulated rolls but sells " +"rolls of commemorative coins at face value on release as well as " +"uncirculated rolls for all denominations." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:482 -msgctxt "Company Name" -msgid "Giesecke+Devrient Munich" +#: src/templates/collecting-crh.html.tmpl:259 +msgid "" +"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." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:90 -#: src/templates/coins-designs-ee.html.tmpl:104 -#: src/templates/coins-designs-ee.html.tmpl:112 -#: src/templates/coins-designs-ee.html.tmpl:120 -#: src/templates/coins-designs-ee.html.tmpl:129 -#: src/templates/coins-designs-ee.html.tmpl:138 -#: src/templates/coins-designs-ee.html.tmpl:145 -#: src/templates/coins-designs-ee.html.tmpl:153 -#: src/templates/coins-designs-ee.html.tmpl:161 -#: src/templates/coins-designs-ee.html.tmpl:170 -#: src/templates/coins-designs-ee.html.tmpl:178 -msgctxt "Header/Label" -msgid "Author(s)" +#: src/templates/about.html.tmpl:13 +msgid "" +"This website is an open project, and a collaboration between developers, " +"translators, and researchers. All source code, data, images, and more for " +"the website are open source and can be found {LinkGit:L}here{-:E}. This site " +"is licensed under the {LinkBSD:L}BSD Zero Clause License{-:E} giving you the " +"full freedom to do whatever you would like with any of the content on this " +"site." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:364 -#: src/templates/banknotes-codes.html.tmpl:496 -#: src/templates/collecting-crh.html.tmpl:99 -msgctxt "Company Name" -msgid "National Bank of Belgium" +#: src/templates/coins.html.tmpl:45 +msgid "Varieties" +msgstr "" + +#: src/templates/collecting-vending.html.tmpl:23 +msgid "" +"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." +msgstr "" + +#: src/templates/jargon.html.tmpl:29 +msgid "AU — Almost Uncirculated" msgstr "" #. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:283 +#: src/templates/collecting-crh.html.tmpl:456 msgctxt "Company Name" -msgid "Crédit Mutuel" +msgid "ABN AMRO" msgstr "" -#: src/templates/collecting-crh.html.tmpl:459 +#: src/templates/index.html.tmpl:22 msgid "" -"Coin rolls are available for a fee of €0.30 per roll. You must withdraw " -"between 10–20 rolls." +"Welcome to the Euro Cash Wiki! This sites aims to be a resource for you to " +"discover everything there is to know about the coins and banknotes of the " +"Euro, a currency that spans 26 countries and 350 million people. We also " +"have dedicated sections of the site for collectors." msgstr "" -#: src/templates/-error.html.tmpl:15 +#: src/templates/coins-designs-at.html.tmpl:25 +msgid "Austrian €0.10 coin" +msgstr "" + +#: src/templates/coins-designs-at.html.tmpl:34 +msgid "Austrian €2 coin" +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:88 +msgid "2002 Series" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:104 msgid "" -"If this issue persists, don’t hesitate to contact ‘@onetruemangoman’ on " -"Discord or to email us at {Email:e}" +"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." msgstr "" -#: src/templates/coins-designs-at.html.tmpl:19 -msgid "Austrian €0.05 coin" +#: src/templates/collecting-crh.html.tmpl:500 +msgctxt "Company Name" +msgid "Bank of Slovenia" msgstr "" -#: src/templates/collecting-crh.html.tmpl:34 +#: src/templates/coins-designs-ad.html.tmpl:45 +msgid "The rejected Andorran design" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:215 msgid "" -"In some countries such as Austria it is even common to be able to withdraw " -"new coins from your account using other coins." +"Coin rolls have a fee of €2 for 5 rolls. This seems to vary by location." msgstr "" -#: src/templates/language.html.tmpl:47 src/templates/language.html.tmpl:90 -msgid "Other Languages" -msgstr "Andere talen" +#: src/templates/collecting-crh.html.tmpl:351 +msgctxt "Company Name" +msgid "Banca di Cambiano" +msgstr "" -#: src/templates/collecting.html.tmpl:31 -msgid "Learn about collecting coins from coin rolls" +#: src/templates/collecting-crh.html.tmpl:474 +msgid "Coin rolls are available for a fee of €7 + €0.50 per roll." msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:18 -msgid "Croatian €2 coin" +#: src/templates/collecting-vending.html.tmpl:61 +msgid "" +"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." msgstr "" #: src/templates/coins-designs-nl.html.tmpl:33 @@ -1289,256 +1501,290 @@ msgid "" "coins of many monarchies around the world." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:23 -msgid "€0.01, €0.02 and €0.05" +#: src/templates/coins-designs-ee.html.tmpl:88 +#: src/templates/coins-designs-ee.html.tmpl:98 +msgctxt "Header/Label" +msgid "Translation" msgstr "" -#: src/templates/collecting-crh.html.tmpl:164 +#: src/templates/collecting-crh.html.tmpl:363 msgid "" -"Coin rolls can be obtained for a fee of €0.50–€1.50 per roll. The amount " -"varies per branch." +"Allegedly, coin rolls are only available for businesses, but this needs " +"additional confirmation." msgstr "" -#: src/templates/collecting-crh.html.tmpl:247 +#: src/templates/collecting-vending.html.tmpl:78 msgid "" -"The Mint of Finland ceased all operations in late 2024 but still sells coins " -"on their website." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:259 +#: src/templates/collecting.html.tmpl:39 +msgid "Learn about the different methods to storing your collection" +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:257 msgid "" -"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." +"The first letter of the printer code can be used to identify the specific " +"printer at which the banknote was printed. The printer and country codes do " +"not need to line up; a banknote issued by a country will often be printed in " +"another." msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:33 +#: src/templates/collecting-crh.html.tmpl:232 msgid "" -"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)." +"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)." msgstr "" -#: src/templates/coins-designs-be.html.tmpl:21 -msgid "Belgian Euro Coin Designs" +#: src/dbx/sql/last.sql:138 src/dbx/sql/last.sql:141 src/dbx/sql/last.sql:144 +#: src/dbx/sql/last.sql:147 src/dbx/sql/last.sql:150 src/dbx/sql/last.sql:153 +#: src/dbx/sql/last.sql:154 src/dbx/sql/last.sql:157 +msgctxt "CC Name" +msgid "EU Flag" msgstr "" -#: src/templates/jargon.html.tmpl:54 -msgid "Relief" +#: src/templates/-404.html.tmpl:8 +msgid "Page Not Found" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:475 +#: src/templates/banknotes-codes.html.tmpl:336 +#: src/templates/banknotes-codes.html.tmpl:468 +#: src/templates/collecting-crh.html.tmpl:198 msgctxt "Company Name" -msgid "Giesecke+Devrient Leipzig" +msgid "Royal Mint of Spain" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:73 -msgid "" -"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%)." +#: src/templates/coins-designs-ee.html.tmpl:104 +msgid "Lembit Lõhmus" msgstr "" -#: src/templates/collecting-crh.html.tmpl:487 +#: src/templates/collecting-crh.html.tmpl:419 msgctxt "Company Name" -msgid "Banco Comercial Português" -msgstr "" - -#: src/templates/jargon.html.tmpl:65 -msgid "Collector-Specific Terms" +msgid "Bank of Valletta" msgstr "" -#: src/templates/coins-mintages.html.tmpl:294 -msgctxt "Header/Label" -msgid "Unknown" +#: src/templates/collecting-crh.html.tmpl:119 +msgid "Rolls can be obtained with no fee by customers only" msgstr "" -#: src/templates/collecting-crh.html.tmpl:363 +#: src/templates/collecting-crh.html.tmpl:326 msgid "" -"Allegedly, coin rolls are only available for businesses, but this needs " -"additional confirmation." +"We currently have no information regarding coin roll hunting in Croatia." msgstr "" -#: src/templates/collecting-crh.html.tmpl:483 -msgid "Coin bags are sold with no additional fees to everyone." +#: src/dbx/sql/last.sql:155 +msgctxt "CC Name" +msgid "Peace and security" msgstr "" -#: src/templates/collecting-crh.html.tmpl:503 +#: src/templates/coins-designs-at.html.tmpl:12 msgid "" -"You can purchase commemorative coins for face value, and coin rolls are sold " -"with no fees to everyone." +"The Austrian euro coins can be grouped into three different themes. The " +"bronze coins feature Austrian flowers, the gold coins feature Austrian " +"architecture and the bimetalic coins feature famous Austrian people. All " +"coins also feature an Austrian flag as well as the coins denomination. These " +"coins together with the {Link:l}Greek euro coins{-:E} are the only coins " +"that feature the denomination on both the common and national sides of the " +"coin." msgstr "" -#: src/templates/index.html.tmpl:9 -msgid "The Euro Cash Wiki" +#: src/templates/coins-designs-ad.html.tmpl:13 +msgid "Andorran €0.50 coin" msgstr "" -#: src/templates/coins.html.tmpl:22 +#: src/templates/jargon.html.tmpl:59 +msgid "UNC — Uncirculated" +msgstr "" + +#: src/templates/collecting-storage.html.tmpl:35 msgid "" -"On this section of the site you can find everything there is to know about " -"the coins of the Eurozone." +"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 reuse, something not typically possible with coin flips." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:45 -msgid "The rejected Andorran design" +#: src/templates/coins-mintages.html.tmpl:101 +msgctxt "Header/Label" +msgid "Proof Coins" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:88 -#: src/templates/coins-designs-ee.html.tmpl:98 +#: src/templates/coins-mintages.html.tmpl:104 msgctxt "Header/Label" -msgid "Translation" +msgid "Filter" msgstr "" -#: src/templates/coins-mintages.html.tmpl:39 +#: src/templates/collecting-crh.html.tmpl:531 msgid "" -"Here you’ll be able to view all the known mintages for all coins. You’ll " -"also be able to filter on country, denomination, etc. If you have any " -"mintage data that’s missing from our site, feel free to contact us." +"Ask the Pope nicely and he’ll probably give you some Vatican coins for free." msgstr "" -#: src/templates/collecting-crh.html.tmpl:24 -msgid "Getting Started" +#: src/templates/collecting-storage.html.tmpl:17 +msgid "" +"Coin albums are one of the most popular ways of storing coins. In a coin " +"album you have multiple coin sheets. These sheets are plastic pages with " +"slots that you can put your coins 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." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:19 -msgid "" -"The German euro coins feature three different designs. A unique feature of " -"German euro coins are the mint marks on each coin that denote in which city " -"a given coin was minted. Germany has five active mints that produce Euro " -"coins, which are denoted in the table below." +#: src/templates/collecting-crh.html.tmpl:203 +msgctxt "Company Name" +msgid "Santander Bank" msgstr "" -#: src/templates/coins-designs-de.html.tmpl:47 -msgctxt "Place Name" -msgid "Hamburg" -msgstr "Hamburg" +#: src/templates/collecting-crh.html.tmpl:377 +msgid "Fee of €2 per roll of 2 euro coins." +msgstr "" -#: src/templates/coins-mintages.html.tmpl:43 -msgid "Additional Notes" +#: src/templates/collecting-crh.html.tmpl:383 +msgctxt "Company Name" +msgid "Central Bank of Luxembourg" msgstr "" -#: src/templates/about.html.tmpl:13 -msgid "" -"This website is an open project, and a collaboration between developers, " -"translators, and researchers. All source code, data, images, and more for " -"the website are open source and can be found {LinkGit:L}here{-:E}. This site " -"is licensed under the {LinkBSD:L}BSD Zero Clause License{-:E} giving you the " -"full freedom to do whatever you would like with any of the content on this " -"site." +#: src/dbx/sql/last.sql:136 src/dbx/sql/last.sql:139 src/dbx/sql/last.sql:142 +#: src/dbx/sql/last.sql:145 src/dbx/sql/last.sql:148 +msgctxt "CC Name" +msgid "Hessen" msgstr "" -#: src/templates/collecting-crh.html.tmpl:215 -msgid "" -"Coin rolls have a fee of €2 for 5 rolls. This seems to vary by location." +#: src/templates/jargon.html.tmpl:54 +msgid "Relief" msgstr "" -#: src/templates/collecting-crh.html.tmpl:309 +#: src/templates/collecting-storage.html.tmpl:12 msgid "" -"{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)." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:8 -#: src/templates/collecting.html.tmpl:29 -msgid "Coin Roll Hunting" -msgstr "Muntenroljacht" +#: src/templates/banknotes-codes.html.tmpl:267 +#: src/templates/banknotes-codes.html.tmpl:393 +msgctxt "Header/Label" +msgid "Printer" +msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:55 -msgid "Estonian Euro Coin Designs" +#: src/templates/coins-mintages.html.tmpl:191 +#: src/templates/coins-mintages.html.tmpl:228 +msgctxt "Header/Label" +msgid "Mintage" msgstr "" -#: src/templates/coins-mintages.html.tmpl:46 +#: src/templates/collecting-crh.html.tmpl:143 msgid "" -"Most coins from the years 2003–2016 are listed as NIFC coins while other " -"popular sources such as Numista claim they were minted for circulation. For " -"more information on why others are wrong, {Link:l}click here{-:E}." +"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." msgstr "" -#: src/templates/coins-mintages.html.tmpl:54 -msgctxt "Header/Label" -msgid "Filter Method" +#: src/templates/collecting-crh.html.tmpl:226 +msgid "" +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:66 +#: src/templates/collecting-crh.html.tmpl:240 +msgid "" +"It is probably not possible to obtain coin rolls, but this is not confirmed." +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:321 +#: src/templates/banknotes-codes.html.tmpl:453 +#: src/templates/collecting-crh.html.tmpl:336 msgctxt "Company Name" -msgid "Bank Austria" +msgid "Central Bank of Ireland" msgstr "" -#: src/templates/collecting-crh.html.tmpl:217 -msgid "Madrid" +#: src/templates/coins-designs-de.html.tmpl:19 +msgid "" +"The German euro coins feature three different designs. A unique feature of " +"German euro coins are the mint marks on each coin that denote in which city " +"a given coin was minted. Germany has five active mints that produce Euro " +"coins, which are denoted in the table below." msgstr "" -#: src/templates/collecting-crh.html.tmpl:226 +#: src/templates/coins-designs-ee.html.tmpl:112 +#: src/templates/coins-designs-ee.html.tmpl:153 +msgid "Tiit Jürna" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:82 msgid "" -"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." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:367 +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:109 msgctxt "Company Name" -msgid "ExchangeLT" +msgid "Argenta" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:8 -msgid "Austrian Euro Coin Designs" +#: src/templates/collecting-crh.html.tmpl:317 +msgctxt "Company Name" +msgid "Piraeus Bank" msgstr "" -#: src/templates/coins-designs-de.html.tmpl:15 -msgid "German €0.10 coin" +#: src/templates/coins-designs-ad.html.tmpl:50 +msgid "" +"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." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:35 +#: src/templates/jargon.html.tmpl:27 +msgid "General Terms" +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:305 msgctxt "Place Name" -msgid "Munich" -msgstr "München" +msgid "United Kingdom" +msgstr "Verenigd Koninkrijk" -#: src/templates/collecting-crh.html.tmpl:30 -msgid "" -"It is also important to find details regarding the deposit of coins. " -"Depositing coins often also requires the payment of a fee — one which is " -"typically more expensive than the withdrawal fees. If depositing your coins " -"is too expensive you can always exchange your left over coins at shops for " -"banknotes. It is often cheaper (or even free) to deposit banknotes." +#: src/templates/coins-designs-de.html.tmpl:26 +msgctxt "Header/Label" +msgid "Mintmark" msgstr "" -#. TRANSLATORS: On the German page the filter is called ‘Münzrollengeber’. For other languages we link to the English site, so mention the English filter name surrounded by ‘{EnglishStart:r}’ and ‘{EnglishEnd:E}’, and also translate it in parenthesis to your language. For example the Swedish page might say: ‘”{EnglishStart:r}coin roll dispenser{EnglishEnd:E}” (svenska: ”myntrullsautomat”)’ -#: src/templates/collecting-crh.html.tmpl:73 -msgid "" -"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}." +#: src/templates/coins-designs-ee.html.tmpl:185 +msgctxt "Header/Label" +msgid "Total" msgstr "" -#: src/templates/collecting-crh.html.tmpl:232 -msgid "" -"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)." +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:124 +msgctxt "Company Name" +msgid "Belfius" msgstr "" -#: src/templates/collecting-crh.html.tmpl:240 -msgid "" -"It is probably not possible to obtain coin rolls, but this is not confirmed." +#: src/templates/collecting-crh.html.tmpl:133 +msgctxt "Company Name" +msgid "Bank of Cyprus" msgstr "" -#: src/templates/collecting-crh.html.tmpl:271 -#: src/templates/collecting-crh.html.tmpl:293 -msgid "Coin rolls can be obtained with no fee. You must be a customer." +#: src/templates/collecting-crh.html.tmpl:161 +msgctxt "Company Name" +msgid "Sparkasse" msgstr "" -#: src/templates/-error.html.tmpl:12 -msgid "" -"If you’re seeing this page, it means that something went wrong on our end " -"that we need to fix. Our team has been notified of this error, and we " -"apologise for the inconvenience." +#: src/templates/collecting-vending.html.tmpl:33 +msgid "We generally identify between two main types of vending machines." msgstr "" -#: src/templates/jargon.html.tmpl:19 -msgid "" -"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." +#: src/templates/coins-designs-ad.html.tmpl:8 +msgid "Andorran Euro Coin Designs" msgstr "" #: src/templates/jargon.html.tmpl:36 @@ -1549,162 +1795,127 @@ msgid "" "coins minted for general circulation, resulting in a higher-quality coin." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:26 -msgctxt "Header/Label" -msgid "Mintmark" +#: src/templates/coins-designs-de.html.tmpl:57 +msgid "" +"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." msgstr "" -#: src/templates/coins-mintages.html.tmpl:35 -msgid "Euro Coin Mintages" +#: src/templates/coins-designs-ee.html.tmpl:69 +msgid "" +"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." msgstr "" -#: src/templates/coins-mintages.html.tmpl:99 -msgctxt "Header/Label" -msgid "NIFC and BU Coins" +#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script +#: src/templates/coins-designs-ee.html.tmpl:128 +msgctxt "Coin Design" +msgid "Tomson 5791" msgstr "" -#: src/templates/coins-mintages.html.tmpl:190 -#: src/templates/coins-mintages.html.tmpl:227 -msgctxt "Header/Label" -msgid "Commemorated Topic" +#: src/templates/collecting-crh.html.tmpl:218 +msgid "Coin rolls have no fees." msgstr "" #. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:109 +#: src/templates/collecting-crh.html.tmpl:223 msgctxt "Company Name" -msgid "Argenta" +msgid "La Caixa" msgstr "" -#: src/templates/collecting.html.tmpl:37 -msgid "Coin Storage" -msgstr "Muntopslag" - -#: src/templates/jargon.html.tmpl:61 +#: src/templates/collecting-vending.html.tmpl:58 msgid "" -"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." +"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." msgstr "" -#: src/templates/coins-designs.html.tmpl:25 -msgid "Euro Coin Designs" -msgstr "Euromuntontwerpen" - -#: src/templates/coins-designs-de.html.tmpl:65 +#: src/templates/coins-designs-hr.html.tmpl:21 msgid "" -"The €2 coin also features an edge-inscription of Germany’s national motto " -"and incipit of Germany’s national anthem. It reads ‘{GermanStart:r}EINIGKEIT " -"UND RECHT UND FREIHEIT{GermanEnd:E}’ (English: ‘UNITY AND JUSTICE AND " -"FREEDOM’)." +"The Croatian euro coins feature four different themes, with each design " +"featuring the Croatian checkerboard and the country’s name in Croatian " +"(‘{CroatianStart:r}HRVATSKA{CroatianEnd:E}’). All designs were selected " +"after voting in a public design competition." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:87 -#: src/templates/coins-designs-ee.html.tmpl:97 -#: src/templates/coins-designs-ee.html.tmpl:144 -msgctxt "Header/Label" -msgid "Name" +#: src/templates/coins-designs-ad.html.tmpl:26 +msgid "Andorra’s Romanesque art" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:112 -#: src/templates/coins-designs-ee.html.tmpl:153 -msgid "Tiit Jürna" +#: src/templates/collecting-crh.html.tmpl:37 +msgid "Country-Specific Details" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:120 -msgid "Jaan Meristo" +#: src/templates/collecting-crh.html.tmpl:313 +msgid "" +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:21 +#: src/templates/collecting-crh.html.tmpl:332 msgid "" -"Depending on your bank and branch, the process of obtaining coins may " -"differ. Some banks require you speak to a teller while others have coin " -"machines. Some banks may also require that you are a customer or even that " -"you have a business account. If you aren’t sure about if you can get coins " -"we suggest you contact your bank, although further down this page we also " -"have additional information about the withdrawal of coins in various " -"countries and major banks." +"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." msgstr "" -#: src/templates/jargon.html.tmpl:42 -msgid "" -"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." +#: src/templates/collecting-crh.html.tmpl:370 +msgid "Coin rolls are available with a fee of 5%." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:279 +#: src/templates/collecting-crh.html.tmpl:374 msgctxt "Company Name" -msgid "SETEC" +msgid "Top Exchange" msgstr "" -#: src/templates/coins-designs-de.html.tmpl:31 -msgctxt "Place Name" -msgid "Berlin" -msgstr "Berlijn" - -#: src/templates/collecting-crh.html.tmpl:112 -msgid "" -"There is a €1.50 fee per transaction with no limit on the number of rolls " -"you may take." +#. TRANSLATORS: Beginning of sentence, as in ‘United in …’ +#: src/templates/index.html.tmpl:13 +msgid "United in" msgstr "" -#: src/templates/collecting-crh.html.tmpl:143 -msgid "" -"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." +#: src/templates/collecting-vending.html.tmpl:40 +msgid "Non-Merging" msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:464 -msgctxt "Company Name" -msgid "ING" +#: src/templates/coins-designs-ee.html.tmpl:87 +#: src/templates/coins-designs-ee.html.tmpl:97 +#: src/templates/coins-designs-ee.html.tmpl:144 +msgctxt "Header/Label" +msgid "Name" msgstr "" -#: src/templates/collecting-crh.html.tmpl:474 -msgid "Coin rolls are available for a fee of €7 + €0.50 per roll." +#: src/templates/coins-mintages.html.tmpl:110 +#: src/templates/coins-mintages.html.tmpl:148 +msgid "Standard Issue Coins" msgstr "" -#: src/templates/coins-designs-be.html.tmpl:57 +#: src/templates/collecting-crh.html.tmpl:164 msgid "" -"In 2008 a second series of coins was released featuring a slightly modified " -"design in which the royal monogram was moved to the inner portion of the " -"coin along with the year of mintage in order to comply with the European " -"Commission’s guidelines. The country code ‘BE’ was also added to the design " -"underneath the royal monogram. The 2008 redesign also saw the use of a " -"slightly modified portrait of the King, but this design change was reverted " -"in 2009." +"Coin rolls can be obtained for a fee of €0.50–€1.50 per roll. The amount " +"varies per branch." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:516 -msgid "Printer code on a {N} euro bill" -msgid_plural "Printer code on a {N} euro bill" -msgstr[0] "" -msgstr[1] "" +#: src/templates/collecting-crh.html.tmpl:205 +msgid "Coin rolls are free but you must be a customer." +msgstr "" -#: src/templates/coins-designs-de.html.tmpl:60 -msgid "" -"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." +#: src/templates/collecting-crh.html.tmpl:360 +msgctxt "Company Name" +msgid "Bank of Lithuania" msgstr "" -#: src/templates/collecting-crh.html.tmpl:39 -msgid "" -"Below you can find country-specific details we have regarding obtaining coin " -"rolls. We lack a lot of information for many of the countries, so if you " -"have any additional information such as your banks fees, the availability of " -"coin roll machines, etc. feel free to contact us! You can find our contact " -"information {Link:l}here{-:E}." +#: src/templates/collecting-crh.html.tmpl:396 +msgid "You should be able to get coin rolls with no additional fees." msgstr "" -#: src/templates/collecting-crh.html.tmpl:154 -msgctxt "Company Name" -msgid "German Post" +#: src/templates/-navbar.html.tmpl:44 +msgid "News" +msgstr "" + +#: src/templates/coins-designs-nl.html.tmpl:8 +msgid "Dutch Euro Coin Designs" msgstr "" #: src/templates/collecting-crh.html.tmpl:193 @@ -1714,300 +1925,356 @@ msgid "" "do it." msgstr "" -#: src/templates/collecting-crh.html.tmpl:426 -msgctxt "Company Name" -msgid "HSBC Bank Malta" +#: src/templates/collecting-crh.html.tmpl:422 +#: src/templates/collecting-crh.html.tmpl:429 +msgid "" +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:448 +#: src/templates/collecting-crh.html.tmpl:516 msgctxt "Company Name" -msgid "The Dutch Central Bank" +msgid "Tatra banka" msgstr "" -#: src/templates/-navbar.html.tmpl:56 -msgid "About" +#: src/dbx/sql/last.sql:156 +msgctxt "CC Name" +msgid "Fête de la Fédération" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:17 -msgid "Croatian €1 coin" +#: src/templates/-navbar.html.tmpl:45 +msgid "Coin Collecting" msgstr "" -#: src/templates/banknotes.html.tmpl:31 -msgid "View the different Euro banknote designs" +#: src/templates/collecting-vending.html.tmpl:36 +msgid "Merging" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:152 -msgctxt "Coin Design" -msgid "Bird Road" +#: src/templates/collecting-vending.html.tmpl:46 +msgid "Limits" msgstr "" -#: src/templates/language.html.tmpl:45 src/templates/language.html.tmpl:79 -msgid "Select Your Language" -msgstr "Kies uw taal" +#: src/templates/collecting-vending.html.tmpl:64 +msgid "" +"For information on Austrian cigarette machines, see the ‘{LinkStart:r}" +"Cigarette Machines{LinkEnd:E}’ section." +msgstr "" -#: src/templates/coins.html.tmpl:47 -msgid "View all the known Euro varieties" +#: src/templates/coins-designs-at.html.tmpl:8 +msgid "Austrian Euro Coin Designs" msgstr "" -#: src/templates/jargon.html.tmpl:39 -msgid "NIFC — Not Intended For Circulation" +#: src/templates/banknotes-codes.html.tmpl:357 +#: src/templates/banknotes-codes.html.tmpl:439 +msgctxt "Company Name" +msgid "Federal Printing Office" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:90 -msgid "" -"In the 2002 series, the first letter of the serial number can be used to " -"identify the country that issued the banknote. The following table shows " -"which countries map to which codes." +#: src/templates/collecting-crh.html.tmpl:181 +msgctxt "Company Name" +msgid "Bank of Estonia Museum" msgstr "" -#: src/templates/coins-mintages.html.tmpl:104 -msgctxt "Header/Label" -msgid "Filter" +#: src/templates/collecting-crh.html.tmpl:414 +msgctxt "Company Name" +msgid "Central Bank of Malta" msgstr "" -#: src/templates/collecting-crh.html.tmpl:93 +#: src/templates/collecting-vending.html.tmpl:71 +msgid "Cigarette Machines" +msgstr "" + +#: src/templates/jargon.html.tmpl:39 +msgid "NIFC — Not Intended For Circulation" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:21 msgid "" -"There is a fee of €1 per roll if you aren’t a customer and €0.30 otherwise. " -"Coin deposits are free for customers." +"Depending on your bank and branch, the process of obtaining coins may " +"differ. Some banks require you speak to a teller while others have coin " +"machines. Some banks may also require that you are a customer or even that " +"you have a business account. If you aren’t sure about if you can get coins " +"we suggest you contact your bank, although further down this page we also " +"have additional information about the withdrawal of coins in various " +"countries and major banks." msgstr "" -#: src/templates/collecting-crh.html.tmpl:519 +#: src/templates/collecting-crh.html.tmpl:509 +msgctxt "Company Name" +msgid "National Bank of Slovakia" +msgstr "" + +#: src/templates/collecting-storage.html.tmpl:44 msgid "" -"You can get an unlimited number of rolls for a €5 fee. You must be a " -"customer of the bank." +"Coin flips, also known as ‘2×2’ 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." msgstr "" -#: src/templates/-navbar.html.tmpl:97 -msgid "Language" +#: src/templates/banknotes-codes.html.tmpl:57 +msgid "All these images are taken from {Link:L}eurobilltracker.com{-:E}." msgstr "" -#: src/templates/coins-designs-be.html.tmpl:39 +#: src/templates/banknotes-codes.html.tmpl:383 msgid "" -"Since 1999 Belgium has released three series of euro coins, with each series " -"having a single design repeated on all denominations. Starting in 1999 the " -"Belgian euro coins featured the portrait of King Albert II with the {Link:L}" -"royal monogram{-:E} in the outer ring of the coins." +"In the Europa series the first letter of the serial number can be used to " +"identify the printer that printed the banknote, just like the printer code. " +"The following table shows which countries map to which codes." msgstr "" -#: src/templates/jargon.html.tmpl:15 -msgid "Euro Cash Jargon" +#: src/templates/coins-designs-ee.html.tmpl:160 +msgctxt "Coin Design" +msgid "Leopards-2" msgstr "" -#: src/templates/-base.html.tmpl:55 -msgid "Feel free to contact us!" +#: src/templates/coins-mintages.html.tmpl:97 +msgctxt "Header/Label" +msgid "Circulation Coins" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:343 -#: src/templates/banknotes-codes.html.tmpl:489 -#: src/templates/collecting-crh.html.tmpl:306 -msgctxt "Company Name" -msgid "Bank of Greece" +#: src/templates/collecting-crh.html.tmpl:459 +msgid "" +"Coin rolls are available for a fee of €0.30 per roll. You must withdraw " +"between 10–20 rolls." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:178 -msgid "Margus Kadarik" +#: src/templates/coins-designs-be.html.tmpl:21 +msgid "Belgian Euro Coin Designs" msgstr "" -#: src/templates/coins-mintages.html.tmpl:101 +#: src/templates/coins-designs-ee.html.tmpl:91 +#: src/templates/coins-designs-ee.html.tmpl:105 +#: src/templates/coins-designs-ee.html.tmpl:113 +#: src/templates/coins-designs-ee.html.tmpl:121 +#: src/templates/coins-designs-ee.html.tmpl:130 +#: src/templates/coins-designs-ee.html.tmpl:139 +#: src/templates/coins-designs-ee.html.tmpl:146 +#: src/templates/coins-designs-ee.html.tmpl:154 +#: src/templates/coins-designs-ee.html.tmpl:162 +#: src/templates/coins-designs-ee.html.tmpl:171 +#: src/templates/coins-designs-ee.html.tmpl:179 msgctxt "Header/Label" -msgid "Proof Coins" +msgid "Votes" msgstr "" -#: src/templates/collecting-crh.html.tmpl:320 -msgid "" -"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)." +#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script +#: src/templates/coins-designs-ee.html.tmpl:103 +msgctxt "Coin Design" +msgid "Hara 2" msgstr "" -#: src/templates/index.html.tmpl:14 -msgid "diversity" +#: src/templates/collecting-vending.html.tmpl:55 +msgid "Maximum Change Limit" msgstr "" -#: src/templates/coins-designs-be.html.tmpl:34 -msgid "Belgian €1 coin (King Philippe)" +#: src/templates/coins-designs-ad.html.tmpl:23 +msgid "€0.01, €0.02 and €0.05" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:16 -msgid "Andorran €1 coin" +#: src/templates/jargon.html.tmpl:31 +msgid "" +"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)." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:69 -msgid "" -"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." +#: src/templates/collecting-storage.html.tmpl:56 +msgid "Examples" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:119 -msgctxt "Coin Design" -msgid "In the Body" +#: src/templates/banknotes-codes.html.tmpl:307 +msgctxt "Company Name" +msgid "De La Rue" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:161 -msgid "Jaarno Ester" +#: src/templates/coins-designs-de.html.tmpl:54 +msgid "" +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:419 -msgctxt "Company Name" -msgid "Bank of Valletta" +#: src/templates/coins-designs-de.html.tmpl:60 +msgid "" +"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." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:24 -msgid "Andorran landscapes, nature, fauna and flora" +#: src/templates/collecting-crh.html.tmpl:34 +msgid "" +"In some countries such as Austria it is even common to be able to withdraw " +"new coins from your account using other coins." msgstr "" -#: src/templates/coins-designs-at.html.tmpl:17 -msgid "Austrian €0.01 coin" +#: src/templates/collecting-vending.html.tmpl:51 +msgid "Maximum Input Limit" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:17 -msgid "Andorran €2 coin" +#: src/templates/index.html.tmpl:9 +msgid "The Euro Cash Wiki" msgstr "" -#: src/templates/-base.html.tmpl:11 -msgid "Euro Cash Wiki" +#: src/templates/-navbar.html.tmpl:53 +msgid "Discord" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:98 -#: src/templates/banknotes-codes.html.tmpl:141 -#: src/templates/banknotes-codes.html.tmpl:185 -#: src/templates/banknotes-codes.html.tmpl:265 -#: src/templates/banknotes-codes.html.tmpl:391 -#: src/templates/coins-mintages.html.tmpl:56 -#: src/templates/coins-mintages.html.tmpl:62 -#: src/templates/coins-mintages.html.tmpl:152 -#: src/templates/coins-mintages.html.tmpl:226 -msgctxt "Header/Label" -msgid "Country" +#: src/templates/jargon.html.tmpl:34 +msgid "BU — Brilliantly Uncirculated" msgstr "" -#: src/templates/collecting-crh.html.tmpl:190 +#: src/templates/banknotes-codes.html.tmpl:482 msgctxt "Company Name" -msgid "Bank of Spain" +msgid "Giesecke+Devrient Munich" msgstr "" -#: src/templates/about.html.tmpl:8 -msgid "About Us" +#: src/templates/coins-designs-de.html.tmpl:16 +msgid "German €1 coin" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:286 -#: src/templates/banknotes-codes.html.tmpl:404 +#: src/templates/collecting-crh.html.tmpl:79 msgctxt "Company Name" -msgid "Oberthur" +msgid "Erste Bank" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:383 -msgid "" -"In the Europa series the first letter of the serial number can be used to " -"identify the printer that printed the banknote, just like the printer code. " -"The following table shows which countries map to which codes." +#: src/templates/collecting-crh.html.tmpl:190 +msgctxt "Company Name" +msgid "Bank of Spain" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:65 +#: src/templates/collecting-vending.html.tmpl:18 msgid "" -"The Estonian euro coins feature the same design across all eight " -"denominations. The country’s outline is prominently displayed above the " -"country’s name in Estonian (‘{EstonianStart:r}EESTI{EstonianEnd:E}’)." +"First, you want to make sure the vending machine you come across actually " +"gives back change – sometimes they don’t! Throw in a 10c 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 coin and press the return button. You should do " +"this because vending machines may not return €2 coins, but rather €1 or 50c " +"coins instead. It’s better to find out immediately as opposed to later once " +"you’ve already put in all of your €2 coins." msgstr "" -#: src/templates/collecting-crh.html.tmpl:509 -msgctxt "Company Name" -msgid "National Bank of Slovakia" +#: src/templates/banknotes.html.tmpl:18 +msgid "Euro Banknotes" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:305 -msgctxt "Place Name" -msgid "United Kingdom" -msgstr "Verenigd Koninkrijk" +#: src/templates/coins-designs-ad.html.tmpl:56 +msgid "Finally, the €2 coin features the {Link:L}coat of arms of Andorra{-:E}." +msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:129 -msgid "Taavi Torim" +#: src/templates/banknotes-codes.html.tmpl:269 +#: src/templates/banknotes-codes.html.tmpl:395 +msgctxt "Header/Label" +msgid "Local Names" msgstr "" -#: src/templates/collecting-crh.html.tmpl:332 +#: src/templates/collecting-crh.html.tmpl:254 msgid "" -"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." +"Coin rolls used to be obtainable without fees, however you can no longer " +"obtain rolls." msgstr "" -#: src/templates/collecting-crh.html.tmpl:525 +#: src/templates/collecting-crh.html.tmpl:300 msgid "" -"We currently have no information regarding coin roll hunting in San Marino." +"There are coin roll machines but it is not yet known if you need to be a " +"customer or if there are fees." msgstr "" -#: src/templates/coins.html.tmpl:45 -msgid "Varieties" +#: src/templates/collecting-crh.html.tmpl:408 +msgid "We currently have no information regarding coin roll hunting in Monaco." msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:25 -msgid "" -"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)." +#: src/templates/collecting-crh.html.tmpl:471 +msgctxt "Company Name" +msgid "Rabobank" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:26 -msgid "Austrian €0.20 coin" +#: src/templates/coins-designs-at.html.tmpl:37 +msgid "" +"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." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:145 -msgid "Mai Järmut, Villu Järmut" +#: src/templates/-base.html.tmpl:11 +msgid "Euro Cash Wiki" msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:209 +#: src/templates/banknotes-codes.html.tmpl:293 +#: src/templates/banknotes-codes.html.tmpl:425 msgctxt "Company Name" -msgid "BBVA" +msgid "Austrian Banknote and Security Printing" msgstr "" -#. TRANSLATORS: City in Spain -#: src/templates/collecting-crh.html.tmpl:213 -msgid "Alicante" +#: src/templates/coins-designs-de.html.tmpl:8 +msgid "German Euro Coin Designs" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:21 -msgid "" -"The Croatian euro coins feature four different themes, with each design " -"featuring the Croatian checkerboard and the country’s name in Croatian " -"(‘{CroatianStart:r}HRVATSKA{CroatianEnd:E}’). All designs were selected " -"after voting in a public design competition." +#: src/templates/coins-designs-ee.html.tmpl:92 +#: src/templates/coins-designs-ee.html.tmpl:106 +#: src/templates/coins-designs-ee.html.tmpl:114 +#: src/templates/coins-designs-ee.html.tmpl:122 +#: src/templates/coins-designs-ee.html.tmpl:131 +#: src/templates/coins-designs-ee.html.tmpl:140 +#: src/templates/coins-designs-ee.html.tmpl:147 +#: src/templates/coins-designs-ee.html.tmpl:155 +#: src/templates/coins-designs-ee.html.tmpl:163 +#: src/templates/coins-designs-ee.html.tmpl:172 +#: src/templates/coins-designs-ee.html.tmpl:180 +msgctxt "Header/Label" +msgid "Votes (%)" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:300 -#: src/templates/banknotes-codes.html.tmpl:432 +#: src/templates/coins-designs-ee.html.tmpl:111 +msgctxt "Coin Design" +msgid "Consistency" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:24 +msgid "Getting Started" +msgstr "" + +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:275 msgctxt "Company Name" -msgid "Royal Joh. Enschedé" +msgid "CIC" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:76 +#: src/templates/coins-designs-nl.html.tmpl:41 msgid "" -"The winner of the contest was awarded 50,000 KR (€3,196) while the other " -"finalists were each awarded 20,000 KR (€1,278)." +"The €1 and €2 coins featuring King Willem-Alexander were minted with a much " +"lower {Link:l}relief{-:E} than most euro coins of the same denomination. As " +"a result it is not uncommon for these coins to appear worn after little use " +"in circulation." msgstr "" -#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script -#: src/templates/coins-designs-ee.html.tmpl:103 -msgctxt "Coin Design" -msgid "Hara 2" +#: src/templates/coins-designs-ad.html.tmpl:12 +msgid "Andorran €0.01 coin" msgstr "" -#: src/templates/collecting-crh.html.tmpl:43 -msgid "" -"Be aware of the fact that the information below may be outdated or " -"inaccurate. Many of the details are self-reported." +#: src/templates/collecting-storage.html.tmpl:15 +msgid "Coin Albums" msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:124 -msgctxt "Company Name" -msgid "Belfius" +#: src/templates/collecting-storage.html.tmpl:24 +msgid "Coin Boxes" msgstr "" -#: src/templates/collecting-crh.html.tmpl:147 -msgctxt "Company Name" -msgid "German Federal Bank" +#: src/templates/coins-mintages.html.tmpl:58 +#: src/templates/coins-mintages.html.tmpl:79 +#: src/templates/coins-mintages.html.tmpl:114 +#: src/templates/coins-mintages.html.tmpl:189 +msgctxt "Header/Label" +msgid "Year" msgstr "" #: src/templates/collecting-crh.html.tmpl:177 @@ -2016,90 +2283,91 @@ msgid "" "expensive. You also generally need to make an appointment in advance." msgstr "" -#: src/templates/about.html.tmpl:17 -msgid "Contact Us" +#. TRANSLATORS: City in Spain +#: src/templates/collecting-crh.html.tmpl:213 +msgid "Alicante" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:27 -msgid "Austrian €0.50 coin" +#: src/templates/collecting-crh.html.tmpl:347 +msgid "Coin rolls are available to everyone." msgstr "" -#: src/templates/banknotes.html.tmpl:47 -msgid "Learn about the special test notes" +#: src/templates/-error.html.tmpl:15 +msgid "" +"If this issue persists, don’t hesitate to contact ‘@onetruemangoman’ on " +"Discord or to email us at {Email:e}" msgstr "" -#: src/templates/coins-designs-de.html.tmpl:16 -msgid "German €1 coin" +#: src/templates/-navbar.html.tmpl:43 +msgid "Home" msgstr "" -#: src/templates/collecting-crh.html.tmpl:300 +#: src/templates/collecting-vending.html.tmpl:21 +msgid "The Stopper" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:150 msgid "" -"There are coin roll machines but it is not yet known if you need to be a " -"customer or if there are fees." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:360 +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:209 msgctxt "Company Name" -msgid "Bank of Lithuania" +msgid "BBVA" msgstr "" #. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:393 +#: src/templates/collecting-crh.html.tmpl:269 msgctxt "Company Name" -msgid "Dexia" +msgid "Caisse d’Épargne" msgstr "" -#: src/templates/coins-designs-be.html.tmpl:60 -msgid "" -"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." +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:291 +msgctxt "Company Name" +msgid "Crédit Agricole" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:38 -#: src/templates/banknotes.html.tmpl:37 -msgid "Location Codes" -msgstr "" +#: src/templates/language.html.tmpl:47 src/templates/language.html.tmpl:90 +msgid "Other Languages" +msgstr "Andere talen" -#: src/templates/jargon.html.tmpl:59 -msgid "UNC — Uncirculated" +#: src/templates/banknotes-codes.html.tmpl:47 +msgid "" +"The printer code (not to be confused with the serial number) is a small code " +"printed on banknotes with information about where the banknote was printed. " +"All printer codes have the form ‘X000X0’ – or in other words – a letter " +"followed by 3 numbers, a letter and a final number." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:14 -msgid "German €0.01 coin" +#: src/templates/coins-designs-at.html.tmpl:27 +msgid "Austrian €0.50 coin" msgstr "" -#: src/templates/collecting-crh.html.tmpl:90 -msgctxt "Company Name" -msgid "Raiffeisen Bank" +#: src/templates/banknotes.html.tmpl:31 +msgid "View the different Euro banknote designs" msgstr "" -#: src/templates/about.html.tmpl:19 -msgid "" -"While we try to stay as up-to-date as possible and to fact check our " -"information, it is always possible that we get something wrong, lack a " -"translation, or are missing some piece of data you may have. Should that be " -"the case, don’t hesitate to contact us; we’ll try to get the site updated or " -"fixed as soon as possible. You are always free to contribute via a git patch " -"if you are more technically inclined, but if not you can always send an " -"email to {Email:e} or contact ‘@onetruemangoman’ on Discord." +#: src/templates/jargon.html.tmpl:49 +msgid "PMD — Post-Mint Damage" msgstr "" -#: src/templates/-navbar.html.tmpl:47 -msgid "Banknotes" -msgstr "" +#: src/templates/coins-designs-de.html.tmpl:31 +msgctxt "Place Name" +msgid "Berlin" +msgstr "Berlijn" -#: src/templates/jargon.html.tmpl:22 -msgid "" -"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." +#: src/templates/collecting-crh.html.tmpl:483 +msgid "Coin bags are sold with no additional fees to everyone." msgstr "" -#: src/templates/jargon.html.tmpl:29 -msgid "AU — Almost Uncirculated" +#: src/templates/collecting-crh.html.tmpl:512 +msgid "" +"You may be able to get uncirculated rolls, but this is not yet confirmed." msgstr "" #: src/templates/jargon.html.tmpl:69 @@ -2109,8 +2377,13 @@ msgid "" "obtained at banks or coin roll machines." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:138 -msgid "Jaak Peep, Villem Valme" +#: src/templates/collecting-storage.html.tmpl:88 +msgid "Flips in an album" +msgstr "" + +#: src/templates/coins-mintages.html.tmpl:186 +#: src/templates/coins-mintages.html.tmpl:223 +msgid "Commemorative Coins" msgstr "" #: src/templates/collecting-crh.html.tmpl:26 @@ -2122,48 +2395,90 @@ msgid "" "charge you a small fee per roll and/or transaction." msgstr "" -#: src/templates/coins.html.tmpl:39 -msgid "View the mintage figures of all the Euro coins" +#: src/templates/collecting-crh.html.tmpl:480 +msgctxt "Company Name" +msgid "Bank of Portugal" msgstr "" -#: src/templates/collecting-crh.html.tmpl:236 +#: src/templates/language.html.tmpl:45 src/templates/language.html.tmpl:79 +msgid "Select Your Language" +msgstr "Kies uw taal" + +#: src/templates/collecting-vending.html.tmpl:11 +msgid "What is Vending Machine Hunting?" +msgstr "" + +#: src/templates/coins-designs-hr.html.tmpl:17 +msgid "Croatian €1 coin" +msgstr "" + +#: src/templates/coins-designs-be.html.tmpl:46 +#: src/templates/coins-designs-be.html.tmpl:51 +msgid "2008 portrait of King Albert II" +msgstr "" + +#: src/templates/coins-designs-at.html.tmpl:17 +msgid "Austrian €0.01 coin" +msgstr "" + +#: src/templates/coins-designs.html.tmpl:25 +msgid "Euro Coin Designs" +msgstr "Euromuntontwerpen" + +#: src/templates/banknotes-codes.html.tmpl:411 msgctxt "Company Name" -msgid "Bank of Finland" +msgid "Oberthur Fiduciaire AD" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:185 -msgctxt "Header/Label" -msgid "Total" +#: src/templates/collecting-crh.html.tmpl:168 +msgctxt "Company Name" +msgid "Volksbank" msgstr "" -#: src/templates/coins-mintages.html.tmpl:191 -#: src/templates/coins-mintages.html.tmpl:228 -msgctxt "Header/Label" -msgid "Mintage" +#: src/templates/collecting-crh.html.tmpl:217 +msgid "Madrid" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:12 +#: src/templates/collecting.html.tmpl:22 msgid "" -"The Austrian euro coins can be grouped into three different themes. The " -"bronze coins feature Austrian flowers, the gold coins feature Austrian " -"architecture and the bimetalic coins feature famous Austrian people. All " -"coins also feature an Austrian flag as well as the coins denomination. These " -"coins together with the {Link:l}Greek euro coins{-:E} are the only coins " -"that feature the denomination on both the common and national sides of the " -"coin." +"On this section of the site you can find everything there is to know about " +"collecting Euro coins. If this is a hobby that interests you, join the " +"Discord server linked at the top of the page!" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:409 -msgctxt "Place Name" -msgid "Bulgaria" -msgstr "Bulgarija" +#: src/templates/coins-designs-hr.html.tmpl:38 +msgid "" +"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ć." +msgstr "" -#: src/templates/coins-designs-de.html.tmpl:54 +#: src/templates/coins-designs-nl.html.tmpl:37 msgid "" -"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." +"Coins featuring both monarchs contain text reading ‘{DutchStart:r}BEATRIX " +"KONINGIN DER NEDERLANDEN{DutchEnd:E}’ (English: ‘BEATRIX QUEEN OF THE " +"NETHERLANDS’) and ‘{DutchStart:r}Willem-Alexander Koning der " +"Nederlanden{DutchEnd:E}’ (English: ‘Willem-Alexander King of the " +"Netherlands’) respectively. The €2 coins also feature an edge-inscription " +"reading ‘{DutchStart:r}GOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆{DutchEnd:E}’ (English: ‘GOD ⋆ " +"IS ⋆ WITH ⋆ US ⋆’)." +msgstr "" + +#: src/templates/coins-designs-ad.html.tmpl:28 +msgid "Casa de la Vall" +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:300 +#: src/templates/banknotes-codes.html.tmpl:432 +msgctxt "Company Name" +msgid "Royal Joh. Enschedé" +msgstr "" + +#: src/templates/coins-mintages.html.tmpl:54 +msgctxt "Header/Label" +msgid "Filter Method" msgstr "" #: src/templates/collecting-crh.html.tmpl:86 @@ -2173,91 +2488,121 @@ msgid "" "is free for all Erste Bank customers at Dornbirner Sparkasse with no limit." msgstr "" -#: src/templates/collecting-crh.html.tmpl:104 -msgid "" -"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." +#: src/templates/coins.html.tmpl:18 +msgid "Euro Coins" msgstr "" -#: src/templates/collecting-crh.html.tmpl:254 +#: src/templates/collecting-vending.html.tmpl:38 msgid "" -"Coin rolls used to be obtainable without fees, however you can no longer " -"obtain rolls." +"The vending machine merges change together. For example if you throw in five " +"50c coins, the machine returns either two €1 coins and one 50c coin or one " +"€2 and one 50c coin. This usually means you can hunt €2 coins very quickly " +"but other denominations only once at a time. A good tip is to throw in an " +"odd number of euros and €0.80 if you want to search through all " +"denominations." msgstr "" -#: src/templates/collecting-crh.html.tmpl:383 -msgctxt "Company Name" -msgid "Central Bank of Luxembourg" +#: src/templates/coins-designs-hr.html.tmpl:8 +msgid "Croatian Euro Coin Designs" msgstr "" -#: src/templates/coins-mintages.html.tmpl:58 -#: src/templates/coins-mintages.html.tmpl:79 -#: src/templates/coins-mintages.html.tmpl:114 -#: src/templates/coins-mintages.html.tmpl:189 +#: src/templates/jargon.html.tmpl:22 +msgid "" +"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." +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:97 +#: src/templates/banknotes-codes.html.tmpl:140 +#: src/templates/banknotes-codes.html.tmpl:184 +#: src/templates/banknotes-codes.html.tmpl:264 +#: src/templates/banknotes-codes.html.tmpl:390 msgctxt "Header/Label" -msgid "Year" +msgid "Code" msgstr "" -#: src/templates/collecting-crh.html.tmpl:62 +#: src/templates/collecting-crh.html.tmpl:66 +msgctxt "Company Name" +msgid "Bank Austria" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:184 msgid "" -"The Austrian National Bank does not distribute circulated rolls but sells " -"rolls of commemorative coins at face value on release as well as " -"uncirculated rolls for all denominations." +"You can purchase commemorative coins – including those released years ago – " +"for face value." msgstr "" -#: src/templates/collecting-crh.html.tmpl:82 +#: src/templates/coins-designs-de.html.tmpl:39 +msgctxt "Place Name" +msgid "Stuttgart" +msgstr "Stuttgart" + +#. TRANSLATORS: On the German page the filter is called ‘Münzrollengeber’. For other languages we link to the English site, so mention the English filter name surrounded by ‘{EnglishStart:r}’ and ‘{EnglishEnd:E}’, and also translate it in parenthesis to your language. For example the Swedish page might say: ‘”{EnglishStart:r}coin roll dispenser{EnglishEnd:E}” (svenska: ”myntrullsautomat”)’ +#: src/templates/collecting-crh.html.tmpl:73 msgid "" -"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." +"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}." msgstr "" -#: src/templates/collecting-crh.html.tmpl:351 -msgctxt "Company Name" -msgid "Banca di Cambiano" +#: src/templates/collecting-crh.html.tmpl:388 +msgid "" +"We currently have no information regarding regular coins, however their " +"webshop sells commemorative coins. Commemorative coins are also available " +"for purchase in-person." msgstr "" -#: src/templates/collecting-crh.html.tmpl:396 -msgid "You should be able to get coin rolls with no additional fees." +#: src/templates/collecting-crh.html.tmpl:444 +msgid "" +"1- and 2 cent coins have been removed from circulation and cannot be " +"obtained." msgstr "" -#: src/templates/collecting-crh.html.tmpl:133 -msgctxt "Company Name" -msgid "Bank of Cyprus" +#: src/dbx/sql/last.sql:137 src/dbx/sql/last.sql:140 src/dbx/sql/last.sql:143 +#: src/dbx/sql/last.sql:146 src/dbx/sql/last.sql:149 +msgctxt "CC Name" +msgid "German Reunification" msgstr "" -#: src/templates/collecting-crh.html.tmpl:480 -msgctxt "Company Name" -msgid "Bank of Portugal" +#: src/templates/about.html.tmpl:11 +msgid "Open Source" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:373 -#: src/templates/banknotes-codes.html.tmpl:418 -msgctxt "Company Name" -msgid "Valora S.A." +#: src/templates/coins-designs-de.html.tmpl:65 +msgid "" +"The €2 coin also features an edge-inscription of Germany’s national motto " +"and incipit of Germany’s national anthem. It reads ‘{GermanStart:r}EINIGKEIT " +"UND RECHT UND FREIHEIT{GermanEnd:E}’ (English: ‘UNITY AND JUSTICE AND " +"FREEDOM’)." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:25 -msgctxt "Header/Label" -msgid "City" +#: src/templates/collecting.html.tmpl:46 +msgid "Shop Hunting" +msgstr "Winkeljacht" + +#: src/templates/jargon.html.tmpl:51 +msgid "" +"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." msgstr "" -#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script -#: src/templates/coins-designs-ee.html.tmpl:169 -msgctxt "Coin Design" -msgid "Nova" +#: src/templates/collecting-storage.html.tmpl:64 +msgid "Flips in a case" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:38 +#: src/templates/coins-designs.html.tmpl:29 msgid "" -"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ć." +"Here you’ll be able to view all the coin designs for each country in the " +"Eurozone. This section of the site doesn’t include minor varieties such as " +"different mintmarks or errors; those are on the {Link:l}varieties{-:E} page." +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:373 +#: src/templates/banknotes-codes.html.tmpl:418 +msgctxt "Company Name" +msgid "Valora S.A." msgstr "" #~ msgctxt "Language Name" diff --git a/po/sv/messages.po b/po/sv/messages.po index ec23a6f..1c8fbbd 100644 --- a/po/sv/messages.po +++ b/po/sv/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: Euro Cash Wiki v1.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-11-03 13:22+0100\n" -"PO-Revision-Date: 2025-11-03 13:23+0100\n" +"POT-Creation-Date: 2025-11-03 15:47+0100\n" +"PO-Revision-Date: 2025-11-03 15:48+0100\n" "Last-Translator: Thomas Voss <mail@thomasvoss.com>\n" "Language-Team: N/A\n" "Language: sv\n" @@ -294,372 +294,413 @@ msgctxt "Place Name" msgid "Vatican City" msgstr "Vatikanstaten" -#: src/templates/coins-designs-ee.html.tmpl:60 -msgid "Estonian €1 coin" +#: src/templates/coins-designs-ee.html.tmpl:170 +msgid "Rene Haljasmäe" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:92 -#: src/templates/coins-designs-ee.html.tmpl:106 -#: src/templates/coins-designs-ee.html.tmpl:114 -#: src/templates/coins-designs-ee.html.tmpl:122 -#: src/templates/coins-designs-ee.html.tmpl:131 -#: src/templates/coins-designs-ee.html.tmpl:140 -#: src/templates/coins-designs-ee.html.tmpl:147 -#: src/templates/coins-designs-ee.html.tmpl:155 -#: src/templates/coins-designs-ee.html.tmpl:163 -#: src/templates/coins-designs-ee.html.tmpl:172 -#: src/templates/coins-designs-ee.html.tmpl:180 -msgctxt "Header/Label" -msgid "Votes (%)" -msgstr "Röster (%)" - -#: src/templates/collecting-crh.html.tmpl:116 +#: src/templates/collecting-crh.html.tmpl:426 msgctxt "Company Name" -msgid "KBC Bank" +msgid "HSBC Bank Malta" msgstr "" -#: src/templates/collecting.html.tmpl:46 -msgid "Shop Hunting" -msgstr "Affärsjakt" +#: src/templates/index.html.tmpl:14 +msgid "diversity" +msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:53 +#: src/templates/coins-designs-hr.html.tmpl:33 msgid "" -"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." +"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)." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:91 -#: src/templates/coins-designs-ee.html.tmpl:105 -#: src/templates/coins-designs-ee.html.tmpl:113 -#: src/templates/coins-designs-ee.html.tmpl:121 -#: src/templates/coins-designs-ee.html.tmpl:130 -#: src/templates/coins-designs-ee.html.tmpl:139 -#: src/templates/coins-designs-ee.html.tmpl:146 -#: src/templates/coins-designs-ee.html.tmpl:154 -#: src/templates/coins-designs-ee.html.tmpl:162 -#: src/templates/coins-designs-ee.html.tmpl:171 -#: src/templates/coins-designs-ee.html.tmpl:179 -msgctxt "Header/Label" -msgid "Votes" -msgstr "Röster" +#: src/templates/collecting-storage.html.tmpl:21 +msgid "" +"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." +msgstr "" -#: src/templates/jargon.html.tmpl:27 -msgid "General Terms" +#. TRANSLATORS: As in ‘5 Euro Banknote’ +#: src/templates/banknotes-codes.html.tmpl:512 +msgid "{N} Euro" +msgid_plural "{N} Euro" +msgstr[0] "" +msgstr[1] "" + +#: src/templates/coins-designs-ee.html.tmpl:138 +msgid "Jaak Peep, Villem Valme" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:14 -msgid "Croatian €0.50 coin" +#: src/templates/collecting-crh.html.tmpl:43 +msgid "" +"Be aware of the fact that the information below may be outdated or " +"inaccurate. Many of the details are self-reported." msgstr "" -#: src/templates/banknotes.html.tmpl:22 +#: src/templates/coins.html.tmpl:31 +msgid "View the 600+ different Euro-coin designs" +msgstr "" + +#: src/templates/jargon.html.tmpl:61 msgid "" -"On this section of the site you can find everything there is to know about " -"the banknotes of the Eurozone." +"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." msgstr "" -#: src/templates/-base.html.tmpl:54 -msgid "Found a mistake or want to contribute missing information?" +#: src/templates/collecting-storage.html.tmpl:72 +msgid "Flips and capsules in a box" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:267 -#: src/templates/banknotes-codes.html.tmpl:393 -msgctxt "Header/Label" -msgid "Printer" -msgstr "Skrivare" +#: src/templates/banknotes-codes.html.tmpl:329 +#: src/templates/banknotes-codes.html.tmpl:461 +#: src/templates/collecting-crh.html.tmpl:263 +msgctxt "Company Name" +msgid "Bank of France" +msgstr "" -#: src/templates/collecting-crh.html.tmpl:150 +#: src/templates/coins-designs-ee.html.tmpl:119 +msgctxt "Coin Design" +msgid "In the Body" +msgstr "I kroppen" + +#: src/templates/coins-designs-ee.html.tmpl:177 +msgctxt "Coin Design" +msgid "A Flower in the Rye" +msgstr "En blomma i rågen" + +#: src/templates/collecting-crh.html.tmpl:439 msgid "" -"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." +"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." msgstr "" -#: src/templates/-navbar.html.tmpl:48 -msgid "Jargon" +#: src/templates/banknotes.html.tmpl:29 src/templates/coins.html.tmpl:29 +msgid "Designs" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:30 +#: src/templates/coins.html.tmpl:22 msgid "" -"The €0.10 coin features St. Stephen’s Cathedral. It symbolises the Viennese " -"Gothic architectural style dating to around the year 1160. The €0.20 coin " -"features Belvedere Palace. This is an example of Baroque architecture and " -"symbolises the national freedom and sovereignty of Austria. Finally, the " -"€0.50 coin features the Secession Building: an exhibition hall in the Art " -"Nouveau style." +"On this section of the site you can find everything there is to know about " +"the coins of the Eurozone." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:8 -msgid "Andorran Euro Coin Designs" +#: src/templates/coins-designs-ad.html.tmpl:20 +msgid "" +"On March of 2013 Andorra held a public design competition for all " +"denominations except for the €2 denomination which the government pre-" +"decided would bear the coat of arms of Andorra. Each set of denominations " +"had a theme that participants had to center their designs around. These " +"themes were:" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:12 -msgid "Andorran €0.01 coin" +#: src/templates/coins-designs-ad.html.tmpl:25 +msgid "€0.10, €0.20 and €0.50" msgstr "" -#: src/templates/coins-mintages.html.tmpl:186 -#: src/templates/coins-mintages.html.tmpl:223 -msgid "Commemorative Coins" +#: src/templates/collecting-storage.html.tmpl:51 +msgid "Coin Rolls" msgstr "" -#: src/templates/collecting-crh.html.tmpl:119 -msgid "Rolls can be obtained with no fee by customers only" +#: src/templates/collecting-crh.html.tmpl:93 +msgid "" +"There is a fee of €1 per roll if you aren’t a customer and €0.30 otherwise. " +"Coin deposits are free for customers." msgstr "" -#: src/templates/-navbar.html.tmpl:43 -msgid "Home" +#: src/templates/-404.html.tmpl:12 +msgid "" +"The page you were looking for does not exist. If you believe this is a " +"mistake then don’t hesitate to contact ‘@onetruemangoman’ on Discord or " +"email us at {Email:e}." msgstr "" -#: src/templates/coins-designs-nl.html.tmpl:8 -msgid "Dutch Euro Coin Designs" +#: src/templates/collecting-vending.html.tmpl:48 +msgid "" +"There are some limits to vending machine hunts which you need to be aware of." msgstr "" -#: src/templates/coins-designs-be.html.tmpl:46 -#: src/templates/coins-designs-be.html.tmpl:51 -msgid "2008 portrait of King Albert II" +#: src/templates/collecting-crh.html.tmpl:8 +#: src/templates/collecting.html.tmpl:29 +msgid "Coin Roll Hunting" +msgstr "Myntrullejakt" + +#: src/templates/coins-designs-ad.html.tmpl:41 +msgid "Rejected Andorran design" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:34 -msgid "Austrian €2 coin" +#: src/templates/banknotes-codes.html.tmpl:42 +msgid "" +"Euro banknotes have two codes on them: a printer code and a serial number. " +"The printer code tells you where a given note was printed, while the serial " +"number tells you which country issued the banknote (for the 2002 series) or " +"where the banknote was printed (for the Europa series)." msgstr "" -#: src/templates/collecting-crh.html.tmpl:374 -msgctxt "Company Name" -msgid "Top Exchange" +#: src/templates/coins-designs-de.html.tmpl:15 +msgid "German €0.10 coin" msgstr "" -#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script -#: src/templates/coins-designs-ee.html.tmpl:128 -msgctxt "Coin Design" -msgid "Tomson 5791" -msgstr "Tomson 5791" +#: src/templates/collecting-crh.html.tmpl:127 +msgid "" +"Rolls can be obtained with no fee when you order through their online " +"platform." +msgstr "" -#. TRANSLATORS: Beginning of sentence, as in ‘United in …’ -#: src/templates/index.html.tmpl:13 -msgid "United in" +#: src/templates/collecting-crh.html.tmpl:278 +#: src/templates/collecting-crh.html.tmpl:286 +msgid "" +"Free coin rolls if you are a customer or €1 per roll if you are not a " +"customer. There are coin roll machines." msgstr "" -#: src/templates/collecting.html.tmpl:56 -msgid "Learn about collecting coins from vending machines" +#: src/templates/coins-designs-be.html.tmpl:30 +msgid "Belgian €1 coin (King Albert; Series 2)" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:22 +#: src/templates/coins-designs-at.html.tmpl:30 msgid "" -"The bronze coins feature the Alpine gentian, edelweiss and primrose " -"respectively, and were chosen to symbolize the role that Austria played in " -"the development of EU environmental policy." +"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." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:357 -#: src/templates/banknotes-codes.html.tmpl:439 -msgctxt "Company Name" -msgid "Federal Printing Office" +#: src/templates/-base.html.tmpl:55 +msgid "Feel free to contact us!" msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:223 +#: src/templates/coins-mintages.html.tmpl:190 +#: src/templates/coins-mintages.html.tmpl:227 +msgctxt "Header/Label" +msgid "Commemorated Topic" +msgstr "Minnesämne" + +#: src/templates/collecting-crh.html.tmpl:90 msgctxt "Company Name" -msgid "La Caixa" +msgid "Raiffeisen Bank" msgstr "" -#: src/templates/collecting-crh.html.tmpl:402 +#: src/templates/collecting-crh.html.tmpl:137 msgid "" -"In general coin rolls are sold with for fee of €0.60 per roll, but we’re " -"lacking a lot of information." +"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." msgstr "" -#: src/templates/-404.html.tmpl:12 +#: src/templates/collecting-crh.html.tmpl:247 msgid "" -"The page you were looking for does not exist. If you believe this is a " -"mistake then don’t hesitate to contact ‘@onetruemangoman’ on Discord or " -"email us at {Email:e}." +"The Mint of Finland ceased all operations in late 2024 but still sells coins " +"on their website." msgstr "" -#: src/templates/coins-designs.html.tmpl:29 -msgid "" -"Here you’ll be able to view all the coin designs for each country in the " -"Eurozone. This section of the site doesn’t include minor varieties such as " -"different mintmarks or errors; those are on the {Link:l}varieties{-:E} page." +#: src/templates/collecting-crh.html.tmpl:467 +msgid "Coin rolls are available for a fee of €7 + €0.35 per roll." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:85 +#: src/templates/index.html.tmpl:15 +msgid "cash" +msgstr "" + +#: src/templates/coins-designs-be.html.tmpl:57 msgid "" -"The first letter in the printer code identifies the specific printer at " -"which the banknote was printed. The tables below will tell you which letters " -"correspond to which printers. The final letter and number form a pair (such " -"as ‘A2’ or ‘D6’) — this pair acts as a set of coordinates telling you where " -"on the sheet of paper the banknote was located. During printing, banknotes " -"are printed in a grid on a large sheet of paper which is then cut into " -"individual banknotes. A note with the pair ‘A1’ will have been at the upper-" -"left corner of the printing sheet, with ‘A2’ to its right and ‘B1’ below it." +"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." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:321 -#: src/templates/banknotes-codes.html.tmpl:453 -#: src/templates/collecting-crh.html.tmpl:336 -msgctxt "Company Name" -msgid "Central Bank of Ireland" -msgstr "Irlands Centralbank" +#: src/templates/coins-designs-at.html.tmpl:18 +msgid "Austrian €0.02 coin" +msgstr "" -#: src/templates/collecting-crh.html.tmpl:205 -msgid "Coin rolls are free but you must be a customer." +#: src/templates/banknotes.html.tmpl:45 +msgid "Test Notes" msgstr "" -#: src/templates/collecting-crh.html.tmpl:490 -msgid "Coin bags are sold with no additional fees to bank customers." +#: src/templates/collecting-storage.html.tmpl:33 +msgid "Coin Capsules" msgstr "" -#: src/templates/-navbar.html.tmpl:46 -msgid "Coins" +#: src/templates/collecting-crh.html.tmpl:11 +msgid "What is ‘Coin Roll Hunting’?" +msgstr "Var är ”muntrullejakt”?" + +#: src/templates/collecting-crh.html.tmpl:39 +msgid "" +"Below you can find country-specific details we have regarding obtaining coin " +"rolls. We lack a lot of information for many of the countries, so if you " +"have any additional information such as your banks fees, the availability of " +"coin roll machines, etc. feel free to contact us! You can find our contact " +"information {Link:l}here{-:E}." msgstr "" #. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:251 +#: src/templates/collecting-crh.html.tmpl:297 msgctxt "Company Name" -msgid "Aktia Bank" +msgid "LCL" msgstr "" -#: src/templates/collecting-crh.html.tmpl:370 -msgid "Coin rolls are available with a fee of 5%." +#: src/templates/coins-designs-ee.html.tmpl:76 +msgid "" +"The winner of the contest was awarded 50,000 KR (€3,196) while the other " +"finalists were each awarded 20,000 KR (€1,278)." msgstr "" -#: src/templates/collecting-crh.html.tmpl:422 -#: src/templates/collecting-crh.html.tmpl:429 -msgid "" -"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." +#. TRANSLATORS: The OeNB prefers ‘Oe’ over ‘Ö’ +#: src/templates/collecting-crh.html.tmpl:59 +msgctxt "Company Name" +msgid "Austrian National Bank" msgstr "" -#: src/templates/coins.html.tmpl:37 -msgid "Mintages" +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:464 +msgctxt "Company Name" +msgid "ING" msgstr "" -#: src/templates/-navbar.html.tmpl:44 -msgid "News" +#: src/templates/collecting-crh.html.tmpl:487 +msgctxt "Company Name" +msgid "Banco Comercial Português" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:72 -msgid "Europa Series Printer Codes" -msgstr "Europa-seriens skrivarkoder" +#: src/dbx/sql/last.sql:151 +msgctxt "CC Name" +msgid "Slovak Republic to the EU" +msgstr "Slovakien till EU" -#: src/templates/coins-designs-ee.html.tmpl:85 -#: src/templates/coins-designs-ee.html.tmpl:100 -#: src/templates/coins-designs-ee.html.tmpl:109 -#: src/templates/coins-designs-ee.html.tmpl:117 -#: src/templates/coins-designs-ee.html.tmpl:125 -#: src/templates/coins-designs-ee.html.tmpl:134 -#: src/templates/coins-designs-ee.html.tmpl:143 -#: src/templates/coins-designs-ee.html.tmpl:150 -#: src/templates/coins-designs-ee.html.tmpl:158 -#: src/templates/coins-designs-ee.html.tmpl:166 -#: src/templates/coins-designs-ee.html.tmpl:175 -msgctxt "Header/Label" -msgid "Position" -msgstr "Position" +#: src/dbx/sql/last.sql:152 +msgctxt "CC Name" +msgid "Ľudovít Štúr" +msgstr "Ľudovít Štúr" -#: src/templates/collecting-crh.html.tmpl:11 -msgid "What is ‘Coin Roll Hunting’?" -msgstr "Var är ”muntrullejakt”?" +#: src/templates/about.html.tmpl:17 +msgid "Contact Us" +msgstr "" -#: src/templates/collecting-crh.html.tmpl:13 +#: src/templates/collecting-storage.html.tmpl:48 msgid "" -"Coin roll hunting is a popular method of coin collecting in which you " -"withdraw cash from your bank in the form of coins and then search through " -"those coins to find new additions to your collection. Once you’ve searched " -"through all your coins, you will typically deposit your left over coins at " -"the bank and withdraw new coins." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:157 -msgid "Hand-rolled coin rolls can be obtained with no additional fees." +#: src/templates/-base.html.tmpl:54 +msgid "Found a mistake or want to contribute missing information?" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:329 -#: src/templates/banknotes-codes.html.tmpl:461 -#: src/templates/collecting-crh.html.tmpl:263 +#: src/templates/banknotes-codes.html.tmpl:475 msgctxt "Company Name" -msgid "Bank of France" +msgid "Giesecke+Devrient Leipzig" msgstr "" -#. TRANSLATORS: ‘Estonian’ as in the language, not the nationality -#: src/templates/coins-designs-ee.html.tmpl:137 -msgctxt "Coin Design" -msgid "Estonian" -msgstr "Estniska" - -#: src/templates/coins-mintages.html.tmpl:110 -#: src/templates/coins-mintages.html.tmpl:148 -msgid "Standard Issue Coins" +#: src/templates/coins-designs-ee.html.tmpl:161 +msgid "Jaarno Ester" msgstr "" -#: src/templates/collecting-crh.html.tmpl:244 +#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script +#: src/templates/coins-designs-ee.html.tmpl:169 +msgctxt "Coin Design" +msgid "Nova" +msgstr "Nova" + +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:251 msgctxt "Company Name" -msgid "Mint of Finland" +msgid "Aktia Bank" msgstr "" -#: src/templates/collecting-crh.html.tmpl:313 -msgid "" -"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." +#: src/templates/collecting-crh.html.tmpl:496 +msgid "In general there is a €1.20 fee for coin rolls." msgstr "" -#: src/templates/collecting-crh.html.tmpl:444 -msgid "" -"1- and 2 cent coins have been removed from circulation and cannot be " -"obtained." +#: src/templates/coins-designs-at.html.tmpl:26 +msgid "Austrian €0.20 coin" msgstr "" -#: src/templates/-404.html.tmpl:8 -msgid "Page Not Found" -msgstr "" +#: src/templates/coins-designs-de.html.tmpl:25 +msgctxt "Header/Label" +msgid "City" +msgstr "Stad" -#: src/templates/collecting.html.tmpl:48 -msgid "Learn about how to collect coins from shops" +#: src/templates/coins-designs-ee.html.tmpl:145 +msgid "Mai Järmut, Villu Järmut" msgstr "" -#: src/templates/banknotes.html.tmpl:18 -msgid "Euro Banknotes" +#: src/templates/collecting-crh.html.tmpl:30 +msgid "" +"It is also important to find details regarding the deposit of coins. " +"Depositing coins often also requires the payment of a fee – one which is " +"typically more expensive than the withdrawal fees. If depositing your coins " +"is too expensive you can always exchange your left over coins at shops for " +"banknotes. It is often cheaper (or even free) to deposit banknotes." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:50 +#: src/templates/collecting-crh.html.tmpl:309 msgid "" -"The printer code can be a bit tricky to find. The following dropdown menus " -"will show you where to find the printer code on each note." +"{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)." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:57 +#: src/templates/collecting-crh.html.tmpl:525 msgid "" -"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." +"We currently have no information regarding coin roll hunting in San Marino." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:111 -msgctxt "Coin Design" -msgid "Consistency" -msgstr "Konsistens" +#: src/templates/language.html.tmpl:46 src/templates/language.html.tmpl:85 +msgid "Eurozone Languages" +msgstr "Eurozonens språk" -#: src/templates/collecting-crh.html.tmpl:218 -msgid "Coin rolls have no fees." +#: src/templates/coins-designs-hr.html.tmpl:14 +msgid "Croatian €0.50 coin" msgstr "" -#: src/templates/collecting-crh.html.tmpl:326 +#: src/templates/coins-designs-ad.html.tmpl:32 msgid "" -"We currently have no information regarding coin roll hunting in Croatia." +"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." msgstr "" -#: src/templates/-navbar.html.tmpl:53 -msgid "Discord" +#: src/templates/jargon.html.tmpl:15 +msgid "Euro Cash Jargon" msgstr "" -#: src/templates/jargon.html.tmpl:31 -msgid "" -"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)." +#: src/templates/banknotes-codes.html.tmpl:98 +#: src/templates/banknotes-codes.html.tmpl:141 +#: src/templates/banknotes-codes.html.tmpl:185 +#: src/templates/banknotes-codes.html.tmpl:265 +#: src/templates/banknotes-codes.html.tmpl:391 +#: src/templates/coins-mintages.html.tmpl:56 +#: src/templates/coins-mintages.html.tmpl:62 +#: src/templates/coins-mintages.html.tmpl:152 +#: src/templates/coins-mintages.html.tmpl:226 +msgctxt "Header/Label" +msgid "Country" +msgstr "Land" + +#: src/templates/coins-designs-hr.html.tmpl:18 +msgid "Croatian €2 coin" msgstr "" #: src/templates/jargon.html.tmpl:45 @@ -671,97 +712,130 @@ msgid "" "put NIFCs that have gone unsold for multiple years into circulation." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:88 -msgid "2002 Series" -msgstr "2002-serien" +#: src/templates/coins-designs-de.html.tmpl:47 +msgctxt "Place Name" +msgid "Hamburg" +msgstr "Hamburg" -#: src/templates/collecting-crh.html.tmpl:161 -msgctxt "Company Name" -msgid "Sparkasse" +#: src/templates/coins-mintages.html.tmpl:39 +msgid "" +"Here you’ll be able to view all the known mintages for all coins. You’ll " +"also be able to filter on country, denomination, etc. If you have any " +"mintage data that’s missing from our site, feel free to contact us." msgstr "" -#: src/templates/collecting-crh.html.tmpl:496 -msgid "In general there is a €1.20 fee for coin rolls." +#: src/templates/coins-designs-ad.html.tmpl:53 +msgid "" +"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." msgstr "" -#: src/templates/banknotes.html.tmpl:45 -msgid "Test Notes" +#: src/templates/collecting-storage.html.tmpl:76 +msgid "Coins in an album" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:13 -msgid "Andorran €0.50 coin" +#: src/templates/collecting-crh.html.tmpl:112 +msgid "" +"There is a €1.50 fee per transaction with no limit on the number of rolls " +"you may take." msgstr "" -#: src/templates/jargon.html.tmpl:67 -msgid "CRH — Coin Roll Hunting" +#: src/templates/collecting.html.tmpl:48 +msgid "Learn about how to collect coins from shops" msgstr "" -#: src/templates/collecting-crh.html.tmpl:168 +#: src/templates/collecting-crh.html.tmpl:147 msgctxt "Company Name" -msgid "Volksbank" +msgid "German Federal Bank" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:29 -msgid "" -"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’." +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:283 +msgctxt "Company Name" +msgid "Crédit Mutuel" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:33 -msgid "Austrian €1 coin" +#: src/templates/collecting-vending.html.tmpl:8 +#: src/templates/collecting.html.tmpl:18 +msgid "Euro Coin Collecting" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:336 -#: src/templates/banknotes-codes.html.tmpl:468 -#: src/templates/collecting-crh.html.tmpl:198 -msgctxt "Company Name" -msgid "Royal Mint of Spain" +#: src/templates/coins-designs-at.html.tmpl:22 +msgid "" +"The bronze coins feature the Alpine gentian, edelweiss and primrose " +"respectively, and were chosen to symbolize the role that Austria played in " +"the development of EU environmental policy." msgstr "" -#: src/templates/collecting-crh.html.tmpl:171 -msgid "Coin rolls can be obtained for a fee of €0.25 per roll." +#: src/templates/collecting-storage.html.tmpl:30 +msgid "" +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:377 -msgid "Fee of €2 per roll of 2 euro coins." +#: src/templates/collecting-storage.html.tmpl:42 +msgid "Coin Flips" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:20 +#: src/templates/collecting-storage.html.tmpl:68 +msgid "Capsules in a case" +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:85 msgid "" -"On March of 2013 Andorra held a public design competition for all " -"denominations except for the €2 denomination which the government pre-" -"decided would bear the coat of arms of Andorra. Each set of denominations " -"had a theme that participants had to center their designs around. These " -"themes were:" +"The first letter in the printer code identifies the specific printer at " +"which the banknote was printed. The tables below will tell you which letters " +"correspond to which printers. The final letter and number form a pair (such " +"as ‘A2’ or ‘D6’) – this pair acts as a set of coordinates telling you where " +"on the sheet of paper the banknote was located. During printing, banknotes " +"are printed in a grid on a large sheet of paper which is then cut into " +"individual banknotes. A note with the pair ‘A1’ will have been at the upper-" +"left corner of the printing sheet, with ‘A2’ to its right and ‘B1’ below it." msgstr "" -#: src/templates/collecting-crh.html.tmpl:79 -msgctxt "Company Name" -msgid "Erste Bank" +#: src/templates/about.html.tmpl:8 +msgid "About Us" msgstr "" -#: src/templates/collecting-crh.html.tmpl:512 +#: src/templates/-navbar.html.tmpl:97 +msgid "Language" +msgstr "" + +#: src/templates/jargon.html.tmpl:67 +msgid "CRH — Coin Roll Hunting" +msgstr "" + +#: src/templates/collecting-storage.html.tmpl:58 msgid "" -"You may be able to get uncirculated rolls, but this is not yet confirmed." +"In case you’re looking for some inspiration on how to store your " +"collections, here are some examples:" msgstr "" -#: src/templates/collecting.html.tmpl:39 -msgid "Learn about the different methods to storing your collection" +#: src/templates/coins-designs-ee.html.tmpl:65 +msgid "" +"The Estonian euro coins feature the same design across all eight " +"denominations. The country’s outline is prominently displayed above the " +"country’s name in Estonian (‘{EstonianStart:r}EESTI{EstonianEnd:E}’)." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:411 -msgctxt "Company Name" -msgid "Oberthur Fiduciaire AD" +#: src/templates/coins-designs-be.html.tmpl:26 +msgid "Belgian €1 coin (King Albert; Series 1)" msgstr "" -#. TRANSLATORS: The OeNB prefers ‘Oe’ over ‘Ö’ -#: src/templates/collecting-crh.html.tmpl:59 -msgctxt "Company Name" -msgid "Austrian National Bank" +#: src/templates/coins-designs-be.html.tmpl:60 +msgid "" +"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." +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:50 +msgid "" +"The printer code can be a bit tricky to find. The following dropdown menus " +"will show you where to find the printer code on each note." msgstr "" #: src/templates/collecting-crh.html.tmpl:354 @@ -770,265 +844,271 @@ msgid "" "or if there are additional fees." msgstr "" -#: src/templates/collecting-crh.html.tmpl:531 +#: src/templates/collecting-crh.html.tmpl:402 msgid "" -"Ask the Pope nicely and he’ll probably give you some Vatican coins for free." +"In general coin rolls are sold with for fee of €0.60 per roll, but we’re " +"lacking a lot of information." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:42 -msgid "" -"Euro banknotes have two codes on them: a printer code and a serial number. " -"The printer code tells you where a given note was printed, while the serial " -"number tells you which country issued the banknote (for the 2002 series) or " -"where the banknote was printed (for the Europa series)." +#: src/templates/collecting-crh.html.tmpl:448 +msgctxt "Company Name" +msgid "The Dutch Central Bank" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:269 -#: src/templates/banknotes-codes.html.tmpl:395 -msgctxt "Header/Label" -msgid "Local Names" -msgstr "Locala namn" - -#: src/templates/banknotes-codes.html.tmpl:381 -msgid "Europa Series" -msgstr "Europa-serien" - -#: src/templates/coins-designs-de.html.tmpl:39 -msgctxt "Place Name" -msgid "Stuttgart" -msgstr "Stuttgart" - -#: src/templates/collecting-crh.html.tmpl:516 -msgctxt "Company Name" -msgid "Tatra banka" +#: src/templates/-error.html.tmpl:12 +msgid "" +"If you’re seeing this page, it means that something went wrong on our end " +"that we need to fix. Our team has been notified of this error, and we " +"apologise for the inconvenience." msgstr "" -#: src/templates/banknotes.html.tmpl:29 src/templates/coins.html.tmpl:29 -msgid "Designs" +#: src/templates/collecting-vending.html.tmpl:28 +msgid "" +"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." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:25 -msgid "€0.10, €0.20 and €0.50" +#: src/templates/collecting-vending.html.tmpl:73 +msgid "" +"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 " +"€4.90 max change limit." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:97 -#: src/templates/banknotes-codes.html.tmpl:140 -#: src/templates/banknotes-codes.html.tmpl:184 -#: src/templates/banknotes-codes.html.tmpl:264 -#: src/templates/banknotes-codes.html.tmpl:390 -msgctxt "Header/Label" -msgid "Code" -msgstr "Kod" +#: src/templates/coins-designs-at.html.tmpl:33 +msgid "Austrian €1 coin" +msgstr "" -#: src/templates/banknotes-codes.html.tmpl:257 +#: src/templates/collecting-storage.html.tmpl:26 msgid "" -"The first letter of the printer code can be used to identify the specific " -"printer at which the banknote was printed. The printer and country codes do " -"not need to line up; a banknote issued by a country will often be printed in " -"another." +"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 on top of each " +"other. Each layer has a grid of slots where you can insert your coins. " +"Typically you are meant to store your coins in a layer encased in a coin " +"capsule." msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:297 -msgctxt "Company Name" -msgid "LCL" +#: src/templates/coins-mintages.html.tmpl:35 +msgid "Euro Coin Mintages" msgstr "" -#: src/templates/collecting-crh.html.tmpl:347 -msgid "Coin rolls are available to everyone." +#: src/templates/coins-mintages.html.tmpl:46 +msgid "" +"Most coins from the years 2003–2016 are listed as NIFC coins while other " +"popular sources such as Numista claim they were minted for circulation. For " +"more information on why others are wrong, {Link:l}click here{-:E}." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:41 -msgid "Rejected Andorran design" -msgstr "" +#: src/templates/collecting.html.tmpl:54 +msgid "Vending Machine Hunting" +msgstr "Varuautomatjakt" -#: src/templates/collecting-crh.html.tmpl:37 -msgid "Country-Specific Details" -msgstr "Landsspecifika detaljer" +#: src/templates/banknotes-codes.html.tmpl:38 +#: src/templates/banknotes.html.tmpl:37 +msgid "Location Codes" +msgstr "Platskoder" -#: src/templates/collecting-crh.html.tmpl:137 -msgid "" -"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." +#: src/templates/coins-mintages.html.tmpl:43 +msgid "Additional Notes" msgstr "" -#: src/templates/collecting-crh.html.tmpl:317 +#: src/templates/collecting-crh.html.tmpl:154 msgctxt "Company Name" -msgid "Piraeus Bank" +msgid "German Post" msgstr "" -#: src/templates/collecting-crh.html.tmpl:451 -msgid "Obtaining coins from the Dutch Central Bank is not possible." +#: src/templates/collecting-crh.html.tmpl:367 +msgctxt "Company Name" +msgid "ExchangeLT" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:8 -msgid "Croatian Euro Coin Designs" +#: src/templates/collecting-crh.html.tmpl:490 +msgid "Coin bags are sold with no additional fees to bank customers." msgstr "" -#: src/templates/coins-designs-nl.html.tmpl:37 +#: src/templates/collecting-crh.html.tmpl:503 msgid "" -"Coins featuring both monarchs contain text reading ‘{DutchStart:r}BEATRIX " -"KONINGIN DER NEDERLANDEN{DutchEnd:E}’ (English: ‘BEATRIX QUEEN OF THE " -"NETHERLANDS’) and ‘{DutchStart:r}Willem-Alexander Koning der " -"Nederlanden{DutchEnd:E}’ (English: ‘Willem-Alexander King of the " -"Netherlands’) respectively. The €2 coins also feature an edge-inscription " -"reading ‘{DutchStart:r}GOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆{DutchEnd:E}’ (English: ‘GOD ⋆ " -"IS ⋆ WITH ⋆ US ⋆’)." -msgstr "" - -#: src/templates/coins-designs-ad.html.tmpl:56 -msgid "Finally, the €2 coin features the {Link:L}coat of arms of Andorra{-:E}." +"You can purchase commemorative coins for face value, and coin rolls are sold " +"with no fees to everyone." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:47 +#: src/templates/about.html.tmpl:19 msgid "" -"The printer code (not to be confused with the serial number) is a small code " -"printed on banknotes with information about where the banknote was printed. " -"All printer codes have the form ‘X000X0’ — or in other words — a letter " -"followed by 3 numbers, a letter and a final number." +"While we try to stay as up-to-date as possible and to fact check our " +"information, it is always possible that we get something wrong, lack a " +"translation, or are missing some piece of data you may have. Should that be " +"the case, don’t hesitate to contact us; we’ll try to get the site updated or " +"fixed as soon as possible. You are always free to contribute via a git patch " +"if you are more technically inclined, but if not you can always send an " +"email to {Email:e} or contact ‘@onetruemangoman’ on Discord." msgstr "" -#: src/templates/collecting-crh.html.tmpl:17 +#: src/templates/collecting-vending.html.tmpl:53 msgid "" -"This type of coin collecting is often called ‘coin roll hunting’ " -"(abbreviated to ‘CRH’) due to the fact that banks will often provide you " -"with coins in the form of paper-wrapped rolls. You may however find that " -"your coins come in plastic bags instead (common in countries like Ireland)." +"Some machines have a maximum amount you can throw in, and will reject " +"anything higher. For example machines with a maximum limit of €5 will reject " +"any additional coins if you throw in €5. You can try to go above the limit " +"if you throw in €4.80 and then another €1 or €2 coin; the machine might " +"accept it." msgstr "" -#: src/templates/collecting-crh.html.tmpl:500 -msgctxt "Company Name" -msgid "Bank of Slovenia" +#: src/templates/banknotes.html.tmpl:39 +msgid "Find out where your notes were printed" msgstr "" -#: src/templates/coins-designs-de.html.tmpl:8 -msgid "German Euro Coin Designs" +#: src/templates/banknotes-codes.html.tmpl:364 +#: src/templates/banknotes-codes.html.tmpl:496 +#: src/templates/collecting-crh.html.tmpl:99 +msgctxt "Company Name" +msgid "National Bank of Belgium" msgstr "" -#: src/templates/coins-designs-de.html.tmpl:43 -msgctxt "Place Name" -msgid "Karlsruhe" -msgstr "Karlsruhe" - -#: src/templates/collecting-crh.html.tmpl:203 +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:393 msgctxt "Company Name" -msgid "Santander Bank" +msgid "Dexia" msgstr "" -#: src/templates/collecting-crh.html.tmpl:439 +#: src/templates/collecting-crh.html.tmpl:519 msgid "" -"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." +"You can get an unlimited number of rolls for a €5 fee. You must be a " +"customer of the bank." msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:456 -msgctxt "Company Name" -msgid "ABN AMRO" +#: src/templates/-navbar.html.tmpl:56 +msgid "About" msgstr "" -#: src/templates/index.html.tmpl:22 -msgid "" -"Welcome to the Euro Cash Wiki! This sites aims to be a resource for you to " -"discover everything there is to know about the coins and banknotes of the " -"Euro, a currency that spans 26 countries and 350 million people. We also " -"have dedicated sections of the site for collectors." +#: src/templates/collecting-vending.html.tmpl:31 +msgid "(Non-)Merging Machines" msgstr "" -#: src/templates/coins.html.tmpl:31 -msgid "View the 600+ different Euro-coin designs" +#: src/templates/banknotes.html.tmpl:47 +msgid "Learn about the special test notes" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:160 -msgctxt "Coin Design" -msgid "Leopards-2" -msgstr "Leoparder-2" +#: src/templates/collecting-storage.html.tmpl:80 +msgid "Coins in an album with labels" +msgstr "" -#: src/templates/collecting.html.tmpl:54 -msgid "Vending Machine Hunting" -msgstr "Varuautomatjakt" +#: src/templates/banknotes-codes.html.tmpl:55 +msgid "2002 Series Printer Codes" +msgstr "2002-seriens skrivarkoder" -#: src/templates/coins-designs-ad.html.tmpl:50 +#: src/templates/banknotes-codes.html.tmpl:90 msgid "" -"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." +"In the 2002 series, the first letter of the serial number can be used to " +"identify the country that issued the banknote. The following table shows " +"which countries map to which codes." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:170 -msgid "Rene Haljasmäe" +#: src/templates/collecting-crh.html.tmpl:451 +msgid "Obtaining coins from the Dutch Central Bank is not possible." msgstr "" -#: src/templates/collecting-crh.html.tmpl:388 +#: src/templates/collecting-vending.html.tmpl:42 msgid "" -"We currently have no information regarding regular coins, however their " -"webshop sells commemorative coins. Commemorative coins are also available " -"for purchase in-person." +"The vending machine does not merge change together. This means if you throw " +"in five 50c coins it will return five 50c coins. This makes it very easy to " +"hunt a large amount of a specific denomination." msgstr "" -#: src/templates/collecting-crh.html.tmpl:408 -msgid "We currently have no information regarding coin roll hunting in Monaco." +#: src/templates/coins-designs-ee.html.tmpl:60 +msgid "Estonian €1 coin" msgstr "" -#: src/templates/collecting-crh.html.tmpl:471 -msgctxt "Company Name" -msgid "Rabobank" +#: src/templates/coins-designs-ee.html.tmpl:90 +#: src/templates/coins-designs-ee.html.tmpl:104 +#: src/templates/coins-designs-ee.html.tmpl:112 +#: src/templates/coins-designs-ee.html.tmpl:120 +#: src/templates/coins-designs-ee.html.tmpl:129 +#: src/templates/coins-designs-ee.html.tmpl:138 +#: src/templates/coins-designs-ee.html.tmpl:145 +#: src/templates/coins-designs-ee.html.tmpl:153 +#: src/templates/coins-designs-ee.html.tmpl:161 +#: src/templates/coins-designs-ee.html.tmpl:170 +#: src/templates/coins-designs-ee.html.tmpl:178 +msgctxt "Header/Label" +msgid "Author(s)" +msgstr "Författare" + +#: src/templates/collecting-crh.html.tmpl:171 +msgid "Coin rolls can be obtained for a fee of €0.25 per roll." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:45 -msgid "Printer Codes" -msgstr "Skrivarkoder" +#: src/templates/collecting-storage.html.tmpl:8 +#: src/templates/collecting.html.tmpl:37 +msgid "Coin Storage" +msgstr "Myntförvaring" -#: src/templates/banknotes-codes.html.tmpl:307 -msgctxt "Company Name" -msgid "De La Rue" +#: src/templates/coins-designs-at.html.tmpl:19 +msgid "Austrian €0.05 coin" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:350 -msgctxt "Company Name" -msgid "Giesecke+Devrient" +#: src/templates/collecting-storage.html.tmpl:39 +msgid "" +"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." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:177 -msgctxt "Coin Design" -msgid "A Flower in the Rye" -msgstr "En blomma i rågen" +#: src/templates/banknotes-codes.html.tmpl:72 +msgid "Europa Series Printer Codes" +msgstr "Europa-seriens skrivarkoder" -#: src/templates/coins-designs-ad.html.tmpl:26 -msgid "Andorra’s Romanesque art" +#: src/templates/banknotes-codes.html.tmpl:516 +msgid "Printer code on a {N} euro bill" +msgid_plural "Printer code on a {N} euro bill" +msgstr[0] "" +msgstr[1] "" + +#: src/templates/coins-designs-de.html.tmpl:14 +msgid "German €0.01 coin" msgstr "" -#: src/templates/index.html.tmpl:15 -msgid "cash" +#: src/templates/coins-designs-de.html.tmpl:35 +msgctxt "Place Name" +msgid "Munich" +msgstr "München" + +#: src/templates/collecting-crh.html.tmpl:13 +msgid "" +"Coin roll hunting is a popular method of coin collecting in which you " +"withdraw cash from your bank in the form of coins and then search through " +"those coins to find new additions to your collection. Once you’ve searched " +"through all your coins, you will typically deposit your left over coins at " +"the bank and withdraw new coins." msgstr "" -#: src/templates/collecting.html.tmpl:18 -msgid "Euro Coin Collecting" +#: src/templates/collecting.html.tmpl:31 +msgid "Learn about collecting coins from coin rolls" msgstr "" -#: src/templates/coins-designs-nl.html.tmpl:41 -msgid "" -"The €1 and €2 coins featuring King Willem-Alexander were minted with a much " -"lower {Link:l}relief{-:E} than most euro coins of the same denomination. As " -"a result it is not uncommon for these coins to appear worn after little use " -"in circulation." +#: src/templates/banknotes-codes.html.tmpl:279 +msgctxt "Company Name" +msgid "SETEC" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:55 -msgid "2002 Series Printer Codes" -msgstr "2002-seriens skrivarkoder" +#: src/templates/coins-designs-ee.html.tmpl:120 +msgid "Jaan Meristo" +msgstr "" + +#: src/templates/coins-designs-ee.html.tmpl:152 +msgctxt "Coin Design" +msgid "Bird Road" +msgstr "Fågelväg" + +#: src/templates/coins-designs-ee.html.tmpl:178 +msgid "Margus Kadarik" +msgstr "" #: src/templates/collecting-crh.html.tmpl:54 msgid "" @@ -1038,141 +1118,217 @@ msgid "" "without being a customer by simply asking kindly at the bank." msgstr "" -#: src/templates/collecting-crh.html.tmpl:184 +#: src/templates/collecting-crh.html.tmpl:116 +msgctxt "Company Name" +msgid "KBC Bank" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:236 +msgctxt "Company Name" +msgid "Bank of Finland" +msgstr "" + +#: src/templates/coins-designs-hr.html.tmpl:25 msgid "" -"You can purchase commemorative coins — including those released years ago — " -"for face value." +"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)." msgstr "" -#: src/templates/collecting.html.tmpl:22 +#: src/templates/banknotes.html.tmpl:22 msgid "" "On this section of the site you can find everything there is to know about " -"collecting Euro coins. If this is a hobby that interests you, join the " -"Discord server linked at the top of the page!" +"the banknotes of the Eurozone." msgstr "" -#: src/templates/coins-designs-be.html.tmpl:26 -msgid "Belgian €1 coin (King Albert; Series 1)" +#: src/templates/coins-designs-ad.html.tmpl:17 +msgid "Andorran €2 coin" msgstr "" -#: src/templates/jargon.html.tmpl:51 +#: src/templates/banknotes-codes.html.tmpl:286 +#: src/templates/banknotes-codes.html.tmpl:404 +msgctxt "Company Name" +msgid "Oberthur" +msgstr "" + +#: src/templates/coins-mintages.html.tmpl:294 +msgctxt "Header/Label" +msgid "Unknown" +msgstr "Okänd" + +#: src/templates/collecting-storage.html.tmpl:84 +msgid "Coins in a reusable roll" +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:381 +msgid "Europa Series" +msgstr "Europa-serien" + +#: src/templates/coins.html.tmpl:39 +msgid "View the mintage figures of all the Euro coins" +msgstr "" + +#: src/templates/coins.html.tmpl:47 +msgid "View all the known Euro varieties" +msgstr "" + +#: src/templates/coins-designs-be.html.tmpl:34 +msgid "Belgian €1 coin (King Philippe)" +msgstr "" + +#: src/templates/coins-designs-ad.html.tmpl:16 +msgid "Andorran €1 coin" +msgstr "" + +#: src/templates/jargon.html.tmpl:42 msgid "" -"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." +"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." msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:275 -msgctxt "Company Name" -msgid "CIC" +#: src/templates/coins-designs-ee.html.tmpl:55 +msgid "Estonian Euro Coin Designs" msgstr "" -#: src/templates/collecting-crh.html.tmpl:278 -#: src/templates/collecting-crh.html.tmpl:286 +#: src/templates/-navbar.html.tmpl:48 +msgid "Jargon" +msgstr "" + +#: src/templates/collecting-vending.html.tmpl:13 msgid "" -"Free coin rolls if you are a customer or €1 per roll if you are not a " -"customer. There are coin roll machines." +"‘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." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:35 +#: src/templates/jargon.html.tmpl:19 msgid "" -"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." +"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." msgstr "" -#: src/templates/jargon.html.tmpl:34 -msgid "BU — Brilliantly Uncirculated" +#: src/templates/coins-designs-ee.html.tmpl:129 +msgid "Taavi Torim" msgstr "" -#: src/templates/jargon.html.tmpl:49 -msgid "PMD — Post-Mint Damage" +#: src/templates/collecting-crh.html.tmpl:17 +msgid "" +"This type of coin collecting is often called ‘coin roll hunting’ " +"(abbreviated to ‘CRH’) due to the fact that banks will often provide you " +"with coins in the form of paper-wrapped rolls. You may however find that " +"your coins come in plastic bags instead (common in countries like Ireland)." msgstr "" -#: src/templates/collecting-crh.html.tmpl:181 +#: src/templates/collecting-crh.html.tmpl:244 msgctxt "Company Name" -msgid "Bank of Estonia Museum" +msgid "Mint of Finland" msgstr "" -#: src/templates/language.html.tmpl:46 src/templates/language.html.tmpl:85 -msgid "Eurozone Languages" -msgstr "Eurozonens språk" +#: src/templates/collecting-crh.html.tmpl:271 +#: src/templates/collecting-crh.html.tmpl:293 +msgid "Coin rolls can be obtained with no fee. You must be a customer." +msgstr "" -#: src/templates/coins-designs-at.html.tmpl:18 -msgid "Austrian €0.02 coin" +#: src/templates/collecting.html.tmpl:56 +msgid "Learn about collecting coins from vending machines" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:32 +#: src/templates/coins-designs-hr.html.tmpl:13 +msgid "Croatian €0.01 coin" +msgstr "" + +#: src/templates/collecting-storage.html.tmpl:53 msgid "" -"The results of the design contest with a few modifications are what became " -"the coins that entered circulation in 2014. While each set of denominations " -"has its own design, all four designs prominently feature the name of the " -"Principality (‘ANDORRA’) along the outer portion of the design with the year " -"of issue written underneath." +"This is probably the most inexpensive way to store your coins. If you take " +"good care of the paper when opening 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." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:293 -#: src/templates/banknotes-codes.html.tmpl:425 -msgctxt "Company Name" -msgid "Austrian Banknote and Security Printing" -msgstr "Österrikisk sedel- och säkerhetstryckning" +#: src/templates/coins-designs-de.html.tmpl:43 +msgctxt "Place Name" +msgid "Karlsruhe" +msgstr "Karlsruhe" -#: src/templates/collecting-crh.html.tmpl:467 -msgid "Coin rolls are available for a fee of €7 + €0.35 per roll." +#: src/templates/coins-designs-ee.html.tmpl:73 +msgid "" +"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%)." msgstr "" -#: src/templates/about.html.tmpl:11 -msgid "Open Source" +#: src/templates/collecting-crh.html.tmpl:157 +msgid "Hand-rolled coin rolls can be obtained with no additional fees." msgstr "" -#: src/templates/coins-designs-at.html.tmpl:25 -msgid "Austrian €0.10 coin" +#: src/templates/collecting-vending.html.tmpl:26 +msgid "Rejected Stoppers and Coins" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:57 -msgid "All these images are taken from {Link:L}eurobilltracker.com{-:E}." +#: src/templates/coins-designs-ad.html.tmpl:24 +msgid "Andorran landscapes, nature, fauna and flora" msgstr "" -#. TRANSLATORS: As in ‘5 Euro Banknote’ -#: src/templates/banknotes-codes.html.tmpl:512 -msgid "{N} Euro" -msgid_plural "{N} Euro" -msgstr[0] "" -msgstr[1] "" +#: src/templates/coins-designs-ad.html.tmpl:35 +msgid "" +"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." +msgstr "" -#: src/templates/coins-mintages.html.tmpl:97 -msgctxt "Header/Label" -msgid "Circulation Coins" -msgstr "Cirkulationsmynt" +#: src/templates/jargon.html.tmpl:65 +msgid "Collector-Specific Terms" +msgstr "" -#: src/templates/collecting-crh.html.tmpl:414 -msgctxt "Company Name" -msgid "Central Bank of Malta" +#: src/templates/collecting-crh.html.tmpl:320 +msgid "" +"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)." msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:13 -msgid "Croatian €0.01 coin" +#: src/templates/-navbar.html.tmpl:47 +msgid "Banknotes" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:37 -msgid "" -"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." +#: src/templates/collecting-vending.html.tmpl:16 +msgid "The Test Coins" msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:269 -msgctxt "Company Name" -msgid "Caisse d’Épargne" +#: src/templates/coins-designs-hr.html.tmpl:29 +msgid "" +"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’." msgstr "" -#: src/templates/banknotes.html.tmpl:39 -msgid "Find out where your notes were printed" +#: src/templates/coins-designs-be.html.tmpl:39 +msgid "" +"Since 1999 Belgium has released three series of euro coins, with each series " +"having a single design repeated on all denominations. Starting in 1999 the " +"Belgian euro coins featured the portrait of King Albert II with the {Link:L}" +"royal monogram{-:E} in the outer ring of the coins." msgstr "" +#: src/templates/banknotes-codes.html.tmpl:45 +msgid "Printer Codes" +msgstr "Skrivarkoder" + #: src/templates/banknotes-codes.html.tmpl:314 #: src/templates/banknotes-codes.html.tmpl:446 #: src/templates/collecting-crh.html.tmpl:344 @@ -1180,103 +1336,159 @@ msgctxt "Company Name" msgid "Bank of Italy" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:104 -msgid "Lembit Lõhmus" +#: src/templates/banknotes-codes.html.tmpl:350 +msgctxt "Company Name" +msgid "Giesecke+Devrient" msgstr "" -#: src/templates/collecting-crh.html.tmpl:127 -msgid "" -"Rolls can be obtained with no fee when you order through their online " -"platform." +#: src/templates/banknotes-codes.html.tmpl:409 +msgctxt "Place Name" +msgid "Bulgaria" +msgstr "Bulgarien" + +#: src/templates/coins.html.tmpl:37 +msgid "Mintages" msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:291 -msgctxt "Company Name" -msgid "Crédit Agricole" +#: src/templates/-navbar.html.tmpl:46 +msgid "Coins" msgstr "" -#: src/templates/coins.html.tmpl:18 -msgid "Euro Coins" +#: src/templates/banknotes-codes.html.tmpl:343 +#: src/templates/banknotes-codes.html.tmpl:489 +#: src/templates/collecting-crh.html.tmpl:306 +msgctxt "Company Name" +msgid "Bank of Greece" msgstr "" -#: src/templates/-navbar.html.tmpl:45 -msgid "Coin Collecting" +#: src/templates/coins-designs-ee.html.tmpl:85 +#: src/templates/coins-designs-ee.html.tmpl:100 +#: src/templates/coins-designs-ee.html.tmpl:109 +#: src/templates/coins-designs-ee.html.tmpl:117 +#: src/templates/coins-designs-ee.html.tmpl:125 +#: src/templates/coins-designs-ee.html.tmpl:134 +#: src/templates/coins-designs-ee.html.tmpl:143 +#: src/templates/coins-designs-ee.html.tmpl:150 +#: src/templates/coins-designs-ee.html.tmpl:158 +#: src/templates/coins-designs-ee.html.tmpl:166 +#: src/templates/coins-designs-ee.html.tmpl:175 +msgctxt "Header/Label" +msgid "Position" +msgstr "Position" + +#. TRANSLATORS: ‘Estonian’ as in the language, not the nationality +#: src/templates/coins-designs-ee.html.tmpl:137 +msgctxt "Coin Design" +msgid "Estonian" +msgstr "Estniska" + +#: src/templates/coins-mintages.html.tmpl:99 +msgctxt "Header/Label" +msgid "NIFC and BU Coins" +msgstr "NIFC- och BU-mynt" + +#: src/templates/collecting-crh.html.tmpl:62 +msgid "" +"The Austrian National Bank does not distribute circulated rolls but sells " +"rolls of commemorative coins at face value on release as well as " +"uncirculated rolls for all denominations." msgstr "" -#: src/templates/coins-designs-be.html.tmpl:30 -msgid "Belgian €1 coin (King Albert; Series 2)" +#: src/templates/collecting-crh.html.tmpl:259 +msgid "" +"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." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:28 -msgid "Casa de la Vall" +#: src/templates/about.html.tmpl:13 +msgid "" +"This website is an open project, and a collaboration between developers, " +"translators, and researchers. All source code, data, images, and more for " +"the website are open source and can be found {LinkGit:L}here{-:E}. This site " +"is licensed under the {LinkBSD:L}BSD Zero Clause License{-:E} giving you the " +"full freedom to do whatever you would like with any of the content on this " +"site." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:482 -msgctxt "Company Name" -msgid "Giesecke+Devrient Munich" +#: src/templates/coins.html.tmpl:45 +msgid "Varieties" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:90 -#: src/templates/coins-designs-ee.html.tmpl:104 -#: src/templates/coins-designs-ee.html.tmpl:112 -#: src/templates/coins-designs-ee.html.tmpl:120 -#: src/templates/coins-designs-ee.html.tmpl:129 -#: src/templates/coins-designs-ee.html.tmpl:138 -#: src/templates/coins-designs-ee.html.tmpl:145 -#: src/templates/coins-designs-ee.html.tmpl:153 -#: src/templates/coins-designs-ee.html.tmpl:161 -#: src/templates/coins-designs-ee.html.tmpl:170 -#: src/templates/coins-designs-ee.html.tmpl:178 -msgctxt "Header/Label" -msgid "Author(s)" -msgstr "Författare" +#: src/templates/collecting-vending.html.tmpl:23 +msgid "" +"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." +msgstr "" -#: src/templates/banknotes-codes.html.tmpl:364 -#: src/templates/banknotes-codes.html.tmpl:496 -#: src/templates/collecting-crh.html.tmpl:99 -msgctxt "Company Name" -msgid "National Bank of Belgium" +#: src/templates/jargon.html.tmpl:29 +msgid "AU — Almost Uncirculated" msgstr "" #. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:283 +#: src/templates/collecting-crh.html.tmpl:456 msgctxt "Company Name" -msgid "Crédit Mutuel" +msgid "ABN AMRO" msgstr "" -#: src/templates/collecting-crh.html.tmpl:459 +#: src/templates/index.html.tmpl:22 msgid "" -"Coin rolls are available for a fee of €0.30 per roll. You must withdraw " -"between 10–20 rolls." +"Welcome to the Euro Cash Wiki! This sites aims to be a resource for you to " +"discover everything there is to know about the coins and banknotes of the " +"Euro, a currency that spans 26 countries and 350 million people. We also " +"have dedicated sections of the site for collectors." msgstr "" -#: src/templates/-error.html.tmpl:15 +#: src/templates/coins-designs-at.html.tmpl:25 +msgid "Austrian €0.10 coin" +msgstr "" + +#: src/templates/coins-designs-at.html.tmpl:34 +msgid "Austrian €2 coin" +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:88 +msgid "2002 Series" +msgstr "2002-serien" + +#: src/templates/collecting-crh.html.tmpl:104 msgid "" -"If this issue persists, don’t hesitate to contact ‘@onetruemangoman’ on " -"Discord or to email us at {Email:e}" +"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." msgstr "" -#: src/templates/coins-designs-at.html.tmpl:19 -msgid "Austrian €0.05 coin" +#: src/templates/collecting-crh.html.tmpl:500 +msgctxt "Company Name" +msgid "Bank of Slovenia" msgstr "" -#: src/templates/collecting-crh.html.tmpl:34 +#: src/templates/coins-designs-ad.html.tmpl:45 +msgid "The rejected Andorran design" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:215 msgid "" -"In some countries such as Austria it is even common to be able to withdraw " -"new coins from your account using other coins." +"Coin rolls have a fee of €2 for 5 rolls. This seems to vary by location." msgstr "" -#: src/templates/language.html.tmpl:47 src/templates/language.html.tmpl:90 -msgid "Other Languages" -msgstr "Andra språk" +#: src/templates/collecting-crh.html.tmpl:351 +msgctxt "Company Name" +msgid "Banca di Cambiano" +msgstr "" -#: src/templates/collecting.html.tmpl:31 -msgid "Learn about collecting coins from coin rolls" +#: src/templates/collecting-crh.html.tmpl:474 +msgid "Coin rolls are available for a fee of €7 + €0.50 per roll." msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:18 -msgid "Croatian €2 coin" +#: src/templates/collecting-vending.html.tmpl:61 +msgid "" +"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." msgstr "" #: src/templates/coins-designs-nl.html.tmpl:33 @@ -1289,185 +1501,186 @@ msgid "" "coins of many monarchies around the world." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:23 -msgid "€0.01, €0.02 and €0.05" -msgstr "" +#: src/templates/coins-designs-ee.html.tmpl:88 +#: src/templates/coins-designs-ee.html.tmpl:98 +msgctxt "Header/Label" +msgid "Translation" +msgstr "Översättning" -#: src/templates/collecting-crh.html.tmpl:164 +#: src/templates/collecting-crh.html.tmpl:363 msgid "" -"Coin rolls can be obtained for a fee of €0.50–€1.50 per roll. The amount " -"varies per branch." +"Allegedly, coin rolls are only available for businesses, but this needs " +"additional confirmation." msgstr "" -#: src/templates/collecting-crh.html.tmpl:247 +#: src/templates/collecting-vending.html.tmpl:78 msgid "" -"The Mint of Finland ceased all operations in late 2024 but still sells coins " -"on their website." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:259 -msgid "" -"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." +#: src/templates/collecting.html.tmpl:39 +msgid "Learn about the different methods to storing your collection" msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:33 +#: src/templates/banknotes-codes.html.tmpl:257 msgid "" -"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)." +"The first letter of the printer code can be used to identify the specific " +"printer at which the banknote was printed. The printer and country codes do " +"not need to line up; a banknote issued by a country will often be printed in " +"another." msgstr "" -#: src/templates/coins-designs-be.html.tmpl:21 -msgid "Belgian Euro Coin Designs" +#: src/templates/collecting-crh.html.tmpl:232 +msgid "" +"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)." msgstr "" -#: src/templates/jargon.html.tmpl:54 -msgid "Relief" +#: src/dbx/sql/last.sql:138 src/dbx/sql/last.sql:141 src/dbx/sql/last.sql:144 +#: src/dbx/sql/last.sql:147 src/dbx/sql/last.sql:150 src/dbx/sql/last.sql:153 +#: src/dbx/sql/last.sql:154 src/dbx/sql/last.sql:157 +msgctxt "CC Name" +msgid "EU Flag" +msgstr "EU-flaggan" + +#: src/templates/-404.html.tmpl:8 +msgid "Page Not Found" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:475 +#: src/templates/banknotes-codes.html.tmpl:336 +#: src/templates/banknotes-codes.html.tmpl:468 +#: src/templates/collecting-crh.html.tmpl:198 msgctxt "Company Name" -msgid "Giesecke+Devrient Leipzig" +msgid "Royal Mint of Spain" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:73 -msgid "" -"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%)." +#: src/templates/coins-designs-ee.html.tmpl:104 +msgid "Lembit Lõhmus" msgstr "" -#: src/templates/collecting-crh.html.tmpl:487 +#: src/templates/collecting-crh.html.tmpl:419 msgctxt "Company Name" -msgid "Banco Comercial Português" +msgid "Bank of Valletta" msgstr "" -#: src/templates/jargon.html.tmpl:65 -msgid "Collector-Specific Terms" +#: src/templates/collecting-crh.html.tmpl:119 +msgid "Rolls can be obtained with no fee by customers only" msgstr "" -#: src/templates/coins-mintages.html.tmpl:294 -msgctxt "Header/Label" -msgid "Unknown" -msgstr "Okänd" - -#: src/templates/collecting-crh.html.tmpl:363 +#: src/templates/collecting-crh.html.tmpl:326 msgid "" -"Allegedly, coin rolls are only available for businesses, but this needs " -"additional confirmation." +"We currently have no information regarding coin roll hunting in Croatia." msgstr "" -#: src/templates/collecting-crh.html.tmpl:483 -msgid "Coin bags are sold with no additional fees to everyone." -msgstr "" +#: src/dbx/sql/last.sql:155 +msgctxt "CC Name" +msgid "Peace and security" +msgstr "Fred och säkerhet" -#: src/templates/collecting-crh.html.tmpl:503 +#: src/templates/coins-designs-at.html.tmpl:12 msgid "" -"You can purchase commemorative coins for face value, and coin rolls are sold " -"with no fees to everyone." +"The Austrian euro coins can be grouped into three different themes. The " +"bronze coins feature Austrian flowers, the gold coins feature Austrian " +"architecture and the bimetalic coins feature famous Austrian people. All " +"coins also feature an Austrian flag as well as the coins denomination. These " +"coins together with the {Link:l}Greek euro coins{-:E} are the only coins " +"that feature the denomination on both the common and national sides of the " +"coin." msgstr "" -#: src/templates/index.html.tmpl:9 -msgid "The Euro Cash Wiki" +#: src/templates/coins-designs-ad.html.tmpl:13 +msgid "Andorran €0.50 coin" msgstr "" -#: src/templates/coins.html.tmpl:22 -msgid "" -"On this section of the site you can find everything there is to know about " -"the coins of the Eurozone." +#: src/templates/jargon.html.tmpl:59 +msgid "UNC — Uncirculated" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:45 -msgid "The rejected Andorran design" +#: src/templates/collecting-storage.html.tmpl:35 +msgid "" +"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 reuse, something not typically possible with coin flips." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:88 -#: src/templates/coins-designs-ee.html.tmpl:98 +#: src/templates/coins-mintages.html.tmpl:101 msgctxt "Header/Label" -msgid "Translation" -msgstr "Översättning" - -#: src/templates/coins-mintages.html.tmpl:39 -msgid "" -"Here you’ll be able to view all the known mintages for all coins. You’ll " -"also be able to filter on country, denomination, etc. If you have any " -"mintage data that’s missing from our site, feel free to contact us." -msgstr "" +msgid "Proof Coins" +msgstr "Proofmynt" -#: src/templates/collecting-crh.html.tmpl:24 -msgid "Getting Started" -msgstr "Komma igång" +#: src/templates/coins-mintages.html.tmpl:104 +msgctxt "Header/Label" +msgid "Filter" +msgstr "Filtrera" -#: src/templates/coins-designs-de.html.tmpl:19 +#: src/templates/collecting-crh.html.tmpl:531 msgid "" -"The German euro coins feature three different designs. A unique feature of " -"German euro coins are the mint marks on each coin that denote in which city " -"a given coin was minted. Germany has five active mints that produce Euro " -"coins, which are denoted in the table below." +"Ask the Pope nicely and he’ll probably give you some Vatican coins for free." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:47 -msgctxt "Place Name" -msgid "Hamburg" -msgstr "Hamburg" - -#: src/templates/coins-mintages.html.tmpl:43 -msgid "Additional Notes" +#: src/templates/collecting-storage.html.tmpl:17 +msgid "" +"Coin albums are one of the most popular ways of storing coins. In a coin " +"album you have multiple coin sheets. These sheets are plastic pages with " +"slots that you can put your coins 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." msgstr "" -#: src/templates/about.html.tmpl:13 -msgid "" -"This website is an open project, and a collaboration between developers, " -"translators, and researchers. All source code, data, images, and more for " -"the website are open source and can be found {LinkGit:L}here{-:E}. This site " -"is licensed under the {LinkBSD:L}BSD Zero Clause License{-:E} giving you the " -"full freedom to do whatever you would like with any of the content on this " -"site." +#: src/templates/collecting-crh.html.tmpl:203 +msgctxt "Company Name" +msgid "Santander Bank" msgstr "" -#: src/templates/collecting-crh.html.tmpl:215 -msgid "" -"Coin rolls have a fee of €2 for 5 rolls. This seems to vary by location." +#: src/templates/collecting-crh.html.tmpl:377 +msgid "Fee of €2 per roll of 2 euro coins." msgstr "" -#: src/templates/collecting-crh.html.tmpl:309 -msgid "" -"{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)." +#: src/templates/collecting-crh.html.tmpl:383 +msgctxt "Company Name" +msgid "Central Bank of Luxembourg" msgstr "" -#: src/templates/collecting-crh.html.tmpl:8 -#: src/templates/collecting.html.tmpl:29 -msgid "Coin Roll Hunting" -msgstr "Myntrullejakt" +#: src/dbx/sql/last.sql:136 src/dbx/sql/last.sql:139 src/dbx/sql/last.sql:142 +#: src/dbx/sql/last.sql:145 src/dbx/sql/last.sql:148 +msgctxt "CC Name" +msgid "Hessen" +msgstr "Hessen" -#: src/templates/coins-designs-ee.html.tmpl:55 -msgid "Estonian Euro Coin Designs" +#: src/templates/jargon.html.tmpl:54 +msgid "Relief" msgstr "" -#: src/templates/coins-mintages.html.tmpl:46 +#: src/templates/collecting-storage.html.tmpl:12 msgid "" -"Most coins from the years 2003–2016 are listed as NIFC coins while other " -"popular sources such as Numista claim they were minted for circulation. For " -"more information on why others are wrong, {Link:l}click here{-:E}." +"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." msgstr "" -#: src/templates/coins-mintages.html.tmpl:54 +#: src/templates/banknotes-codes.html.tmpl:267 +#: src/templates/banknotes-codes.html.tmpl:393 msgctxt "Header/Label" -msgid "Filter Method" -msgstr "Filtermetod" +msgid "Printer" +msgstr "Skrivare" -#: src/templates/collecting-crh.html.tmpl:66 -msgctxt "Company Name" -msgid "Bank Austria" -msgstr "" +#: src/templates/coins-mintages.html.tmpl:191 +#: src/templates/coins-mintages.html.tmpl:228 +msgctxt "Header/Label" +msgid "Mintage" +msgstr "Myntning" -#: src/templates/collecting-crh.html.tmpl:217 -msgid "Madrid" +#: src/templates/collecting-crh.html.tmpl:143 +msgid "" +"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." msgstr "" #: src/templates/collecting-crh.html.tmpl:226 @@ -1476,235 +1689,233 @@ msgid "" "need to be a customer, but this needs to be verified." msgstr "" -#: src/templates/collecting-crh.html.tmpl:367 -msgctxt "Company Name" -msgid "ExchangeLT" -msgstr "" - -#: src/templates/coins-designs-at.html.tmpl:8 -msgid "Austrian Euro Coin Designs" -msgstr "" - -#: src/templates/coins-designs-de.html.tmpl:15 -msgid "German €0.10 coin" +#: src/templates/collecting-crh.html.tmpl:240 +msgid "" +"It is probably not possible to obtain coin rolls, but this is not confirmed." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:35 -msgctxt "Place Name" -msgid "Munich" -msgstr "München" +#: src/templates/banknotes-codes.html.tmpl:321 +#: src/templates/banknotes-codes.html.tmpl:453 +#: src/templates/collecting-crh.html.tmpl:336 +msgctxt "Company Name" +msgid "Central Bank of Ireland" +msgstr "Irlands Centralbank" -#: src/templates/collecting-crh.html.tmpl:30 +#: src/templates/coins-designs-de.html.tmpl:19 msgid "" -"It is also important to find details regarding the deposit of coins. " -"Depositing coins often also requires the payment of a fee — one which is " -"typically more expensive than the withdrawal fees. If depositing your coins " -"is too expensive you can always exchange your left over coins at shops for " -"banknotes. It is often cheaper (or even free) to deposit banknotes." +"The German euro coins feature three different designs. A unique feature of " +"German euro coins are the mint marks on each coin that denote in which city " +"a given coin was minted. Germany has five active mints that produce Euro " +"coins, which are denoted in the table below." msgstr "" -#. TRANSLATORS: On the German page the filter is called ‘Münzrollengeber’. For other languages we link to the English site, so mention the English filter name surrounded by ‘{EnglishStart:r}’ and ‘{EnglishEnd:E}’, and also translate it in parenthesis to your language. For example the Swedish page might say: ‘”{EnglishStart:r}coin roll dispenser{EnglishEnd:E}” (svenska: ”myntrullsautomat”)’ -#: src/templates/collecting-crh.html.tmpl:73 -msgid "" -"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}." +#: src/templates/coins-designs-ee.html.tmpl:112 +#: src/templates/coins-designs-ee.html.tmpl:153 +msgid "Tiit Jürna" msgstr "" -#: src/templates/collecting-crh.html.tmpl:232 +#: src/templates/collecting-crh.html.tmpl:82 msgid "" -"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)." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:240 -msgid "" -"It is probably not possible to obtain coin rolls, but this is not confirmed." +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:109 +msgctxt "Company Name" +msgid "Argenta" msgstr "" -#: src/templates/collecting-crh.html.tmpl:271 -#: src/templates/collecting-crh.html.tmpl:293 -msgid "Coin rolls can be obtained with no fee. You must be a customer." +#: src/templates/collecting-crh.html.tmpl:317 +msgctxt "Company Name" +msgid "Piraeus Bank" msgstr "" -#: src/templates/-error.html.tmpl:12 +#: src/templates/coins-designs-ad.html.tmpl:50 msgid "" -"If you’re seeing this page, it means that something went wrong on our end " -"that we need to fix. Our team has been notified of this error, and we " -"apologise for the inconvenience." +"The Andorran 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." msgstr "" -#: src/templates/jargon.html.tmpl:19 -msgid "" -"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." +#: src/templates/jargon.html.tmpl:27 +msgid "General Terms" msgstr "" -#: src/templates/jargon.html.tmpl:36 -msgid "" -"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." -msgstr "" +#: src/templates/banknotes-codes.html.tmpl:305 +msgctxt "Place Name" +msgid "United Kingdom" +msgstr "Storbritannien" #: src/templates/coins-designs-de.html.tmpl:26 msgctxt "Header/Label" msgid "Mintmark" msgstr "Myntmärke" -#: src/templates/coins-mintages.html.tmpl:35 -msgid "Euro Coin Mintages" -msgstr "" - -#: src/templates/coins-mintages.html.tmpl:99 -msgctxt "Header/Label" -msgid "NIFC and BU Coins" -msgstr "NIFC- och BU-mynt" - -#: src/templates/coins-mintages.html.tmpl:190 -#: src/templates/coins-mintages.html.tmpl:227 +#: src/templates/coins-designs-ee.html.tmpl:185 msgctxt "Header/Label" -msgid "Commemorated Topic" -msgstr "Minnesämne" +msgid "Total" +msgstr "Totalt" #. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:109 +#: src/templates/collecting-crh.html.tmpl:124 msgctxt "Company Name" -msgid "Argenta" +msgid "Belfius" msgstr "" -#: src/templates/collecting.html.tmpl:37 -msgid "Coin Storage" -msgstr "Myntförvaring" +#: src/templates/collecting-crh.html.tmpl:133 +msgctxt "Company Name" +msgid "Bank of Cyprus" +msgstr "" -#: src/templates/jargon.html.tmpl:61 +#: src/templates/collecting-crh.html.tmpl:161 +msgctxt "Company Name" +msgid "Sparkasse" +msgstr "" + +#: src/templates/collecting-vending.html.tmpl:33 +msgid "We generally identify between two main types of vending machines." +msgstr "" + +#: src/templates/coins-designs-ad.html.tmpl:8 +msgid "Andorran Euro Coin Designs" +msgstr "" + +#: src/templates/jargon.html.tmpl:36 msgid "" -"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." +"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." msgstr "" -#: src/templates/coins-designs.html.tmpl:25 -msgid "Euro Coin Designs" -msgstr "Euromyntdesigner" +#: src/templates/coins-designs-de.html.tmpl:57 +msgid "" +"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." +msgstr "" -#: src/templates/coins-designs-de.html.tmpl:65 +#: src/templates/coins-designs-ee.html.tmpl:69 msgid "" -"The €2 coin also features an edge-inscription of Germany’s national motto " -"and incipit of Germany’s national anthem. It reads ‘{GermanStart:r}EINIGKEIT " -"UND RECHT UND FREIHEIT{GermanEnd:E}’ (English: ‘UNITY AND JUSTICE AND " -"FREEDOM’)." +"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." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:87 -#: src/templates/coins-designs-ee.html.tmpl:97 -#: src/templates/coins-designs-ee.html.tmpl:144 -msgctxt "Header/Label" -msgid "Name" -msgstr "Namn" +#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script +#: src/templates/coins-designs-ee.html.tmpl:128 +msgctxt "Coin Design" +msgid "Tomson 5791" +msgstr "Tomson 5791" -#: src/templates/coins-designs-ee.html.tmpl:112 -#: src/templates/coins-designs-ee.html.tmpl:153 -msgid "Tiit Jürna" +#: src/templates/collecting-crh.html.tmpl:218 +msgid "Coin rolls have no fees." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:120 -msgid "Jaan Meristo" +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:223 +msgctxt "Company Name" +msgid "La Caixa" msgstr "" -#: src/templates/collecting-crh.html.tmpl:21 +#: src/templates/collecting-vending.html.tmpl:58 msgid "" -"Depending on your bank and branch, the process of obtaining coins may " -"differ. Some banks require you speak to a teller while others have coin " -"machines. Some banks may also require that you are a customer or even that " -"you have a business account. If you aren’t sure about if you can get coins " -"we suggest you contact your bank, although further down this page we also " -"have additional information about the withdrawal of coins in various " -"countries and major banks." +"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." msgstr "" -#: src/templates/jargon.html.tmpl:42 +#: src/templates/coins-designs-hr.html.tmpl:21 msgid "" -"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." +"The Croatian euro coins feature four different themes, with each design " +"featuring the Croatian checkerboard and the country’s name in Croatian " +"(‘{CroatianStart:r}HRVATSKA{CroatianEnd:E}’). All designs were selected " +"after voting in a public design competition." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:279 -msgctxt "Company Name" -msgid "SETEC" +#: src/templates/coins-designs-ad.html.tmpl:26 +msgid "Andorra’s Romanesque art" msgstr "" -#: src/templates/coins-designs-de.html.tmpl:31 -msgctxt "Place Name" -msgid "Berlin" -msgstr "Berlin" +#: src/templates/collecting-crh.html.tmpl:37 +msgid "Country-Specific Details" +msgstr "Landsspecifika detaljer" -#: src/templates/collecting-crh.html.tmpl:112 +#: src/templates/collecting-crh.html.tmpl:313 msgid "" -"There is a €1.50 fee per transaction with no limit on the number of rolls " -"you may take." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:143 +#: src/templates/collecting-crh.html.tmpl:332 msgid "" -"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." +"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." msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:464 +#: src/templates/collecting-crh.html.tmpl:370 +msgid "Coin rolls are available with a fee of 5%." +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:374 msgctxt "Company Name" -msgid "ING" +msgid "Top Exchange" msgstr "" -#: src/templates/collecting-crh.html.tmpl:474 -msgid "Coin rolls are available for a fee of €7 + €0.50 per roll." +#. TRANSLATORS: Beginning of sentence, as in ‘United in …’ +#: src/templates/index.html.tmpl:13 +msgid "United in" msgstr "" -#: src/templates/coins-designs-be.html.tmpl:57 -msgid "" -"In 2008 a second series of coins was released featuring a slightly modified " -"design in which the royal monogram was moved to the inner portion of the " -"coin along with the year of mintage in order to comply with the European " -"Commission’s guidelines. The country code ‘BE’ was also added to the design " -"underneath the royal monogram. The 2008 redesign also saw the use of a " -"slightly modified portrait of the King, but this design change was reverted " -"in 2009." +#: src/templates/collecting-vending.html.tmpl:40 +msgid "Non-Merging" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:516 -msgid "Printer code on a {N} euro bill" -msgid_plural "Printer code on a {N} euro bill" -msgstr[0] "" -msgstr[1] "" +#: src/templates/coins-designs-ee.html.tmpl:87 +#: src/templates/coins-designs-ee.html.tmpl:97 +#: src/templates/coins-designs-ee.html.tmpl:144 +msgctxt "Header/Label" +msgid "Name" +msgstr "Namn" -#: src/templates/coins-designs-de.html.tmpl:60 -msgid "" -"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." +#: src/templates/coins-mintages.html.tmpl:110 +#: src/templates/coins-mintages.html.tmpl:148 +msgid "Standard Issue Coins" msgstr "" -#: src/templates/collecting-crh.html.tmpl:39 +#: src/templates/collecting-crh.html.tmpl:164 msgid "" -"Below you can find country-specific details we have regarding obtaining coin " -"rolls. We lack a lot of information for many of the countries, so if you " -"have any additional information such as your banks fees, the availability of " -"coin roll machines, etc. feel free to contact us! You can find our contact " -"information {Link:l}here{-:E}." +"Coin rolls can be obtained for a fee of €0.50–€1.50 per roll. The amount " +"varies per branch." msgstr "" -#: src/templates/collecting-crh.html.tmpl:154 +#: src/templates/collecting-crh.html.tmpl:205 +msgid "Coin rolls are free but you must be a customer." +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:360 msgctxt "Company Name" -msgid "German Post" +msgid "Bank of Lithuania" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:396 +msgid "You should be able to get coin rolls with no additional fees." +msgstr "" + +#: src/templates/-navbar.html.tmpl:44 +msgid "News" +msgstr "" + +#: src/templates/coins-designs-nl.html.tmpl:8 +msgid "Dutch Euro Coin Designs" msgstr "" #: src/templates/collecting-crh.html.tmpl:193 @@ -1714,392 +1925,449 @@ msgid "" "do it." msgstr "" -#: src/templates/collecting-crh.html.tmpl:426 -msgctxt "Company Name" -msgid "HSBC Bank Malta" +#: src/templates/collecting-crh.html.tmpl:422 +#: src/templates/collecting-crh.html.tmpl:429 +msgid "" +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:448 +#: src/templates/collecting-crh.html.tmpl:516 msgctxt "Company Name" -msgid "The Dutch Central Bank" +msgid "Tatra banka" msgstr "" -#: src/templates/-navbar.html.tmpl:56 -msgid "About" -msgstr "" +#: src/dbx/sql/last.sql:156 +msgctxt "CC Name" +msgid "Fête de la Fédération" +msgstr "Federationsdagen" -#: src/templates/coins-designs-hr.html.tmpl:17 -msgid "Croatian €1 coin" +#: src/templates/-navbar.html.tmpl:45 +msgid "Coin Collecting" msgstr "" -#: src/templates/banknotes.html.tmpl:31 -msgid "View the different Euro banknote designs" +#: src/templates/collecting-vending.html.tmpl:36 +msgid "Merging" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:152 -msgctxt "Coin Design" -msgid "Bird Road" -msgstr "Fågelväg" - -#: src/templates/language.html.tmpl:45 src/templates/language.html.tmpl:79 -msgid "Select Your Language" -msgstr "Välj ditt språk" +#: src/templates/collecting-vending.html.tmpl:46 +msgid "Limits" +msgstr "" -#: src/templates/coins.html.tmpl:47 -msgid "View all the known Euro varieties" +#: src/templates/collecting-vending.html.tmpl:64 +msgid "" +"For information on Austrian cigarette machines, see the ‘{LinkStart:r}" +"Cigarette Machines{LinkEnd:E}’ section." msgstr "" -#: src/templates/jargon.html.tmpl:39 -msgid "NIFC — Not Intended For Circulation" +#: src/templates/coins-designs-at.html.tmpl:8 +msgid "Austrian Euro Coin Designs" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:90 -msgid "" -"In the 2002 series, the first letter of the serial number can be used to " -"identify the country that issued the banknote. The following table shows " -"which countries map to which codes." +#: src/templates/banknotes-codes.html.tmpl:357 +#: src/templates/banknotes-codes.html.tmpl:439 +msgctxt "Company Name" +msgid "Federal Printing Office" msgstr "" -#: src/templates/coins-mintages.html.tmpl:104 -msgctxt "Header/Label" -msgid "Filter" -msgstr "Filtrera" +#: src/templates/collecting-crh.html.tmpl:181 +msgctxt "Company Name" +msgid "Bank of Estonia Museum" +msgstr "" -#: src/templates/collecting-crh.html.tmpl:93 -msgid "" -"There is a fee of €1 per roll if you aren’t a customer and €0.30 otherwise. " -"Coin deposits are free for customers." +#: src/templates/collecting-crh.html.tmpl:414 +msgctxt "Company Name" +msgid "Central Bank of Malta" msgstr "" -#: src/templates/collecting-crh.html.tmpl:519 -msgid "" -"You can get an unlimited number of rolls for a €5 fee. You must be a " -"customer of the bank." +#: src/templates/collecting-vending.html.tmpl:71 +msgid "Cigarette Machines" msgstr "" -#: src/templates/-navbar.html.tmpl:97 -msgid "Language" +#: src/templates/jargon.html.tmpl:39 +msgid "NIFC — Not Intended For Circulation" msgstr "" -#: src/templates/coins-designs-be.html.tmpl:39 +#: src/templates/collecting-crh.html.tmpl:21 msgid "" -"Since 1999 Belgium has released three series of euro coins, with each series " -"having a single design repeated on all denominations. Starting in 1999 the " -"Belgian euro coins featured the portrait of King Albert II with the {Link:L}" -"royal monogram{-:E} in the outer ring of the coins." +"Depending on your bank and branch, the process of obtaining coins may " +"differ. Some banks require you speak to a teller while others have coin " +"machines. Some banks may also require that you are a customer or even that " +"you have a business account. If you aren’t sure about if you can get coins " +"we suggest you contact your bank, although further down this page we also " +"have additional information about the withdrawal of coins in various " +"countries and major banks." msgstr "" -#: src/templates/jargon.html.tmpl:15 -msgid "Euro Cash Jargon" +#: src/templates/collecting-crh.html.tmpl:509 +msgctxt "Company Name" +msgid "National Bank of Slovakia" msgstr "" -#: src/templates/-base.html.tmpl:55 -msgid "Feel free to contact us!" +#: src/templates/collecting-storage.html.tmpl:44 +msgid "" +"Coin flips, also known as ‘2×2’ 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." msgstr "" -#: src/templates/banknotes-codes.html.tmpl:343 -#: src/templates/banknotes-codes.html.tmpl:489 -#: src/templates/collecting-crh.html.tmpl:306 -msgctxt "Company Name" -msgid "Bank of Greece" +#: src/templates/banknotes-codes.html.tmpl:57 +msgid "All these images are taken from {Link:L}eurobilltracker.com{-:E}." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:178 -msgid "Margus Kadarik" +#: src/templates/banknotes-codes.html.tmpl:383 +msgid "" +"In the Europa series the first letter of the serial number can be used to " +"identify the printer that printed the banknote, just like the printer code. " +"The following table shows which countries map to which codes." msgstr "" -#: src/templates/coins-mintages.html.tmpl:101 +#: src/templates/coins-designs-ee.html.tmpl:160 +msgctxt "Coin Design" +msgid "Leopards-2" +msgstr "Leoparder-2" + +#: src/templates/coins-mintages.html.tmpl:97 msgctxt "Header/Label" -msgid "Proof Coins" -msgstr "Proofmynt" +msgid "Circulation Coins" +msgstr "Cirkulationsmynt" -#: src/templates/collecting-crh.html.tmpl:320 +#: src/templates/collecting-crh.html.tmpl:459 msgid "" -"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)." +"Coin rolls are available for a fee of €0.30 per roll. You must withdraw " +"between 10–20 rolls." msgstr "" -#: src/templates/index.html.tmpl:14 -msgid "diversity" +#: src/templates/coins-designs-be.html.tmpl:21 +msgid "Belgian Euro Coin Designs" msgstr "" -#: src/templates/coins-designs-be.html.tmpl:34 -msgid "Belgian €1 coin (King Philippe)" +#: src/templates/coins-designs-ee.html.tmpl:91 +#: src/templates/coins-designs-ee.html.tmpl:105 +#: src/templates/coins-designs-ee.html.tmpl:113 +#: src/templates/coins-designs-ee.html.tmpl:121 +#: src/templates/coins-designs-ee.html.tmpl:130 +#: src/templates/coins-designs-ee.html.tmpl:139 +#: src/templates/coins-designs-ee.html.tmpl:146 +#: src/templates/coins-designs-ee.html.tmpl:154 +#: src/templates/coins-designs-ee.html.tmpl:162 +#: src/templates/coins-designs-ee.html.tmpl:171 +#: src/templates/coins-designs-ee.html.tmpl:179 +msgctxt "Header/Label" +msgid "Votes" +msgstr "Röster" + +#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script +#: src/templates/coins-designs-ee.html.tmpl:103 +msgctxt "Coin Design" +msgid "Hara 2" +msgstr "Hara 2" + +#: src/templates/collecting-vending.html.tmpl:55 +msgid "Maximum Change Limit" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:16 -msgid "Andorran €1 coin" +#: src/templates/coins-designs-ad.html.tmpl:23 +msgid "€0.01, €0.02 and €0.05" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:69 +#: src/templates/jargon.html.tmpl:31 msgid "" -"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." +"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)." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:119 -msgctxt "Coin Design" -msgid "In the Body" -msgstr "I kroppen" - -#: src/templates/coins-designs-ee.html.tmpl:161 -msgid "Jaarno Ester" +#: src/templates/collecting-storage.html.tmpl:56 +msgid "Examples" msgstr "" -#: src/templates/collecting-crh.html.tmpl:419 +#: src/templates/banknotes-codes.html.tmpl:307 msgctxt "Company Name" -msgid "Bank of Valletta" +msgid "De La Rue" msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:24 -msgid "Andorran landscapes, nature, fauna and flora" +#: src/templates/coins-designs-de.html.tmpl:54 +msgid "" +"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." msgstr "" -#: src/templates/coins-designs-at.html.tmpl:17 -msgid "Austrian €0.01 coin" +#: src/templates/coins-designs-de.html.tmpl:60 +msgid "" +"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." msgstr "" -#: src/templates/coins-designs-ad.html.tmpl:17 -msgid "Andorran €2 coin" +#: src/templates/collecting-crh.html.tmpl:34 +msgid "" +"In some countries such as Austria it is even common to be able to withdraw " +"new coins from your account using other coins." msgstr "" -#: src/templates/-base.html.tmpl:11 -msgid "Euro Cash Wiki" +#: src/templates/collecting-vending.html.tmpl:51 +msgid "Maximum Input Limit" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:98 -#: src/templates/banknotes-codes.html.tmpl:141 -#: src/templates/banknotes-codes.html.tmpl:185 -#: src/templates/banknotes-codes.html.tmpl:265 -#: src/templates/banknotes-codes.html.tmpl:391 -#: src/templates/coins-mintages.html.tmpl:56 -#: src/templates/coins-mintages.html.tmpl:62 -#: src/templates/coins-mintages.html.tmpl:152 -#: src/templates/coins-mintages.html.tmpl:226 -msgctxt "Header/Label" -msgid "Country" -msgstr "Land" - -#: src/templates/collecting-crh.html.tmpl:190 -msgctxt "Company Name" -msgid "Bank of Spain" +#: src/templates/index.html.tmpl:9 +msgid "The Euro Cash Wiki" msgstr "" -#: src/templates/about.html.tmpl:8 -msgid "About Us" +#: src/templates/-navbar.html.tmpl:53 +msgid "Discord" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:286 -#: src/templates/banknotes-codes.html.tmpl:404 -msgctxt "Company Name" -msgid "Oberthur" +#: src/templates/jargon.html.tmpl:34 +msgid "BU — Brilliantly Uncirculated" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:383 -msgid "" -"In the Europa series the first letter of the serial number can be used to " -"identify the printer that printed the banknote, just like the printer code. " -"The following table shows which countries map to which codes." +#: src/templates/banknotes-codes.html.tmpl:482 +msgctxt "Company Name" +msgid "Giesecke+Devrient Munich" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:65 -msgid "" -"The Estonian euro coins feature the same design across all eight " -"denominations. The country’s outline is prominently displayed above the " -"country’s name in Estonian (‘{EstonianStart:r}EESTI{EstonianEnd:E}’)." +#: src/templates/coins-designs-de.html.tmpl:16 +msgid "German €1 coin" msgstr "" -#: src/templates/collecting-crh.html.tmpl:509 +#: src/templates/collecting-crh.html.tmpl:79 msgctxt "Company Name" -msgid "National Bank of Slovakia" +msgid "Erste Bank" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:305 -msgctxt "Place Name" -msgid "United Kingdom" -msgstr "Storbritannien" - -#: src/templates/coins-designs-ee.html.tmpl:129 -msgid "Taavi Torim" +#: src/templates/collecting-crh.html.tmpl:190 +msgctxt "Company Name" +msgid "Bank of Spain" msgstr "" -#: src/templates/collecting-crh.html.tmpl:332 +#: src/templates/collecting-vending.html.tmpl:18 msgid "" -"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." +"First, you want to make sure the vending machine you come across actually " +"gives back change – sometimes they don’t! Throw in a 10c 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 coin and press the return button. You should do " +"this because vending machines may not return €2 coins, but rather €1 or 50c " +"coins instead. It’s better to find out immediately as opposed to later once " +"you’ve already put in all of your €2 coins." msgstr "" -#: src/templates/collecting-crh.html.tmpl:525 -msgid "" -"We currently have no information regarding coin roll hunting in San Marino." +#: src/templates/banknotes.html.tmpl:18 +msgid "Euro Banknotes" msgstr "" -#: src/templates/coins.html.tmpl:45 -msgid "Varieties" +#: src/templates/coins-designs-ad.html.tmpl:56 +msgid "Finally, the €2 coin features the {Link:L}coat of arms of Andorra{-:E}." msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:25 +#: src/templates/banknotes-codes.html.tmpl:269 +#: src/templates/banknotes-codes.html.tmpl:395 +msgctxt "Header/Label" +msgid "Local Names" +msgstr "Locala namn" + +#: src/templates/collecting-crh.html.tmpl:254 msgid "" -"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)." +"Coin rolls used to be obtainable without fees, however you can no longer " +"obtain rolls." msgstr "" -#: src/templates/coins-designs-at.html.tmpl:26 -msgid "Austrian €0.20 coin" +#: src/templates/collecting-crh.html.tmpl:300 +msgid "" +"There are coin roll machines but it is not yet known if you need to be a " +"customer or if there are fees." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:145 -msgid "Mai Järmut, Villu Järmut" +#: src/templates/collecting-crh.html.tmpl:408 +msgid "We currently have no information regarding coin roll hunting in Monaco." msgstr "" -#. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:209 +#: src/templates/collecting-crh.html.tmpl:471 msgctxt "Company Name" -msgid "BBVA" +msgid "Rabobank" msgstr "" -#. TRANSLATORS: City in Spain -#: src/templates/collecting-crh.html.tmpl:213 -msgid "Alicante" +#: src/templates/coins-designs-at.html.tmpl:37 +msgid "" +"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." msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:21 -msgid "" -"The Croatian euro coins feature four different themes, with each design " -"featuring the Croatian checkerboard and the country’s name in Croatian " -"(‘{CroatianStart:r}HRVATSKA{CroatianEnd:E}’). All designs were selected " -"after voting in a public design competition." +#: src/templates/-base.html.tmpl:11 +msgid "Euro Cash Wiki" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:300 -#: src/templates/banknotes-codes.html.tmpl:432 +#: src/templates/banknotes-codes.html.tmpl:293 +#: src/templates/banknotes-codes.html.tmpl:425 msgctxt "Company Name" -msgid "Royal Joh. Enschedé" -msgstr "" +msgid "Austrian Banknote and Security Printing" +msgstr "Österrikisk sedel- och säkerhetstryckning" -#: src/templates/coins-designs-ee.html.tmpl:76 -msgid "" -"The winner of the contest was awarded 50,000 KR (€3,196) while the other " -"finalists were each awarded 20,000 KR (€1,278)." +#: src/templates/coins-designs-de.html.tmpl:8 +msgid "German Euro Coin Designs" msgstr "" -#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script -#: src/templates/coins-designs-ee.html.tmpl:103 +#: src/templates/coins-designs-ee.html.tmpl:92 +#: src/templates/coins-designs-ee.html.tmpl:106 +#: src/templates/coins-designs-ee.html.tmpl:114 +#: src/templates/coins-designs-ee.html.tmpl:122 +#: src/templates/coins-designs-ee.html.tmpl:131 +#: src/templates/coins-designs-ee.html.tmpl:140 +#: src/templates/coins-designs-ee.html.tmpl:147 +#: src/templates/coins-designs-ee.html.tmpl:155 +#: src/templates/coins-designs-ee.html.tmpl:163 +#: src/templates/coins-designs-ee.html.tmpl:172 +#: src/templates/coins-designs-ee.html.tmpl:180 +msgctxt "Header/Label" +msgid "Votes (%)" +msgstr "Röster (%)" + +#: src/templates/coins-designs-ee.html.tmpl:111 msgctxt "Coin Design" -msgid "Hara 2" -msgstr "Hara 2" +msgid "Consistency" +msgstr "Konsistens" -#: src/templates/collecting-crh.html.tmpl:43 -msgid "" -"Be aware of the fact that the information below may be outdated or " -"inaccurate. Many of the details are self-reported." -msgstr "" +#: src/templates/collecting-crh.html.tmpl:24 +msgid "Getting Started" +msgstr "Komma igång" #. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:124 +#: src/templates/collecting-crh.html.tmpl:275 msgctxt "Company Name" -msgid "Belfius" +msgid "CIC" msgstr "" -#: src/templates/collecting-crh.html.tmpl:147 -msgctxt "Company Name" -msgid "German Federal Bank" +#: src/templates/coins-designs-nl.html.tmpl:41 +msgid "" +"The €1 and €2 coins featuring King Willem-Alexander were minted with a much " +"lower {Link:l}relief{-:E} than most euro coins of the same denomination. As " +"a result it is not uncommon for these coins to appear worn after little use " +"in circulation." msgstr "" +#: src/templates/coins-designs-ad.html.tmpl:12 +msgid "Andorran €0.01 coin" +msgstr "" + +#: src/templates/collecting-storage.html.tmpl:15 +msgid "Coin Albums" +msgstr "" + +#: src/templates/collecting-storage.html.tmpl:24 +msgid "Coin Boxes" +msgstr "" + +#: src/templates/coins-mintages.html.tmpl:58 +#: src/templates/coins-mintages.html.tmpl:79 +#: src/templates/coins-mintages.html.tmpl:114 +#: src/templates/coins-mintages.html.tmpl:189 +msgctxt "Header/Label" +msgid "Year" +msgstr "År" + #: src/templates/collecting-crh.html.tmpl:177 msgid "" "Obtaining coin rolls in Estonia is typically quite difficult and often " "expensive. You also generally need to make an appointment in advance." msgstr "" -#: src/templates/about.html.tmpl:17 -msgid "Contact Us" +#. TRANSLATORS: City in Spain +#: src/templates/collecting-crh.html.tmpl:213 +msgid "Alicante" msgstr "" -#: src/templates/coins-designs-at.html.tmpl:27 -msgid "Austrian €0.50 coin" +#: src/templates/collecting-crh.html.tmpl:347 +msgid "Coin rolls are available to everyone." msgstr "" -#: src/templates/banknotes.html.tmpl:47 -msgid "Learn about the special test notes" +#: src/templates/-error.html.tmpl:15 +msgid "" +"If this issue persists, don’t hesitate to contact ‘@onetruemangoman’ on " +"Discord or to email us at {Email:e}" msgstr "" -#: src/templates/coins-designs-de.html.tmpl:16 -msgid "German €1 coin" +#: src/templates/-navbar.html.tmpl:43 +msgid "Home" msgstr "" -#: src/templates/collecting-crh.html.tmpl:300 +#: src/templates/collecting-vending.html.tmpl:21 +msgid "The Stopper" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:150 msgid "" -"There are coin roll machines but it is not yet known if you need to be a " -"customer or if there are fees." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:360 +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:209 msgctxt "Company Name" -msgid "Bank of Lithuania" +msgid "BBVA" msgstr "" #. TRANSLATORS: Name of a bank -#: src/templates/collecting-crh.html.tmpl:393 +#: src/templates/collecting-crh.html.tmpl:269 msgctxt "Company Name" -msgid "Dexia" +msgid "Caisse d’Épargne" msgstr "" -#: src/templates/coins-designs-be.html.tmpl:60 -msgid "" -"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." +#. TRANSLATORS: Name of a bank +#: src/templates/collecting-crh.html.tmpl:291 +msgctxt "Company Name" +msgid "Crédit Agricole" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:38 -#: src/templates/banknotes.html.tmpl:37 -msgid "Location Codes" -msgstr "Platskoder" +#: src/templates/language.html.tmpl:47 src/templates/language.html.tmpl:90 +msgid "Other Languages" +msgstr "Andra språk" -#: src/templates/jargon.html.tmpl:59 -msgid "UNC — Uncirculated" +#: src/templates/banknotes-codes.html.tmpl:47 +msgid "" +"The printer code (not to be confused with the serial number) is a small code " +"printed on banknotes with information about where the banknote was printed. " +"All printer codes have the form ‘X000X0’ – or in other words – a letter " +"followed by 3 numbers, a letter and a final number." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:14 -msgid "German €0.01 coin" +#: src/templates/coins-designs-at.html.tmpl:27 +msgid "Austrian €0.50 coin" msgstr "" -#: src/templates/collecting-crh.html.tmpl:90 -msgctxt "Company Name" -msgid "Raiffeisen Bank" +#: src/templates/banknotes.html.tmpl:31 +msgid "View the different Euro banknote designs" msgstr "" -#: src/templates/about.html.tmpl:19 -msgid "" -"While we try to stay as up-to-date as possible and to fact check our " -"information, it is always possible that we get something wrong, lack a " -"translation, or are missing some piece of data you may have. Should that be " -"the case, don’t hesitate to contact us; we’ll try to get the site updated or " -"fixed as soon as possible. You are always free to contribute via a git patch " -"if you are more technically inclined, but if not you can always send an " -"email to {Email:e} or contact ‘@onetruemangoman’ on Discord." +#: src/templates/jargon.html.tmpl:49 +msgid "PMD — Post-Mint Damage" msgstr "" -#: src/templates/-navbar.html.tmpl:47 -msgid "Banknotes" -msgstr "" +#: src/templates/coins-designs-de.html.tmpl:31 +msgctxt "Place Name" +msgid "Berlin" +msgstr "Berlin" -#: src/templates/jargon.html.tmpl:22 -msgid "" -"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." +#: src/templates/collecting-crh.html.tmpl:483 +msgid "Coin bags are sold with no additional fees to everyone." msgstr "" -#: src/templates/jargon.html.tmpl:29 -msgid "AU — Almost Uncirculated" +#: src/templates/collecting-crh.html.tmpl:512 +msgid "" +"You may be able to get uncirculated rolls, but this is not yet confirmed." msgstr "" #: src/templates/jargon.html.tmpl:69 @@ -2109,8 +2377,13 @@ msgid "" "obtained at banks or coin roll machines." msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:138 -msgid "Jaak Peep, Villem Valme" +#: src/templates/collecting-storage.html.tmpl:88 +msgid "Flips in an album" +msgstr "" + +#: src/templates/coins-mintages.html.tmpl:186 +#: src/templates/coins-mintages.html.tmpl:223 +msgid "Commemorative Coins" msgstr "" #: src/templates/collecting-crh.html.tmpl:26 @@ -2122,170 +2395,212 @@ msgid "" "charge you a small fee per roll and/or transaction." msgstr "" -#: src/templates/coins.html.tmpl:39 -msgid "View the mintage figures of all the Euro coins" +#: src/templates/collecting-crh.html.tmpl:480 +msgctxt "Company Name" +msgid "Bank of Portugal" msgstr "" -#: src/templates/collecting-crh.html.tmpl:236 -msgctxt "Company Name" -msgid "Bank of Finland" +#: src/templates/language.html.tmpl:45 src/templates/language.html.tmpl:79 +msgid "Select Your Language" +msgstr "Välj ditt språk" + +#: src/templates/collecting-vending.html.tmpl:11 +msgid "What is Vending Machine Hunting?" msgstr "" -#: src/templates/coins-designs-ee.html.tmpl:185 -msgctxt "Header/Label" -msgid "Total" -msgstr "Totalt" +#: src/templates/coins-designs-hr.html.tmpl:17 +msgid "Croatian €1 coin" +msgstr "" -#: src/templates/coins-mintages.html.tmpl:191 -#: src/templates/coins-mintages.html.tmpl:228 -msgctxt "Header/Label" -msgid "Mintage" -msgstr "Myntning" +#: src/templates/coins-designs-be.html.tmpl:46 +#: src/templates/coins-designs-be.html.tmpl:51 +msgid "2008 portrait of King Albert II" +msgstr "" -#: src/templates/coins-designs-at.html.tmpl:12 -msgid "" -"The Austrian euro coins can be grouped into three different themes. The " -"bronze coins feature Austrian flowers, the gold coins feature Austrian " -"architecture and the bimetalic coins feature famous Austrian people. All " -"coins also feature an Austrian flag as well as the coins denomination. These " -"coins together with the {Link:l}Greek euro coins{-:E} are the only coins " -"that feature the denomination on both the common and national sides of the " -"coin." +#: src/templates/coins-designs-at.html.tmpl:17 +msgid "Austrian €0.01 coin" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:409 -msgctxt "Place Name" -msgid "Bulgaria" -msgstr "Bulgarien" +#: src/templates/coins-designs.html.tmpl:25 +msgid "Euro Coin Designs" +msgstr "Euromyntdesigner" -#: src/templates/coins-designs-de.html.tmpl:54 -msgid "" -"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." +#: src/templates/banknotes-codes.html.tmpl:411 +msgctxt "Company Name" +msgid "Oberthur Fiduciaire AD" msgstr "" -#: src/templates/collecting-crh.html.tmpl:86 +#: src/templates/collecting-crh.html.tmpl:168 +msgctxt "Company Name" +msgid "Volksbank" +msgstr "" + +#: src/templates/collecting-crh.html.tmpl:217 +msgid "Madrid" +msgstr "" + +#: src/templates/collecting.html.tmpl:22 msgid "" -"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." +"On this section of the site you can find everything there is to know about " +"collecting Euro coins. If this is a hobby that interests you, join the " +"Discord server linked at the top of the page!" msgstr "" -#: src/templates/collecting-crh.html.tmpl:104 +#: src/templates/coins-designs-hr.html.tmpl:38 msgid "" -"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." +"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ć." msgstr "" -#: src/templates/collecting-crh.html.tmpl:254 +#: src/templates/coins-designs-nl.html.tmpl:37 msgid "" -"Coin rolls used to be obtainable without fees, however you can no longer " -"obtain rolls." +"Coins featuring both monarchs contain text reading ‘{DutchStart:r}BEATRIX " +"KONINGIN DER NEDERLANDEN{DutchEnd:E}’ (English: ‘BEATRIX QUEEN OF THE " +"NETHERLANDS’) and ‘{DutchStart:r}Willem-Alexander Koning der " +"Nederlanden{DutchEnd:E}’ (English: ‘Willem-Alexander King of the " +"Netherlands’) respectively. The €2 coins also feature an edge-inscription " +"reading ‘{DutchStart:r}GOD ⋆ ZIJ ⋆ MET ⋆ ONS ⋆{DutchEnd:E}’ (English: ‘GOD ⋆ " +"IS ⋆ WITH ⋆ US ⋆’)." msgstr "" -#: src/templates/collecting-crh.html.tmpl:383 +#: src/templates/coins-designs-ad.html.tmpl:28 +msgid "Casa de la Vall" +msgstr "" + +#: src/templates/banknotes-codes.html.tmpl:300 +#: src/templates/banknotes-codes.html.tmpl:432 msgctxt "Company Name" -msgid "Central Bank of Luxembourg" +msgid "Royal Joh. Enschedé" msgstr "" -#: src/templates/coins-mintages.html.tmpl:58 -#: src/templates/coins-mintages.html.tmpl:79 -#: src/templates/coins-mintages.html.tmpl:114 -#: src/templates/coins-mintages.html.tmpl:189 +#: src/templates/coins-mintages.html.tmpl:54 msgctxt "Header/Label" -msgid "Year" -msgstr "År" +msgid "Filter Method" +msgstr "Filtermetod" -#: src/templates/collecting-crh.html.tmpl:62 +#: src/templates/collecting-crh.html.tmpl:86 msgid "" -"The Austrian National Bank does not distribute circulated rolls but sells " -"rolls of commemorative coins at face value on release as well as " -"uncirculated rolls for all denominations." +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:82 -msgid "" -"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." +#: src/templates/coins.html.tmpl:18 +msgid "Euro Coins" msgstr "" -#: src/templates/collecting-crh.html.tmpl:351 -msgctxt "Company Name" -msgid "Banca di Cambiano" +#: src/templates/collecting-vending.html.tmpl:38 +msgid "" +"The vending machine merges change together. For example if you throw in five " +"50c coins, the machine returns either two €1 coins and one 50c coin or one " +"€2 and one 50c coin. This usually means you can hunt €2 coins very quickly " +"but other denominations only once at a time. A good tip is to throw in an " +"odd number of euros and €0.80 if you want to search through all " +"denominations." msgstr "" -#: src/templates/collecting-crh.html.tmpl:396 -msgid "You should be able to get coin rolls with no additional fees." +#: src/templates/coins-designs-hr.html.tmpl:8 +msgid "Croatian Euro Coin Designs" msgstr "" -#: src/templates/collecting-crh.html.tmpl:133 -msgctxt "Company Name" -msgid "Bank of Cyprus" +#: src/templates/jargon.html.tmpl:22 +msgid "" +"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." msgstr "" -#: src/templates/collecting-crh.html.tmpl:480 +#: src/templates/banknotes-codes.html.tmpl:97 +#: src/templates/banknotes-codes.html.tmpl:140 +#: src/templates/banknotes-codes.html.tmpl:184 +#: src/templates/banknotes-codes.html.tmpl:264 +#: src/templates/banknotes-codes.html.tmpl:390 +msgctxt "Header/Label" +msgid "Code" +msgstr "Kod" + +#: src/templates/collecting-crh.html.tmpl:66 msgctxt "Company Name" -msgid "Bank of Portugal" +msgid "Bank Austria" msgstr "" -#: src/templates/banknotes-codes.html.tmpl:373 -#: src/templates/banknotes-codes.html.tmpl:418 -msgctxt "Company Name" -msgid "Valora S.A." +#: src/templates/collecting-crh.html.tmpl:184 +msgid "" +"You can purchase commemorative coins – including those released years ago – " +"for face value." msgstr "" -#: src/templates/coins-designs-de.html.tmpl:25 -msgctxt "Header/Label" -msgid "City" -msgstr "Stad" +#: src/templates/coins-designs-de.html.tmpl:39 +msgctxt "Place Name" +msgid "Stuttgart" +msgstr "Stuttgart" -#. TRANSLATORS: Name of a coin design. Don’t translate unless you use a non-latin script -#: src/templates/coins-designs-ee.html.tmpl:169 -msgctxt "Coin Design" -msgid "Nova" -msgstr "Nova" +#. TRANSLATORS: On the German page the filter is called ‘Münzrollengeber’. For other languages we link to the English site, so mention the English filter name surrounded by ‘{EnglishStart:r}’ and ‘{EnglishEnd:E}’, and also translate it in parenthesis to your language. For example the Swedish page might say: ‘”{EnglishStart:r}coin roll dispenser{EnglishEnd:E}” (svenska: ”myntrullsautomat”)’ +#: src/templates/collecting-crh.html.tmpl:73 +msgid "" +"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}." +msgstr "" -#: src/templates/coins-designs-hr.html.tmpl:38 +#: src/templates/collecting-crh.html.tmpl:388 msgid "" -"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ć." +"We currently have no information regarding regular coins, however their " +"webshop sells commemorative coins. Commemorative coins are also available " +"for purchase in-person." msgstr "" -#~ msgctxt "Coin Design" -#~ msgid "Hara 2" -#~ msgstr "Hara 2" +#: src/templates/collecting-crh.html.tmpl:444 +msgid "" +"1- and 2 cent coins have been removed from circulation and cannot be " +"obtained." +msgstr "" -#~ msgid "Name" -#~ msgstr "Namn" +#: src/dbx/sql/last.sql:137 src/dbx/sql/last.sql:140 src/dbx/sql/last.sql:143 +#: src/dbx/sql/last.sql:146 src/dbx/sql/last.sql:149 +msgctxt "CC Name" +msgid "German Reunification" +msgstr "Tysklands återförening" -#~ msgid "City" -#~ msgstr "Stad" +#: src/templates/about.html.tmpl:11 +msgid "Open Source" +msgstr "" -#~ msgid "Mintmark" -#~ msgstr "Myntmärke" +#: src/templates/coins-designs-de.html.tmpl:65 +msgid "" +"The €2 coin also features an edge-inscription of Germany’s national motto " +"and incipit of Germany’s national anthem. It reads ‘{GermanStart:r}EINIGKEIT " +"UND RECHT UND FREIHEIT{GermanEnd:E}’ (English: ‘UNITY AND JUSTICE AND " +"FREEDOM’)." +msgstr "" -#~ msgid "Translation" -#~ msgstr "Översättning" +#: src/templates/collecting.html.tmpl:46 +msgid "Shop Hunting" +msgstr "Affärsjakt" -#~ msgid "Year" -#~ msgstr "År" +#: src/templates/jargon.html.tmpl:51 +msgid "" +"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." +msgstr "" -#~ msgctxt "Header/Label" -#~ msgid "Denomination" -#~ msgstr "Valuta" +#: src/templates/collecting-storage.html.tmpl:64 +msgid "Flips in a case" +msgstr "" -#~ msgid "Austrian National Bank" -#~ msgstr "Österrikiska nationalbanken" +#: src/templates/coins-designs.html.tmpl:29 +msgid "" +"Here you’ll be able to view all the coin designs for each country in the " +"Eurozone. This section of the site doesn’t include minor varieties such as " +"different mintmarks or errors; those are on the {Link:l}varieties{-:E} page." +msgstr "" -#~ msgctxt "Language Name" -#~ msgid "Estonian" -#~ msgstr "Estniska" +#: src/templates/banknotes-codes.html.tmpl:373 +#: src/templates/banknotes-codes.html.tmpl:418 +msgctxt "Company Name" +msgid "Valora S.A." +msgstr "" |