more about stuff
This commit is contained in:
parent
c1e8689e75
commit
2691c4d714
4 changed files with 28 additions and 9 deletions
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-12-17 19:53+0100\n"
|
||||
"PO-Revision-Date: 2018-12-17 19:53+0100\n"
|
||||
"POT-Creation-Date: 2018-12-17 20:30+0100\n"
|
||||
"PO-Revision-Date: 2018-12-17 20:31+0100\n"
|
||||
"Last-Translator: Laura Klünder <laura@codingcatgirl.de>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: de\n"
|
||||
|
@ -2417,11 +2417,11 @@ msgstr "einige Wegtypen vermieden"
|
|||
msgid "default options"
|
||||
msgstr "Standardoptionen"
|
||||
|
||||
#: c3nav/settings.py:286
|
||||
#: c3nav/settings.py:288
|
||||
msgid "English"
|
||||
msgstr "Englisch"
|
||||
|
||||
#: c3nav/settings.py:287
|
||||
#: c3nav/settings.py:289
|
||||
msgid "German"
|
||||
msgstr "Deutsch"
|
||||
|
||||
|
@ -2466,6 +2466,15 @@ msgstr ""
|
|||
"rel=\"external\" target=\"_blank\">Twitter</a>."
|
||||
|
||||
#: c3nav/site/templates/site/about.html:14
|
||||
msgid "The c3nav team at this event:"
|
||||
msgstr "Das c3nav-Team auf diesem Event:"
|
||||
|
||||
#: c3nav/site/templates/site/about.html:17
|
||||
msgid "Hosting for this event was kindly provided by:"
|
||||
msgstr ""
|
||||
"Hosting für dieses Event wurde freundlicherweise zur Verfügung gestellt von:"
|
||||
|
||||
#: c3nav/site/templates/site/about.html:20
|
||||
msgid ""
|
||||
"Development of the software was supported by the following patrons on <a "
|
||||
"href=\"https://patreon.com/c3nav\" rel=\"external\" target=\"_blank"
|
||||
|
@ -2475,19 +2484,19 @@ msgstr ""
|
|||
"auf <a href=\"https://patreon.com/c3nav\" rel=\"external\" target=\"_blank"
|
||||
"\">Patreon</a>:"
|
||||
|
||||
#: c3nav/site/templates/site/about.html:18
|
||||
#: c3nav/site/templates/site/about.html:24
|
||||
msgid "Responsible for this website:"
|
||||
msgstr "Verantwortlich für diese Webseite:"
|
||||
|
||||
#: c3nav/site/templates/site/about.html:22
|
||||
#: c3nav/site/templates/site/about.html:28
|
||||
msgid "Data privacy"
|
||||
msgstr "Datenschutz"
|
||||
|
||||
#: c3nav/site/templates/site/about.html:24
|
||||
#: c3nav/site/templates/site/about.html:30
|
||||
msgid "We do not collect any personal data."
|
||||
msgstr "Wir sammeln keine persönlichen Daten."
|
||||
|
||||
#: c3nav/site/templates/site/about.html:25
|
||||
#: c3nav/site/templates/site/about.html:31
|
||||
msgid ""
|
||||
"Any data that your device sends to c3nav that might be used to track you "
|
||||
"will either be discarded after processing it or saved in a way that does not "
|
||||
|
@ -2498,7 +2507,7 @@ msgstr ""
|
|||
"verworfen oder auf eine Art und Weise gespeichert, die es uns unmöglich "
|
||||
"macht, sie mit dir in Verbindung zu bringen."
|
||||
|
||||
#: c3nav/site/templates/site/about.html:26
|
||||
#: c3nav/site/templates/site/about.html:32
|
||||
msgid "If you register an account, we do not ask for personal data either."
|
||||
msgstr ""
|
||||
"Auch wenn du einen Account erstellst, fragen wir dich nach keinen "
|
||||
|
|
|
@ -92,6 +92,8 @@ CACHE_RESOLUTION = config.getint('c3nav', 'cache_resolution', fallback=4)
|
|||
|
||||
IMPRINT_ADDRESS = config.get('c3nav', 'imprint_address', fallback=None)
|
||||
IMPRINT_PATRONS = config.get('c3nav', 'imprint_patrons', fallback=None)
|
||||
IMPRINT_TEAM = config.get('c3nav', 'imprint_team', fallback=None)
|
||||
IMPRINT_HOSTING = config.get('c3nav', 'imprint_hosting', fallback=None)
|
||||
|
||||
INITIAL_LEVEL = config.get('c3nav', 'initial_level', fallback=None)
|
||||
INITIAL_BOUNDS = config.get('c3nav', 'initial_bounds', fallback='').split(' ')
|
||||
|
|
|
@ -10,6 +10,12 @@
|
|||
|
||||
<p>{% blocktrans %}c3nav is open source software, find out more about it on <a href="https://github.com/c3nav" rel="external" target="_blank">c3nav</a>.{% endblocktrans %}</p>
|
||||
<p>{% blocktrans %}Keep yourself up to date on c3nav by following us on <a href="https://twitter.com/c3nav" rel="external" target="_blank">Twitter</a>.{% endblocktrans %}</p>
|
||||
{% if team %}
|
||||
<p>{% trans 'The c3nav team at this event:' %} {{ team }}</p>
|
||||
{% endif %}
|
||||
{% if hosting %}
|
||||
<p>{% trans 'Hosting for this event was kindly provided by:' %} {{ hosting }}</p>
|
||||
{% endif %}
|
||||
{% if patrons %}
|
||||
<p>{% blocktrans %}Development of the software was supported by the following patrons on <a href="https://patreon.com/c3nav" rel="external" target="_blank">Patreon</a>:{% endblocktrans %} {{ patrons }}</p>
|
||||
{% endif %}
|
||||
|
|
|
@ -344,4 +344,6 @@ def about_view(request):
|
|||
return render(request, 'site/about.html', {
|
||||
'address': settings.IMPRINT_ADDRESS,
|
||||
'patrons': settings.IMPRINT_PATRONS,
|
||||
'team': settings.IMPRINT_TEAM,
|
||||
'hosting': settings.IMPRINT_HOSTING,
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue