Link arbitrary, translated contacts
This commit is contained in:
parent
9e84d7b7de
commit
23c132bf83
5 changed files with 38 additions and 5 deletions
|
@ -17,7 +17,14 @@ th_address: "Adresse"
|
||||||
th_hours: "Öffnungszeiten"
|
th_hours: "Öffnungszeiten"
|
||||||
th_contact: "Kontakt"
|
th_contact: "Kontakt"
|
||||||
|
|
||||||
contact_web: Web
|
contacts:
|
||||||
|
web: Web
|
||||||
|
tel: Telefon
|
||||||
|
email: E-Mail
|
||||||
|
ml: Mailingliste
|
||||||
|
matrix: Matrix
|
||||||
|
xmpp: XMPP
|
||||||
|
irc: IRC
|
||||||
|
|
||||||
table_footer_missing: "Euer Chaostreff oder Hackerspace fehlt in dieser Liste? Lasst es uns wissen, und wir fügen euch gerne hinzu."
|
table_footer_missing: "Euer Chaostreff oder Hackerspace fehlt in dieser Liste? Lasst es uns wissen, und wir fügen euch gerne hinzu."
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,14 @@ th_address: "Address"
|
||||||
th_hours: "Opening Hours"
|
th_hours: "Opening Hours"
|
||||||
th_contact: "Contact"
|
th_contact: "Contact"
|
||||||
|
|
||||||
contact_web: Web
|
contacts:
|
||||||
|
web: Web
|
||||||
|
tel: Phone
|
||||||
|
email: E-mail
|
||||||
|
ml: Mailing list
|
||||||
|
matrix: Matrix
|
||||||
|
xmpp: XMPP
|
||||||
|
irc: IRC
|
||||||
|
|
||||||
table_footer_missing: "Your Chaostreff or hackerspace is missing from this list? Let us know, we'll gladly add you to the list."
|
table_footer_missing: "Your Chaostreff or hackerspace is missing from this list? Let us know, we'll gladly add you to the list."
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,14 @@ th_address: "Adresse"
|
||||||
th_hours: "Heures d'ouverture"
|
th_hours: "Heures d'ouverture"
|
||||||
th_contact: "Contact"
|
th_contact: "Contact"
|
||||||
|
|
||||||
contact_web: Web
|
contacts:
|
||||||
|
web: Web
|
||||||
|
tel: Téléphone
|
||||||
|
mail: E-mail
|
||||||
|
ml: Liste de Diffusion
|
||||||
|
matrix: Matrix
|
||||||
|
xmpp: XMPP
|
||||||
|
irc: IRC
|
||||||
|
|
||||||
table_footer_missing: "Euer Chaostreff oder Hackerspace fehlt in dieser Liste? Lasst es uns wissen, und wir fügen euch gerne hinzu."
|
table_footer_missing: "Euer Chaostreff oder Hackerspace fehlt in dieser Liste? Lasst es uns wissen, und wir fügen euch gerne hinzu."
|
||||||
|
|
||||||
|
|
10
l10n/it.yml
10
l10n/it.yml
|
@ -19,7 +19,15 @@ th_address: "Indirizzo"
|
||||||
th_hours: "Orario"
|
th_hours: "Orario"
|
||||||
th_contact: "Contatto"
|
th_contact: "Contatto"
|
||||||
|
|
||||||
contact_web: web
|
contacts:
|
||||||
|
web: Web
|
||||||
|
tel: Telefono
|
||||||
|
email: E-mail
|
||||||
|
ml: Mailing list
|
||||||
|
matrix: Matrix
|
||||||
|
xmpp: XMPP
|
||||||
|
irc: IRC
|
||||||
|
|
||||||
|
|
||||||
table_footer_missing: "Il vostro hackerspace manca nella lista lassù? Contattaci per completare la lista per favore."
|
table_footer_missing: "Il vostro hackerspace manca nella lista lassù? Contattaci per completare la lista per favore."
|
||||||
|
|
||||||
|
|
|
@ -83,7 +83,11 @@
|
||||||
<td>{{ space.name }}</td>
|
<td>{{ space.name }}</td>
|
||||||
<td><address>{{ space.address }}</address></td>
|
<td><address>{{ space.address }}</address></td>
|
||||||
<td>{{ space.open[lang] }}</td>
|
<td>{{ space.open[lang] }}</td>
|
||||||
<td><a href="{{ space.contact.web }}">{{ contact_web }}</a></td>
|
<td>
|
||||||
|
{% for key, url in space.contact.items() %}
|
||||||
|
<a href="{{ url }}">{{ contacts[key] }}</a>
|
||||||
|
{% endfor %}
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Reference in a new issue