diff --git a/django_lostplaces/lostplaces/locale/de/LC_MESSAGES/django.po b/django_lostplaces/lostplaces/locale/de/LC_MESSAGES/django.po index 0e78288..988a5c0 100644 --- a/django_lostplaces/lostplaces/locale/de/LC_MESSAGES/django.po +++ b/django_lostplaces/lostplaces/locale/de/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-10-10 23:54+0200\n" +"POT-Creation-Date: 2020-10-11 00:25+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Commander1024 \n" "Language-Team: LANGUAGE \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,19 +112,27 @@ msgid "" "Since vandalism is a growing problem these days, no sensitive information is " "available to the public. You have to sign up 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 registrieren" -"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." +"Voucher-Code als Einladung registrierenum 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" #: templates/partials/nav/footer.html:64 msgid "Made by" @@ -183,8 +191,6 @@ msgid "We strictly follow our" msgstr "Bitte lies unseren" #: templates/partials/welcome.html:18 -#, fuzzy -#| msgid "UrBex Codex" msgid "UrBex codex" msgstr "UrBex Codex" @@ -210,9 +216,11 @@ 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" diff --git a/django_lostplaces/lostplaces/templates/partials/form/submit.html b/django_lostplaces/lostplaces/templates/partials/form/submit.html index a012fc7..4d1572a 100644 --- a/django_lostplaces/lostplaces/templates/partials/form/submit.html +++ b/django_lostplaces/lostplaces/templates/partials/form/submit.html @@ -1,8 +1,9 @@ +{% load i18n %}
- +
diff --git a/django_lostplaces/lostplaces/templates/place/place_create.html b/django_lostplaces/lostplaces/templates/place/place_create.html index 55f89dc..b4061ea 100644 --- a/django_lostplaces/lostplaces/templates/place/place_create.html +++ b/django_lostplaces/lostplaces/templates/place/place_create.html @@ -39,8 +39,9 @@ + {% trans 'Create' as action %}
- {% include 'partials/form/submit.html' with referrer=request.META.HTTP_REFERER action='Create' %} + {% include 'partials/form/submit.html' with referrer=request.META.HTTP_REFERER action=action %}