1
0
mirror of https://github.com/django/django.git synced 2025-07-04 17:59:13 +00:00

added more translations for the admin templates so that we can see how translated admin might look - references #65

git-svn-id: http://code.djangoproject.com/svn/django/branches/i18n@730 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Georg Bauer 2005-09-29 21:23:41 +00:00
parent 2c8a8c3c46
commit e3b2fbf6ad
16 changed files with 279 additions and 57 deletions

View File

@ -1,11 +1,11 @@
{% extends "base_site" %} {% extends "base_site" %}
{% block title %}Page not found{% endblock %} {% block title %}{% i18n _('Page not found') %}{% endblock %}
{% block content %} {% block content %}
<h2>Page not found</h2> <h2>{% i18n _('Page not found') %}</h2>
<p>We're sorry, but the requested page could not be found.</p> <p>{% i18n _("We're sorry, but the requested page could not be found.") %}</p>
{% endblock %} {% endblock %}

View File

@ -2,10 +2,10 @@
{% block breadcrumbs %}<div class="breadcrumbs"><a href="/">Home</a> &rsaquo; Server error</div>{% endblock %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="/">Home</a> &rsaquo; Server error</div>{% endblock %}
{% block title %}Server error (500){% endblock %} {% block title %}{% i18n _('Server error (500)') %}{% endblock %}
{% block content %} {% block content %}
<h1>Server Error <em>(500)</em></h1> <h1>{% i18n _('Server Error <em>(500)</em>') %}</h1>
<p>There's been an error. It's been reported to the site administrators via e-mail and should be fixed shortly. Thanks for your patience.</p> <p>{% i18n _("There's been an error. It's been reported to the site administrators via e-mail and should be fixed shortly. Thanks for your patience.") %}</p>
{% endblock %} {% endblock %}

View File

@ -19,13 +19,13 @@
{% block branding %}{% endblock %} {% block branding %}{% endblock %}
</div> </div>
{% if not user.is_anonymous %} {% if not user.is_anonymous %}
<div id="user-tools">Welcome, <strong>{% if user.first_name %}{{ user.first_name }}{% else %}{{ user.username }}{% endif %}</strong>. <br />{% block userlinks %}<a href="/admin/password_change/">Change password</a> / <a href="/admin/logout/">Log out</a>{% endblock %}</div> <div id="user-tools">{% i18n _('Welcome,') %} <strong>{% if user.first_name %}{{ user.first_name }}{% else %}{{ user.username }}{% endif %}</strong>. <br />{% block userlinks %}<a href="/admin/password_change/">{% i18n _('Change password') %}</a> / <a href="/admin/logout/">{% i18n _('Log out') %}</a>{% endblock %}</div>
{% endif %} {% endif %}
{% block nav-global %}{% endblock %} {% block nav-global %}{% endblock %}
<br class="clear" /> <br class="clear" />
</div> </div>
<!-- END Header --> <!-- END Header -->
{% block breadcrumbs %}<div class="breadcrumbs"><a href="/">Home</a>{% if title %} &rsaquo; {{ title }}{% endif %}</div>{% endblock %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="/">{% i18n _('Home') %}</a>{% if title %} &rsaquo; {{ title }}{% endif %}</div>{% endblock %}
{% endif %} {% endif %}
{% if messages %} {% if messages %}

View File

@ -1,9 +1,9 @@
{% extends "base" %} {% extends "base" %}
{% block title %}{{ title }} | Django site admin{% endblock %} {% block title %}{{ title }} | {% i18n _('Django site admin') %}{% endblock %}
{% block branding %} {% block branding %}
<h1 id="site-name">Django administration</h1> <h1 id="site-name">{% i18n _('Django administration') %}</h1>
<h2 id="site-url"><a href="http://www.example.com/">example.com</a></h2> <h2 id="site-url"><a href="http://www.example.com/">example.com</a></h2>
{% endblock %} {% endblock %}

View File

@ -5,7 +5,7 @@
{% block content %} {% block content %}
{% if not hide_add_link %} {% if not hide_add_link %}
<ul class="object-tools"><li><a href="/{{ admin_url }}/add/" class="addlink">Add {{ object_name }}</a></li></ul> <ul class="object-tools"><li><a href="/{{ admin_url }}/add/" class="addlink">{% i18n _('Add') %} {{ object_name }}</a></li></ul>
{% endif %} {% endif %}
<div id="content-main"> <div id="content-main">
@ -23,7 +23,7 @@
{% if changelist %} {% if changelist %}
<ul class="changelist"> <ul class="changelist">
{% for obj in changelist %} {% for obj in changelist %}
<li class="{% cycle row1,row2 %}"><a href="/{{ admin_url }}/change/{{ obj.id }}/" title="Click to change">{{ obj|striptags|escape }}</a></li> <li class="{% cycle row1,row2 %}"><a href="/{{ admin_url }}/change/{{ obj.id }}/" title="{% i18n _('Click to change') %}">{{ obj|striptags|escape }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endif %} {% endif %}

View File

@ -3,18 +3,18 @@
{% block content %} {% block content %}
{% if perms_lacking %} {% if perms_lacking %}
<p>Deleting the {{ object_name }} "{{ object }}" would result in deleting related objects, but your account doesn't have permission to delete the following types of objects:</p> <p>{% i18n _("Deleting the %(object_name)s '%(object)s' would result in deleting related objects, but your account doesn't have permission to delete the following types of objects:") %}</p>
<ul> <ul>
{% for obj in perms_lacking %} {% for obj in perms_lacking %}
<li>{{ obj }}</li> <li>{{ obj }}</li>
{% endfor %} {% endfor %}
</ul> </ul>
{% else %} {% else %}
<p>Are you sure you want to delete the {{ object_name }} "{{ object }}"? All of the following related items will be deleted:</p> <p>{% i18n _('Are you sure you want to delete the %(object_name)s "%(object)s"? All of the following related items will be deleted:') %}</p>
<ul>{{ deleted_objects|unordered_list }}</ul> <ul>{{ deleted_objects|unordered_list }}</ul>
<form action="" method="post"> <form action="" method="post">
<input type="hidden" name="post" value="yes" /> <input type="hidden" name="post" value="yes" />
<input type="submit" value="Yes, I'm sure" /> <input type="submit" value="{% i18n _("Yes, I'm sure") %}" />
</form> </form>
{% endif %} {% endif %}

View File

@ -39,7 +39,7 @@
</div> </div>
{% endfor %} {% endfor %}
{% else %} {% else %}
<p>You don't have permission to edit anything.</p> <p>{% i18n _("You don't have permission to edit anything.") %}</p>
{% endif %} {% endif %}
</div> </div>
{% endblock %} {% endblock %}

View File

@ -11,16 +11,16 @@
<form action="{{ app_path }}" method="post"> <form action="{{ app_path }}" method="post">
<p class="aligned"> <p class="aligned">
<label for="id_username">Username:</label> <input type="text" name="username" id="id_username" /> <label for="id_username">{% i18n _('Username:') %}</label> <input type="text" name="username" id="id_username" />
</p> </p>
<p class="aligned"> <p class="aligned">
<label for="id_password">Password:</label> <input type="password" name="password" id="id_password" /> <label for="id_password">{% i18n _('Password:') %}</label> <input type="password" name="password" id="id_password" />
<input type="hidden" name="this_is_the_login_form" value="1" /> <input type="hidden" name="this_is_the_login_form" value="1" />
<input type="hidden" name="post_data" value="{{ post_data }}" />{% comment %} <span class="help">Have you <a href="/password_reset/">forgotten your password</a>?</span>{% endcomment %} <input type="hidden" name="post_data" value="{{ post_data }}" />{% comment %} <span class="help">{% i18n _('Have you <a href="/password_reset/">forgotten your password</a>?') %}</span>{% endcomment %}
</p> </p>
<div class="aligned "> <div class="aligned ">
<label>&nbsp;</label><input type="submit" value="Log in" /> <label>&nbsp;</label><input type="submit" value="{% i18n _('Log in') %}" />
</div> </div>
</form> </form>

View File

@ -1,11 +1,11 @@
{% extends "base_site" %} {% extends "base_site" %}
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a></div>{% endblock %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% i18n _('Home') %}</a></div>{% endblock %}
{% block content %} {% block content %}
<p>Thanks for spending some quality time with the Web site today.</p> <p>{% i18n _("Thanks for spending some quality time with the Web site today.") %}</p>
<p><a href="../">Log in again</a></p> <p><a href="../">{% i18n _('Log in again') %}</a></p>
{% endblock %} {% endblock %}

View File

@ -1,13 +1,13 @@
{% extends "base_site" %} {% extends "base_site" %}
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a> &rsaquo; Password change</div>{% endblock %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% i18n _('Home') %}</a> &rsaquo; {% i18n _('Password change') %}</div>{% endblock %}
{% block title %}Password change successful{% endblock %} {% block title %}{% i18n _('Password change successful') %}{% endblock %}
{% block content %} {% block content %}
<h1>Password change successful</h1> <h1>{% i18n _('Password change successful') %}</h1>
<p>Your password was changed.</p> <p>{% i18n _('Your password was changed.') %}</p>
{% endblock %} {% endblock %}

View File

@ -1,25 +1,25 @@
{% extends "base_site" %} {% extends "base_site" %}
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a> &rsaquo; Password change</div>{% endblock %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% i18n _('Home') %}</a> &rsaquo; {% i18n _('Password change') %}</div>{% endblock %}
{% block title %}Password change{% endblock %} {% block title %}{% _('Password change') %}{% endblock %}
{% block content %} {% block content %}
<h1>Password change</h1> <h1>{% i18n _('Password change') %}</h1>
<p>Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly.</p> <p>{% i18n _("Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly.") %}</p>
<form action="" method="post"> <form action="" method="post">
{% if form.old_password.errors %}{{ form.old_password.html_error_list }}{% endif %} {% if form.old_password.errors %}{{ form.old_password.html_error_list }}{% endif %}
<p class="aligned wide"><label for="id_old_password">Old password:</label>{{ form.old_password }}</p> <p class="aligned wide"><label for="id_old_password">{% i18n _('Old password:') %}</label>{{ form.old_password }}</p>
{% if form.new_password1.errors %}{{ form.new_password1.html_error_list }}{% endif %} {% if form.new_password1.errors %}{{ form.new_password1.html_error_list }}{% endif %}
<p class="aligned wide"><label for="id_new_password1">New password:</label>{{ form.new_password1 }}</p> <p class="aligned wide"><label for="id_new_password1">{% i18n _('New password:') %}</label>{{ form.new_password1 }}</p>
{% if form.new_password2.errors %}{{ form.new_password2.html_error_list }}{% endif %} {% if form.new_password2.errors %}{{ form.new_password2.html_error_list }}{% endif %}
<p class="aligned wide"><label for="id_new_password2">Confirm password:</label>{{ form.new_password2 }}</p> <p class="aligned wide"><label for="id_new_password2">{% i18n _('Confirm password:') %}</label>{{ form.new_password2 }}</p>
<p><input type="submit" value="Change my password" /></p> <p><input type="submit" value="{% i18n _('Change my password') %}" /></p>
</form> </form>
{% endblock %} {% endblock %}

View File

@ -1,13 +1,13 @@
{% extends "base_site" %} {% extends "base_site" %}
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a> &rsaquo; Password reset</div>{% endblock %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% i18n _('Home') %}</a> &rsaquo; {% i18n _('Password reset') %}</div>{% endblock %}
{% block title %}Password reset successful{% endblock %} {% block title %}{% i18n _('Password reset successful') %}{% endblock %}
{% block content %} {% block content %}
<h1>Password reset successful</h1> <h1>{% i18n _('Password reset successful') %}</h1>
<p>We've e-mailed a new password to the e-mail address you submitted. You should be receiving it shortly.</p> <p>{% i18n _("We've e-mailed a new password to the e-mail address you submitted. You should be receiving it shortly.") %}</p>
{% endblock %} {% endblock %}

View File

@ -1,14 +1,14 @@
You're receiving this e-mail because you requested a password reset {% i18n _("You're receiving this e-mail because you requested a password reset") %}
for your user account at {{ site_name }}. {% i18n _("for your user account at %(site_name)s") %}.
Your new password is: {{ new_password }} {% i18n _("Your new password is: %(new_password)s") %}
Feel free to change this password by going to this page: {% i18n _("Feel free to change this password by going to this page:") %}
http://{{ domain }}/password_change/ http://{{ domain }}/password_change/
Your username, in case you've forgotten, is {{ user.username }} {% i18n _("Your username, in case you've forgotten:") %} {{ user.username }}
Thanks for using our site! {% i18n _("Thanks for using our site!") %}
The {{ site_name }} team {% i18n _("The %(site_name)s team") %}

View File

@ -1,18 +1,18 @@
{% extends "base_site" %} {% extends "base_site" %}
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a> &rsaquo; Password reset</div>{% endblock %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% i18n _('Home') %}</a> &rsaquo; {% i18n _('Password reset') %}</div>{% endblock %}
{% block title %}Password reset{% endblock %} {% block title %}{% i18n _("Password reset") %}{% endblock %}
{% block content %} {% block content %}
<h1>Password reset</h1> <h1>{% i18n _("Password reset") %}</h1>
<p>Forgotten your password? Enter your e-mail address below, and we'll reset your password and e-mail the new one to you.</p> <p>{% i18n _("Forgotten your password? Enter your e-mail address below, and we'll reset your password and e-mail the new one to you.") %}</p>
<form action="" method="post"> <form action="" method="post">
{% if form.email.errors %}{{ form.email.html_error_list }}{% endif %} {% if form.email.errors %}{{ form.email.html_error_list }}{% endif %}
<p><label for="id_email">E-mail address:</label> {{ form.email }} <input type="submit" value="Reset my password" /></p> <p><label for="id_email">{% i18n _('E-mail address:') %}</label> {{ form.email }} <input type="submit" value="{% i18n _('Reset my password') %}" /></p>
</form> </form>
{% endblock %} {% endblock %}

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-09-29 14:11+0200\n" "POT-Creation-Date: 2005-09-29 22:07+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -21,31 +21,253 @@ msgid "This value must contain only letters, numbers and underscores."
msgstr "Der Wert darf nur Buchstaben, Ziffern und Unterstriche enthalten." msgstr "Der Wert darf nur Buchstaben, Ziffern und Unterstriche enthalten."
#: conf/admin_templates/404.html:3 conf/admin_templates/404.html:7 #: conf/admin_templates/404.html:3 conf/admin_templates/404.html:7
#: conf/admin_templates/404.html.py:1 conf/admin_templates/404.html.py:2
msgid "Page not found" msgid "Page not found"
msgstr "Seite nicht gefunden" msgstr "Seite nicht gefunden"
#: conf/admin_templates/404.html:9 #: conf/admin_templates/404.html:9 conf/admin_templates/404.html.py:3
msgid "We're sorry, but the requested page could not be found." msgid "We're sorry, but the requested page could not be found."
msgstr "" msgstr ""
"Es tut uns leid, aber die angeforderte Seite kann nicht gefunden werden." "Es tut uns leid, aber die angeforderte Seite kann nicht gefunden werden."
#: conf/admin_templates/index.html:26 #: conf/admin_templates/index.html:26
#: conf/admin_templates/changelist_generic.html:8
#: conf/admin_templates/changelist_generic.html.py:1
#: conf/admin_templates/index.html.py:1
msgid "Add" msgid "Add"
msgstr "Zufügen" msgstr "Zufügen"
#: conf/admin_templates/index.html:32 #: conf/admin_templates/index.html:32 conf/admin_templates/index.html.py:2
msgid "Change" msgid "Change"
msgstr "Ändern" msgstr "Ändern"
#: conf/admin_templates/index.html:50 #: conf/admin_templates/index.html:50 conf/admin_templates/index.html.py:4
msgid "Recent Actions" msgid "Recent Actions"
msgstr "Kürzliche Aktionen" msgstr "Kürzliche Aktionen"
#: conf/admin_templates/index.html:51 #: conf/admin_templates/index.html:51 conf/admin_templates/index.html.py:5
msgid "My Actions" msgid "My Actions"
msgstr "Meine Aktionen" msgstr "Meine Aktionen"
#: conf/admin_templates/index.html:55 #: conf/admin_templates/index.html:55 conf/admin_templates/index.html.py:6
msgid "None available" msgid "None available"
msgstr "Keine vorhanden" msgstr "Keine vorhanden"
#: conf/admin_templates/base_site.html:3
#: conf/admin_templates/base_site.html.py:1
msgid "Django site admin"
msgstr "Django Systemverwaltung"
#: conf/admin_templates/base_site.html:6
#: conf/admin_templates/base_site.html.py:2
msgid "Django administration"
msgstr "Django Verwaltung"
#: conf/admin_templates/500.html:5 conf/admin_templates/500.html.py:1
msgid "Server error (500)"
msgstr "Serverfehler (500)"
#: conf/admin_templates/500.html:8
msgid "Server error <em>(500)</em>"
msgstr "Serverfehler <em>(500)</em>"
#: conf/admin_templates/500.html:9 conf/admin_templates/500.html.py:3
msgid ""
"There's been an error. It's been reported to the site administrators via e-"
"mail and should be fixed shortly. Thanks for your patience."
msgstr ""
"Es hat einen Fehler gegeben. Dieser Fehler wurde an die Serververwalter per "
"eMail weitergegeben und sollte bald behoben sein. Vielen Dank für Ihr "
"Verständnis."
#: conf/admin_templates/delete_confirmation_generic.html:6
#: conf/admin_templates/delete_confirmation_generic.html.py:1
#, python-format
msgid ""
"Deleting the %(object_name)s '%(object)s' would result in deleting related "
"objects, but your account doesn't have permission to delete the following "
"types of objects:"
msgstr ""
"Die Löschung des %(object_name)s '%(object)s' hätte die Löschung von "
"abhängigen Daten zur Folge, aber Sie haben nicht die nötigen Rechte um die "
"folgenden abhängigen Daten zu löschen:"
#: conf/admin_templates/delete_confirmation_generic.html:13
#: conf/admin_templates/delete_confirmation_generic.html.py:2
#, python-format
msgid ""
"Are you sure you want to delete the %(object_name)s \"%(object)s\"? All of "
"the following related items will be deleted:"
msgstr ""
"Sind Sie sicher, das Sie %(object_name)s \"%(object)s\" löschen wollen? Es "
"werden zusätzlich die folgenden abhängigen Daten mit gelöscht:"
#: conf/admin_templates/login.html:14 conf/admin_templates/login.html.py:1
msgid "Username:"
msgstr "Benutzername:"
#: conf/admin_templates/login.html:17 conf/admin_templates/login.html.py:2
msgid "Password:"
msgstr "Passwort:"
#: conf/admin_templates/login.html:19 conf/admin_templates/login.html.py:3
msgid "Have you <a href=\"/password_reset/\">forgotten your password</a>?"
msgstr "Haben Sie <a href=\"/password_reset/\">ihr Passwort vergessen</a>?"
#: conf/admin_templates/base.html:22 conf/admin_templates/base.html.py:1
msgid "Welcome,"
msgstr "Willkommen,"
#: conf/admin_templates/base.html:22 conf/admin_templates/base.html.py:2
msgid "Change password"
msgstr "Passwort ändern"
#: conf/admin_templates/base.html:22 conf/admin_templates/base.html.py:3
msgid "Log out"
msgstr "Abmelden"
#: conf/admin_templates/base.html:28 conf/admin_templates/base.html.py:4
#: conf/admin_templates/registration/password_change_done.html.py:1
#: conf/admin_templates/registration/password_reset_form.html.py:1
#: conf/admin_templates/registration/logged_out.html.py:1
#: conf/admin_templates/registration/password_reset_done.html.py:1
#: conf/admin_templates/registration/password_change_form.html.py:1
msgid "Home"
msgstr "Start"
#: conf/admin_templates/index.html:42 conf/admin_templates/index.html.py:3
msgid "You don't have permission to edit anything."
msgstr "Sie haben keine Berechtigung irgendwas zu ändern."
#: conf/admin_templates/changelist_generic.html.py:2
msgid "Click to change"
msgstr "Zur Änderung klicken"
#: conf/admin_templates/500.html.py:2
msgid "Server Error <em>(500)</em>"
msgstr "Serverfehler <em>(500)</em>"
#: conf/admin_templates/delete_confirmation_generic.html.py:3
msgid "Yes, I'm sure"
msgstr "Ja, ich bin sicher"
#: conf/admin_templates/login.html.py:4
msgid "Log in"
msgstr "Anmelden"
#: conf/admin_templates/registration/password_change_done.html.py:2
#: conf/admin_templates/registration/password_change_form.html.py:2
#: conf/admin_templates/registration/password_change_form.html.py:3
msgid "Password change"
msgstr "Kennwort ändern"
#: conf/admin_templates/registration/password_change_done.html.py:3
#: conf/admin_templates/registration/password_change_done.html.py:4
msgid "Password change successful"
msgstr "Erfolgreiche Kennwortänderung"
#: conf/admin_templates/registration/password_change_done.html.py:5
msgid "Your password was changed."
msgstr "Ihr Kennwort wurde geändert."
#: conf/admin_templates/registration/password_reset_form.html.py:2
#: conf/admin_templates/registration/password_reset_form.html.py:3
#: conf/admin_templates/registration/password_reset_form.html.py:4
#: conf/admin_templates/registration/password_reset_done.html.py:2
msgid "Password reset"
msgstr "Kennwort zurücksetzen"
#: conf/admin_templates/registration/password_reset_form.html.py:5
msgid ""
"Forgotten your password? Enter your e-mail address below, and we'll reset "
"your password and e-mail the new one to you."
msgstr ""
"Sie haben Ihr Kennwort vergessen? Geben Sie bitte Ihre eMail-Adresse ein und "
"wir setzen das Kennwort auf einen neuen Wert und schicken den per eMail an Sie "
"raus."
#: conf/admin_templates/registration/password_reset_form.html.py:6
msgid "E-mail address:"
msgstr "eMail-Adresse:"
#: conf/admin_templates/registration/password_reset_form.html.py:7
msgid "Reset my password"
msgstr "Mein Kennwort zurücksetzen"
#: conf/admin_templates/registration/logged_out.html.py:2
msgid "Thanks for spending some quality time with the Web site today."
msgstr "Danke, dass Sie eine Weile bei uns waren."
#: conf/admin_templates/registration/logged_out.html.py:3
msgid "Log in again"
msgstr "Neu anmelden"
#: conf/admin_templates/registration/password_reset_done.html.py:3
#: conf/admin_templates/registration/password_reset_done.html.py:4
msgid "Password reset successful"
msgstr "Erfolgreich Kennwort zurückgesetzt"
#: conf/admin_templates/registration/password_reset_done.html.py:5
msgid ""
"We've e-mailed a new password to the e-mail address you submitted. You "
"should be receiving it shortly."
msgstr ""
"Wir haben Ihnen ein neues Kennwort per eMail zugeschickt an die Adresse, "
"die Sie uns gegeben haben. Es sollte in Kürze ankommen."
#: conf/admin_templates/registration/password_change_form.html.py:4
msgid ""
"Please enter your old password, for security's sake, and then enter your new "
"password twice so we can verify you typed it in correctly."
msgstr ""
"Bitte geben Sie aus Sicherheitsgründen erst Ihr altes Kennwort und darunter "
"dann zweimal (um sicherzustellen, das Sie es korrekt eingegeben haben) das "
"neue Kennwort ein."
#: conf/admin_templates/registration/password_change_form.html.py:5
msgid "Old password:"
msgstr "altes Kennwort:"
#: conf/admin_templates/registration/password_change_form.html.py:6
msgid "New password:"
msgstr "neues Kennwort:"
#: conf/admin_templates/registration/password_change_form.html.py:7
msgid "Confirm password:"
msgstr "Kennwortwiederholung:"
#: conf/admin_templates/registration/password_change_form.html.py:8
msgid "Change my password"
msgstr "Mein Kennwort ändern"
#: conf/admin_templates/registration/password_reset_email.html.py:1
msgid "You're receiving this e-mail because you requested a password reset"
msgstr "Sie erhalten diese Mail, weil Sie ein neues Kennwort"
#: conf/admin_templates/registration/password_reset_email.html.py:2
#, python-format
msgid "for your user account at %(site_name)s"
msgstr "für ihren Benutzer bei %(site_name)s angefordert haben."
#: conf/admin_templates/registration/password_reset_email.html.py:3
#, python-format
msgid "Your new password is: %(new_password)s"
msgstr "Ihr neues Kennwort ist: %(new_password)s"
#: conf/admin_templates/registration/password_reset_email.html.py:4
msgid "Feel free to change this password by going to this page:"
msgstr "Sie können das Kennwort auf folgender Seite ändern:"
#: conf/admin_templates/registration/password_reset_email.html.py:5
msgid "Your username, in case you've forgotten:"
msgstr "Ihr Benutzername, falls Sie ihn vergessen haben:"
#: conf/admin_templates/registration/password_reset_email.html.py:6
msgid "Thanks for using our site!"
msgstr "Vielen Dank, das Sie unsere Seiten benutzen!"
#: conf/admin_templates/registration/password_reset_email.html.py:7
#, python-format
msgid "The %(site_name)s team"
msgstr "Das Team von %(site_name)s"