summaryrefslogtreecommitdiffhomepage
path: root/src/pt
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-05-24 01:16:29 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-05-24 01:16:29 +0200
commit4e7535fd73d232a51629fc33f65a61754a155b22 (patch)
treeacce114d59f1679d8f08a4c96ed180b8027c632a /src/pt
Genesis commit
Diffstat (limited to 'src/pt')
-rw-r--r--src/pt/euro/coin-nav.html26
-rw-r--r--src/pt/euro/coins.template.html111
-rw-r--r--src/pt/euro/index.html102
-rw-r--r--src/pt/euro/note-nav.html11
-rw-r--r--src/pt/euro/notes.template.html85
-rw-r--r--src/pt/euro/tnotes.template.html64
-rw-r--r--src/pt/footer.html3
-rw-r--r--src/pt/index.html63
-rw-r--r--src/pt/nav-bar.html11
-rw-r--r--src/pt/table-key.html27
10 files changed, 503 insertions, 0 deletions
diff --git a/src/pt/euro/coin-nav.html b/src/pt/euro/coin-nav.html
new file mode 100644
index 0000000..e885b44
--- /dev/null
+++ b/src/pt/euro/coin-nav.html
@@ -0,0 +1,26 @@
+<ul>
+ <li><a href=/XX/euro/ad>AD</a></li>
+ <li><a href=/XX/euro/at>AT</a></li>
+ <li><a href=/XX/euro/be>BE</a></li>
+ <li><a href=/XX/euro/cy>CY</a></li>
+ <li><a href=/XX/euro/de>DE</a></li>
+ <li><a href=/XX/euro/ee>EE</a></li>
+ <li><a href=/XX/euro/es>ES</a></li>
+ <li><a href=/XX/euro/fi>FI</a></li>
+ <li><a href=/XX/euro/fr>FR</a></li>
+ <li><a href=/XX/euro/gr>GR</a></li>
+ <li><a href=/XX/euro/hr>HR</a></li>
+ <li><a href=/XX/euro/ie>IE</a></li>
+ <li><a href=/XX/euro/it>IT</a></li>
+ <li><a href=/XX/euro/lt>LT</a></li>
+ <li><a href=/XX/euro/lu>LU</a></li>
+ <li><a href=/XX/euro/lv>LV</a></li>
+ <li><a href=/XX/euro/mc>MC</a></li>
+ <li><a href=/XX/euro/mt>MT</a></li>
+ <li><a href=/XX/euro/nl>NL</a></li>
+ <li><a href=/XX/euro/pt>PT</a></li>
+ <li><a href=/XX/euro/si>SI</a></li>
+ <li><a href=/XX/euro/sk>SK</a></li>
+ <li><a href=/XX/euro/sm>SM</a></li>
+ <li><a href=/XX/euro/va>VA</a></li>
+</ul>
diff --git a/src/pt/euro/coins.template.html b/src/pt/euro/coins.template.html
new file mode 100644
index 0000000..5708f69
--- /dev/null
+++ b/src/pt/euro/coins.template.html
@@ -0,0 +1,111 @@
+<!DOCTYPE html>
+<!-- TODO -->
+<html lang=XX>
+ <head>
+ <meta charset=UTF-8 />
+ <title><!-- DEMON --> Euro Coins</title>
+ <link rel="shortcut icon" type="image/svg" href="/favicon.svg" />
+ <link rel="stylesheet" type="text/css" href="/style.css" />
+ </head>
+
+ <body>
+ <nav><!-- NAV-BAR --></nav>
+
+ <main>
+ <section>
+ <header>
+ <h1><!-- DEMON --> Euro Coins</h1>
+ </header>
+ </section>
+
+ <br /><br />
+
+ <section><!-- TABLE-KEY --></section>
+
+ <br /><br />
+
+ <!-- IF-DE -->
+ <section>
+ <p>
+ Germany has 5 different mints that each mint coins. These mints are
+ located in Berlin (A), Munich (D), Stuttgart (F), Karlsruhe (G), and
+ Hamburg (J). All German euro-coins contain a letter (the “mintmark”)
+ identifying which mint the coin was minted at. This means that there
+ are 5 versions of every German euro-coin that must be collected.
+ </p>
+ </section>
+ <br />
+ <!-- FI-DE -->
+ <!-- IF-GR -->
+ <section>
+ <p>
+ As a result of a late joining to the Eurozone, Greece was assisted by
+ the countries of France, Spain, and Finland to mint coins for 2002.
+ For this reason all 2002 coins have two varieties — one with a
+ mintmark in the star (‘F’, ‘E’, and ‘S’) and one without.
+ </p>
+ </section>
+ <br />
+ <!-- FI-GR -->
+ <!-- IF-LU -->
+ <section>
+ <p>
+ For certain commemorative releases Luxembourg minted two different
+ varieties — “classic” and a “holographic”. Any years listed on this
+ page suffixed with ‘C’ are of the classic variety while any years
+ suffixed with ‘H’ are of the holographic variety.
+ </p>
+ </section>
+ <br />
+ <!-- FI-LU -->
+
+ <section class="cl-section slant-down">
+ <div>
+ <table class=coin-table cellspacing=0>
+ <thead>
+ <tr>
+ <th colspan=8>Standard Issues</th>
+ </tr>
+ <tr>
+ <th>1 Cent</th>
+ <th>2 Cent</th>
+ <th>5 Cent</th>
+ <th>10 Cent</th>
+ <th>20 Cent</th>
+ <th>50 Cent</th>
+ <th>1 Euro</th>
+ <th>2 Euro</th>
+ </tr>
+ </thead>
+ <tbody>
+ <!-- SCOIN-TABLE-BODY -->
+ </tbody>
+ </table>
+ </div>
+ </section>
+
+ <!-- IF-!HR -->
+ <section class="cl-section slant-down">
+ <div>
+ <table class="coin-table commemorative-table" cellspacing=0>
+ <thead>
+ <tr>
+ <th colspan=7>Commemorative Issues</th>
+ </tr>
+ <tr>
+ <th>Year</th>
+ <th colspan=6>Commemorated Topics</th>
+ </tr>
+ </thead>
+ <tbody>
+ <!-- CCOIN-TABLE-BODY -->
+ </tbody>
+ </table>
+ </div>
+ </section>
+ <!-- FI-!HR -->
+
+ <section><!-- FOOTER --></section>
+ </main>
+ </body>
+</html>
diff --git a/src/pt/euro/index.html b/src/pt/euro/index.html
new file mode 100644
index 0000000..32c4469
--- /dev/null
+++ b/src/pt/euro/index.html
@@ -0,0 +1,102 @@
+<!DOCTYPE html>
+<!-- TODO -->
+<html lang=XX>
+ <head>
+ <meta charset=UTF-8 />
+ <title>Euro-Coins & -Banknotes</title>
+ <link rel="shortcut icon" type="image/svg" href="/favicon.svg" />
+ <link rel="stylesheet" type="text/css" href="/style.css" />
+ </head>
+
+ <body>
+ <nav><!-- NAV-BAR --></nav>
+
+ <main>
+ <section>
+ <header>
+ <h1>Euro-Coins and -Banknotes</h1>
+ <h6>My Primary Collection</h6>
+ </header>
+ </section>
+
+ <section>
+ <p>
+ This is my euro collection. It’s the largest collection I’ve ever
+ amassed. It’s also my primary collection as I reside in the Eurozone.
+ I do own uncirculated-coins and -banknotes, but all coins and
+ banknotes listed on this section of the site are circulated.
+ </p>
+ </section>
+
+ <section class="cl-section slant-up">
+ <div>
+ <h2>Euro Coins</h2>
+ <table class=country-table>
+ <tbody>
+ <tr>
+ <td><a href=ad>Andorra</a></td>
+ <td><a href=at>Austria</a></td>
+ <td><a href=be>Belgium</a></td>
+ <td><a href=hr>Croatia</a></td>
+ </tr>
+ <tr>
+ <td><a href=cy>Cyprus</a></td>
+ <td><a href=ee>Estonia</a></td>
+ <td><a href=fi>Finland</a></td>
+ <td><a href=fr>France</a></td>
+ </tr>
+ <tr>
+ <td><a href=de>Germany</a></td>
+ <td><a href=gr>Greece</a></td>
+ <td><a href=ie>Ireland</a></td>
+ <td><a href=it>Italy</a></td>
+ </tr>
+ <tr>
+ <td><a href=lv>Latvia</a></td>
+ <td><a href=lt>Lithuania</a></td>
+ <td><a href=lu>Luxembourg</a></td>
+ <td><a href=mt>Malta</a></td>
+ </tr>
+ <tr>
+ <td><a href=mc>Monaco</a></td>
+ <td><a href=nl>Netherlands</a></td>
+ <td><a href=pt>Portugal</a></td>
+ <td><a href=sm>San Marino</a></td>
+ </tr>
+ <tr>
+ <td><a href=sk>Slovakia</a></td>
+ <td><a href=si>Slovenia</a></td>
+ <td><a href=es>Spain</a></td>
+ <td><a href=va>Vatican City</a></td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+ </section>
+
+ <section class="cl-section slant-up">
+ <div>
+ <h2>Euro Banknotes</h2>
+ <table class=country-table>
+ <tbody>
+ <tr>
+ <td><a href=5>€5</a></td>
+ <td><a href=10>€10</a></td>
+ <td><a href=20>€20</a></td>
+ <td><a href=50>€50</a></td>
+ </tr>
+ <tr>
+ <td><a href=100>€100</a></td>
+ <td><a href=200>€200</a></td>
+ <td><a href=500>€500</a></td>
+ <td><a href=tn>Test Notes</a></td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+ </section>
+
+ <section><!-- FOOTER --></section>
+ </main>
+ </body>
+</html>
diff --git a/src/pt/euro/note-nav.html b/src/pt/euro/note-nav.html
new file mode 100644
index 0000000..c08af2a
--- /dev/null
+++ b/src/pt/euro/note-nav.html
@@ -0,0 +1,11 @@
+<!-- TODO -->
+<ul>
+ <li><a href=/XX/euro/5>€5</a></li>
+ <li><a href=/XX/euro/10>€10</a></li>
+ <li><a href=/XX/euro/20>€20</a></li>
+ <li><a href=/XX/euro/50>€50</a></li>
+ <li><a href=/XX/euro/100>€100</a></li>
+ <li><a href=/XX/euro/200>€200</a></li>
+ <li><a href=/XX/euro/500>€500</a></li>
+ <li><a href=/XX/euro/tn>Test Notes</a></li>
+</ul>
diff --git a/src/pt/euro/notes.template.html b/src/pt/euro/notes.template.html
new file mode 100644
index 0000000..7a78bb1
--- /dev/null
+++ b/src/pt/euro/notes.template.html
@@ -0,0 +1,85 @@
+<!DOCTYPE html>
+<!-- TODO -->
+<html lang=XX>
+ <head>
+ <meta charset=UTF-8 />
+ <title>€<!-- DENOM --> Banknotes</title>
+ <link rel="shortcut icon" type="image/svg" href="/favicon.svg" />
+ <link rel="stylesheet" type="text/css" href="/style.css" />
+ </head>
+
+ <body>
+ <nav><!-- NAV-BAR --></nav>
+
+ <main>
+ <section>
+ <header>
+ <h1>€<!-- DENOM --> Banknotes</h1>
+ </header>
+ </section>
+
+ <br /><br />
+
+ <section><!-- TABLE-KEY --></section>
+
+ <br /><br />
+
+ <section>
+ <p>
+ In the serial numbers of the banknotes found in the “Ages and Styles
+ of Europe” series, also known as the “2002” series, the first letter
+ represents the country that the banknote was issued by. In the second
+ series (the “Europa” series) the first letter no longer represents the
+ issuing country but instead the location at which the banknote was
+ printed.
+ <!-- IF-5 -->
+ <br /><br />
+ No €5 banknotes were printed for the “Ages and Styles of Europe”
+ series which bear the signature of Mario Draghi.
+ <!-- FI-5 -->
+ <!-- IF-500 -->
+ <br /><br />
+ The €500 banknote was discontinued and withdrawn from circulation with
+ the release of the “Europa” series.
+ <!-- FI-500 -->
+ </p>
+ </section>
+
+ <br />
+
+ <section class="cl-section slant-down">
+ <div>
+ <table class="coin-table bnote-table" cellspacing=0>
+ <thead>
+ <tr>
+ <th colspan=12>Ages and Styles of Europe</th>
+ </tr>
+ </thead>
+ <tbody>
+ <!-- 2002-TABLE-BODY -->
+ </tbody>
+ </table>
+ </div>
+ </section>
+
+ <!-- IF-!500 -->
+ <section class="cl-section slant-down">
+ <div>
+ <table class="coin-table bnote-table" cellspacing=0>
+ <thead>
+ <tr>
+ <th colspan=12>Europa Series</th>
+ </tr>
+ </thead>
+ <tbody>
+ <!-- EUROPA-TABLE-BODY -->
+ </tbody>
+ </table>
+ </div>
+ </section>
+ <!-- FI-!500 -->
+
+ <section><!-- FOOTER --></section>
+ </main>
+ </body>
+</html>
diff --git a/src/pt/euro/tnotes.template.html b/src/pt/euro/tnotes.template.html
new file mode 100644
index 0000000..a5fde9b
--- /dev/null
+++ b/src/pt/euro/tnotes.template.html
@@ -0,0 +1,64 @@
+<!DOCTYPE html>
+<!-- TODO -->
+<html lang=XX>
+ <head>
+ <meta charset=UTF-8 />
+ <title>Euro Test-Banknotes</title>
+ <link rel="shortcut icon" type="image/svg" href="/favicon.svg" />
+ <link rel="stylesheet" type="text/css" href="/style.css" />
+ </head>
+
+ <body>
+ <nav><!-- NAV-BAR --></nav>
+
+ <main>
+ <section>
+ <header>
+ <h1>Euro Test-Banknotes</h1>
+ </header>
+ </section>
+
+ <br /><br />
+
+ <section><!-- TABLE-KEY --></section>
+
+ <br /><br />
+
+ <section>
+ <p>
+ The following “test banknotes” were banknotes from the “Europa” series
+ printed to test their usage in ATMs and such. The ‘*’ character in
+ the below serial numbers represents an arbitrary number/letter.
+ <br /><br />
+ A few additional notes: the €5 test-note bears the signature of
+ Jean-Claude Trichet, and the €20 test-note beginning with ‘S’ was
+ printed on the plate “S004”. If a note matches the serial-number
+ pattern but does fails these requirements, it’s not a test-note.
+ </p>
+ </section>
+
+ <br />
+
+ <section class="cl-section slant-down">
+ <div>
+ <table id=test-banknote-table class=coin-table cellspacing=0>
+ <thead>
+ <tr>
+ <th colspan=2>Test Banknotes</th>
+ </tr>
+ <tr>
+ <th>Year</th>
+ <th>Serial Number</th>
+ </tr>
+ </thead>
+ <tbody>
+ <!-- TABLE-BODY -->
+ </tbody>
+ </table>
+ </div>
+ </section>
+
+ <section><!-- FOOTER --></section>
+ </main>
+ </body>
+</html>
diff --git a/src/pt/footer.html b/src/pt/footer.html
new file mode 100644
index 0000000..c6351c6
--- /dev/null
+++ b/src/pt/footer.html
@@ -0,0 +1,3 @@
+<p class=right-align>
+ Encontrou um erro ou uma tradução ruim? <a href=#>Contate-me!</a>
+</p>
diff --git a/src/pt/index.html b/src/pt/index.html
new file mode 100644
index 0000000..54dc842
--- /dev/null
+++ b/src/pt/index.html
@@ -0,0 +1,63 @@
+<!DOCTYPE html>
+<html lang=XX>
+ <head>
+ <meta charset=UTF-8 />
+ <title>Coleção de Euros de Thomas</title>
+ <link rel="shortcut icon" type="image/svg" href="/favicon.svg" />
+ <link rel="stylesheet" type="text/css" href="/style.css" />
+ </head>
+
+ <body>
+ <nav><!-- NAV-BAR --></nav>
+
+ <main>
+ <section>
+ <header>
+ <h1>Coleção de Euros de Thomas</h1>
+ <h6>…e algumas coisas do mundo também!</h6>
+ </header>
+ </section>
+
+ <section>
+ <p>
+ Este site contém toda a minha coleção de moedas e notas de euro em
+ circulação. Também tem algumas moedas diferentes do euro! Salvo
+ indicação em contrário, todas as moedas e notas listadas neste site
+ devem ser distribuídas. Em outras palavras, eles não deveriam ter
+ vindo apenas de um conjunto de moedas que comprei em uma casa da
+ moeda. Acho muito mais legal saber que uma parte do dinheiro foi
+ usada anteriormente em uma transação do mundo real.
+ </p>
+ </section>
+
+ <section class="c-section slant-up">
+ <a href=/XX/euro>
+ <h2>Moedas e Notas de Euro</h2>
+ <p>
+ O foco principal da minha coleta de moeda com uma moeda única que
+ abrange 26 países e quase 350 milhões de pessoas. Problemas padrão,
+ edições comemorativas e cédulas de todas as séries são todas
+ incluído.
+ </p>
+ <img src="/eu-stars.svg" />
+ </a>
+ </section>
+
+ <section class="c-section slant-up">
+ <a href=#>
+ <h2>Moedas e Notas de Mundo</h2>
+ <p>
+ Dinheiro de todo o mundo! Esta coleção fica progressivamente maior
+ ao longo do tempo, mas não é meu foco principal. existem alguns
+ países nos quais tenho um interesse especial.
+ <br /><br />
+ <em>Esta seção está indisponível no momento.</em>
+ </p>
+ <img src="/globe.svg" />
+ </a>
+ </section>
+
+ <section><!-- FOOTER --></section>
+ </main>
+ </body>
+</html>
diff --git a/src/pt/nav-bar.html b/src/pt/nav-bar.html
new file mode 100644
index 0000000..bd56bb1
--- /dev/null
+++ b/src/pt/nav-bar.html
@@ -0,0 +1,11 @@
+<ul>
+ <li><a href=/XX>Lar</a></li>
+ <li><a href=/XX/changelog>Alterações</a></li>
+ <li><a href=/XX/euro>Moedas e Notas do Euro</a></li>
+ <li><div class=unavailable>Moedas do Mundo</div></li>
+ <li><div class=unavailable>Notas do Mundo</div></li>
+ <li>
+ <div id=lang-selected>Português</div>
+ <!-- LANG-SELECTOR -->
+ </li>
+</ul>
diff --git a/src/pt/table-key.html b/src/pt/table-key.html
new file mode 100644
index 0000000..7f1f85e
--- /dev/null
+++ b/src/pt/table-key.html
@@ -0,0 +1,27 @@
+<table cellspacing=0 id=table-key>
+ <tr>
+ <td><div class=nifc></div></td>
+ <td>Em falta na minha coleção (NIFC)</td>
+ </tr>
+ <tr>
+ <td><div class=have></div></td>
+ <td>Na minha coleção</td>
+ </tr>
+ <tr>
+ <td><div class=have-nifc></div></td>
+ <td>Na minha coleção (NIFC)</td>
+ </tr>
+ <tr>
+ <td><div class=unknown></div></td>
+ <td>Faltam dados</td>
+ </tr>
+ <tr>
+ <td><div class=not-minted></div></td>
+ <!-- IF-COINS -->
+ <td>Não cunhada</td>
+ <!-- FI-COINS -->
+ <!-- IF-NOTES -->
+ <td>Não impresso</td>
+ <!-- FI-NOTES -->
+ </tr>
+</table>