Compare commits

..

No commits in common. "2d6ee4aef51af318e57a5e7e6046957ea82a756f" and "f95c7973d707b394f5390e2ae31f84e33d64723f" have entirely different histories.

5 changed files with 22 additions and 38 deletions

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-10-11 00:35+0200\n"
"POT-Creation-Date: 2020-10-10 23:54+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Commander1024 <commander@commander1024.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -91,8 +91,8 @@ msgstr "Neueste Places erkunden"
#: templates/home_unauth.html:11
msgid ""
"You can create, view and share your lost places with other members of this "
"site. You can upload photos, place links to your web galleries and "
"You can create, view and share your lost places with other members "
"of this site. You can upload photos, place links to your web galleries and "
"contribute your knowledge by tagging other places or commenting on them. You "
"will find detailed information on where these locations are, how to get "
"there and what to expect from them. This might even include detailed "
@ -112,27 +112,19 @@ msgid ""
"Since vandalism is a growing problem these days, no sensitive information is "
"available to the public. You have to <a class=\"LP-Link\" href="
"\"%(signup_url)s\"><span class=\"LP-Link__Text\">sign up</span></a> with a "
"voucher code as an invitation to join this community. Only admins can create "
"these codes. Usually you are given a code when we know you in real life in "
"person and when we trust you. A request from an unknown person will most "
"probably be denied."
"voucher code as an invitation to join this community. Only admins can "
"create these codes. Usually you are given a code when we know you in real "
"life in person and when we trust you. A request from an unknown person will "
"most probably be denied."
msgstr ""
"Weil Vandalismus dieser Tage ein wachsendes Problem ist, sind keine "
"sensiblen Informationen öffentlich verfügbar. Du musst Dich mit einem "
"Voucher-Code als Einladung <a class=\"LP-Link\" href=\"%(signup_url)s"
"\"><span class=\"LP-Link__Text\">registrieren</span></a>um dieser Community "
"beizutreten. Nur Administratoren können diese Codes erstellen. Üblicherweise "
"bekommst Du einen Code, wenn wir Dich im echten Leben kennen und Dir "
"vertrauen. Eine Anfrage von einer unbekannten Person wird "
"höchstwahrscheinlich abgelehnt."
#: templates/partials/form/submit.html:3
msgid "Submit"
msgstr "Abschicken"
#: templates/partials/form/submit.html:7
msgid "Cancel"
msgstr "Abbrechen"
"Voucher-Code als Einladung <a class=\"LP-Link\" href="
"\"%(signup_url)s\"><span class=\"LP-Link__Text\">registrieren</span></a>"
"um dieser Community beizutreten. Nur Administratoren können diese Codes "
"erstellen. Üblicherweise bekommst Du einen Code, wenn wir Dich im echten "
"Leben kennen und Dir vertrauen. Eine Anfrage von einer unbekannten Person "
"wird höchstwahrscheinlich abgelehnt."
#: templates/partials/nav/footer.html:64
msgid "Made by"
@ -191,6 +183,8 @@ msgid "We strictly follow our"
msgstr "Bitte lies unseren"
#: templates/partials/welcome.html:18
#, fuzzy
#| msgid "UrBex Codex"
msgid "UrBex codex"
msgstr "UrBex Codex"
@ -216,11 +210,9 @@ msgstr "Place löschen"
msgid "Submit a photo album for"
msgstr "Fotoalbum hinzufügen für"
#: templates/place/place_create.html:42
msgid "Create"
msgstr "Erstellen"
#: templates/place/place_delete.html:5
#, fuzzy
#| msgid "Lost Places"
msgid "Lost Place Deletion"
msgstr "Lost Place löschen"
@ -228,7 +220,7 @@ msgstr "Lost Place löschen"
msgid "Are you sure you want to delete"
msgstr "Willst Du den Ort wirklich löschen: "
#: templates/place/place_delete.html:19
#: templates/place/place_delete.html:18
#, fuzzy
#| msgid "Delete place"
msgid "Delete"
@ -262,10 +254,6 @@ msgstr "Unsere Lost Places"
msgid "Update place"
msgstr "Place bearbeiten"
#: templates/place/place_update.html:42
msgid "Update"
msgstr "Aktualisieren"
#: templates/place_image/place_image_create.html:7
msgid "Submit images to a place"
msgstr "Bilder zu einem Place hinzufügen"

View File

@ -1,9 +1,8 @@
{% load i18n %}
<div class="LP-Form__Field LP-Form__Button LP-Input">
<button class="LP-Button">{% if action %}{{ action }}{% else %}{% trans 'Submit' %}{% endif %}</button>
<button class="LP-Button">{% if action %}{{ action }}{% else %}Submit{% endif %}</button>
</div>
<div class="LP-Form__Field LP-Form__Button LP-Input">
<a class="LP-Link" href="{% if referer %}{{ referer }}{% else %}{% url 'lostplaces_home' %}{% endif %}">
<button type="button" class="LP-Button LP-Button--cancel">{% trans 'Cancel' %}</button>
<button type="button" class="LP-Button LP-Button--cancel">Cancel</button>
</a>
</div>

View File

@ -39,9 +39,8 @@
</div>
</div>
{% trans 'Create' as action %}
<div class="LP-Form__Composition LP-Form__Composition--buttons">
{% include 'partials/form/submit.html' with referrer=request.META.HTTP_REFERER action=action %}
{% include 'partials/form/submit.html' with referrer=request.META.HTTP_REFERER action='Create' %}
</div>
</fieldset>

View File

@ -15,7 +15,6 @@
<p class="LP-Paragraph">{% trans 'Are you sure you want to delete' %} "{{place.name}}"?</p>
</div>
</div>
{% trans 'Delete' as action %}
<div class="LP-Form__Composition LP-Form__Composition--buttons">
{% include 'partials/form/submit.html' with referer=request.META.HTTP_REFERER action=action %}

View File

@ -39,9 +39,8 @@
</div>
</div>
{% trans 'Update' as action %}
<div class="LP-Form__Composition LP-Form__Composition--buttons">
{% include 'partials/form/submit.html' with referrer=request.META.HTTP_REFERER action=action %}
{% include 'partials/form/submit.html' with referrer=request.META.HTTP_REFERER action='Update' %}
</div>
</fieldset>