Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 82 additions & 0 deletions assets/content-not-available-yet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
[
{
"DE": "Bosnien und Herzegowina",
"EN": "Bosnia-Herzegovina",
"FR": "Bosnie-Herzégovine"
},
{
"DE": "Kroatien",
"EN": "Croatia",
"FR": "Croatie"
},
{
"DE": "Deutschland (bald verfügbar)",
"EN": "Germany (coming soon)",
"FR": "Allemagne (à venir)"
},
{
"DE": "Griechenland",
"EN": "Greece",
"FR": "Grèce"
},
{
"DE": "Ungarn",
"EN": "Hungary",
"FR": "Hongrie"
},
{
"DE": "Irland",
"EN": "Ireland",
"FR": "Irlande"
},
{
"DE": "Kosovo",
"EN": "Kosovo",
"FR": "Kosovo"
},
{
"DE": "Litauen",
"EN": "Lithuania",
"FR": "Lituanie"
},
{
"DE": "Luxemburg (bald verfügbar)",
"EN": "Luxembourg (coming soon)",
"FR": "Luxembourg (à venir)"
},
{
"DE": "Montenegro",
"EN": "Montenegro",
"FR": "Monténégro"
},
{
"DE": "Nord-Mazedonien",
"EN": "North Macedonia",
"FR": "Macédoine du Nord"
},
{
"DE": "Nordirland",
"EN": "Northern Ireland",
"FR": "Irlande du Nord"
},
{
"DE": "Norwegen",
"EN": "Norway",
"FR": "Norvège"
},
{
"DE": "Rumänien",
"EN": "Romania",
"FR": "Roumanie"
},
{
"DE": "Serbien",
"EN": "Serbia",
"FR": "Serbie"
},
{
"DE": "Slowenien",
"EN": "Slovakia",
"FR": "Slovaquie"
}
]
2 changes: 1 addition & 1 deletion i18n/de.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ information-disclaimer-short: >-
interactiveMap:
legend:
available: FIP Guide verfügbar
pending: Inhalt noch nicht verfügbar
pending: Inhalt noch nicht im FIP Guide verfügbar
unavailable: Keine FIP-Akzeptanz
loading: Lade interaktive Karte...
resetZoom: Zoom zurücksetzen
Expand Down
2 changes: 1 addition & 1 deletion i18n/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ information-disclaimer-short: >-
interactiveMap:
legend:
available: FIP Guide available
pending: Content not available yet
pending: Content not yet available in the FIP Guide
unavailable: No FIP acceptance
loading: Loading interactive map...
resetZoom: Reset Zoom
Expand Down
2 changes: 1 addition & 1 deletion i18n/fr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ information-disclaimer-short: >-
interactiveMap:
legend:
available: FIP Guide disponible
pending: Contenu non disponible
pending: Contenu non disponible dans le guide FIP
unavailable: Pas d'acceptation FIP
loading: Chargement de la carte interactive...
resetZoom: Réinitialiser le zoom
Expand Down
10 changes: 10 additions & 0 deletions layouts/country/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ <h2 id="countries-with-fip">{{ T "countries.overview" }}</h2>
{{ end }}
</ul>
</div>
<div>
{{ $lang := .Site.Language.Lang | upper }}
{{ $countries := resources.Get "content-not-available-yet.json" | transform.Unmarshal }}
<p>{{ T "interactiveMap.legend.pending" }}:</p>
<ul class="o-list__list">
{{ range $countries }}
<li>{{ index . $lang }}</li>
{{ end }}
</ul>
</div>
<div>
<h2 id="countries-without-fip">{{ T "countries.without-fip" }}</h2>
<ul class="o-list__list" aria-labelledby="countries-without-fip">
Expand Down
Loading