2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 20:16:44 +00:00

german translation, HTML tags refactored

This commit is contained in:
Andreas Kaiser 2021-03-06 21:52:57 +01:00
parent ae3a0133eb
commit 48cd227f06
6 changed files with 208 additions and 346 deletions

File diff suppressed because it is too large Load Diff

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: 2021-03-05 00:56+0100\n" "POT-Creation-Date: 2021-03-06 21:52+0100\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"
@ -2387,7 +2387,7 @@ msgstr ""
msgid "Select Purchase Order" msgid "Select Purchase Order"
msgstr "" msgstr ""
#: order/templates/order/order_wizard/select_pos.html:67 #: order/templates/order/order_wizard/select_pos.html:68
msgid "Select a purchase order for" msgid "Select a purchase order for"
msgstr "" msgstr ""
@ -3788,6 +3788,10 @@ msgstr ""
msgid "Part Stock" msgid "Part Stock"
msgstr "" msgstr ""
#: part/templates/part/stock.html:16
msgid "Showing stock for all variants of"
msgstr ""
#: part/templates/part/stock_count.html:7 templates/js/bom.js:239 #: part/templates/part/stock_count.html:7 templates/js/bom.js:239
#: templates/js/part.js:421 #: templates/js/part.js:421
msgid "No Stock" msgid "No Stock"
@ -6104,7 +6108,7 @@ msgstr ""
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: templates/navbar.html:71 #: templates/navbar.html:71 templates/registration/logout.html:5
msgid "Logout" msgid "Logout"
msgstr "" msgstr ""
@ -6136,6 +6140,18 @@ msgstr ""
msgid "Username / password combination is incorrect" msgid "Username / password combination is incorrect"
msgstr "" msgstr ""
#: templates/registration/logout.html:6
msgid "You have been logged out"
msgstr ""
#: templates/registration/logout.html:7
msgid "Click"
msgstr ""
#: templates/registration/logout.html:7
msgid "here</a> to log in</p>"
msgstr ""
#: templates/stats.html:9 #: templates/stats.html:9
msgid "Server" msgid "Server"
msgstr "" msgstr ""

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: 2021-03-05 00:56+0100\n" "POT-Creation-Date: 2021-03-06 21:52+0100\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"
@ -2387,7 +2387,7 @@ msgstr ""
msgid "Select Purchase Order" msgid "Select Purchase Order"
msgstr "" msgstr ""
#: order/templates/order/order_wizard/select_pos.html:67 #: order/templates/order/order_wizard/select_pos.html:68
msgid "Select a purchase order for" msgid "Select a purchase order for"
msgstr "" msgstr ""
@ -3788,6 +3788,10 @@ msgstr ""
msgid "Part Stock" msgid "Part Stock"
msgstr "" msgstr ""
#: part/templates/part/stock.html:16
msgid "Showing stock for all variants of"
msgstr ""
#: part/templates/part/stock_count.html:7 templates/js/bom.js:239 #: part/templates/part/stock_count.html:7 templates/js/bom.js:239
#: templates/js/part.js:421 #: templates/js/part.js:421
msgid "No Stock" msgid "No Stock"
@ -6104,7 +6108,7 @@ msgstr ""
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: templates/navbar.html:71 #: templates/navbar.html:71 templates/registration/logout.html:5
msgid "Logout" msgid "Logout"
msgstr "" msgstr ""
@ -6136,6 +6140,18 @@ msgstr ""
msgid "Username / password combination is incorrect" msgid "Username / password combination is incorrect"
msgstr "" msgstr ""
#: templates/registration/logout.html:6
msgid "You have been logged out"
msgstr ""
#: templates/registration/logout.html:7
msgid "Click"
msgstr ""
#: templates/registration/logout.html:7
msgid "here</a> to log in</p>"
msgstr ""
#: templates/stats.html:9 #: templates/stats.html:9
msgid "Server" msgid "Server"
msgstr "" msgstr ""

View File

@ -13,7 +13,7 @@
{% block details %} {% block details %}
{% if part.is_template %} {% if part.is_template %}
<div class='alert alert-info alert-block'> <div class='alert alert-info alert-block'>
Showing stock for all variants of <i>{{ part.full_name }}</i> {% trans 'Showing stock for all variants of' %} <i>{{ part.full_name }}</i>
</div> </div>
{% endif %} {% endif %}

View File

@ -1,7 +1,8 @@
{% extends "base.html" %} {% extends "base.html" %}
{% load i18n %}
{% block content %} {% block content %}
<h4>Logout</h4> <h4>{% trans "Logout" %}</h4>
<p>You have been logged out</p> <p>{% trans "You have been logged out" %}</p>
<p>Click <a href="{% url 'login' %}">here</a> to log in</p> <p>{% trans 'Click' %} <a href="{% url 'login' %}"> {% trans 'here</a> to log in</p>' %}
{% endblock %} {% endblock %}