Merge pull request #426 from pcoder/bug/3633/copyright_translation
Bug/3633/copyright translation
This commit is contained in:
commit
824749545c
6 changed files with 19 additions and 19 deletions
|
@ -169,6 +169,9 @@ msgstr "Home"
|
||||||
msgid "Pricing"
|
msgid "Pricing"
|
||||||
msgstr "Preise"
|
msgstr "Preise"
|
||||||
|
|
||||||
|
msgid "All Rights Reserved"
|
||||||
|
msgstr "Alle Rechte vorbehalten"
|
||||||
|
|
||||||
msgid "Why Data Center Light?"
|
msgid "Why Data Center Light?"
|
||||||
msgstr "Warum Data Center Light?"
|
msgstr "Warum Data Center Light?"
|
||||||
|
|
||||||
|
@ -381,20 +384,14 @@ msgstr "Unser Angebot beginnt bei 15 CHF pro Monat. Probier's jetzt aus!"
|
||||||
msgid "Actions speak louder than words. Let's do it, try our VM now."
|
msgid "Actions speak louder than words. Let's do it, try our VM now."
|
||||||
msgstr "Tagen sagen mehr als Worte – Teste jetzt unsere VM!"
|
msgstr "Tagen sagen mehr als Worte – Teste jetzt unsere VM!"
|
||||||
|
|
||||||
#, fuzzy
|
msgid "Invalid number of cores"
|
||||||
#| msgid "is not a proper name"
|
msgstr "Ungültige Anzahle CPU-Kerne"
|
||||||
msgid "Not a proper cores number"
|
|
||||||
msgstr "ist kein gültiger Name"
|
|
||||||
|
|
||||||
#, fuzzy
|
msgid "Invalid RAM size"
|
||||||
#| msgid "is not a proper name"
|
msgstr "Ungültige RAM-Grösse"
|
||||||
msgid "Not a proper ram number"
|
|
||||||
msgstr "ist kein gültiger Name"
|
|
||||||
|
|
||||||
#, fuzzy
|
msgid "Invalid storage size"
|
||||||
#| msgid "is not a proper name"
|
msgstr "Ungültige Speicher-Grösse"
|
||||||
msgid "Not a proper storage number"
|
|
||||||
msgstr "ist kein gültiger Name"
|
|
||||||
|
|
||||||
msgid "is not a proper name"
|
msgid "is not a proper name"
|
||||||
msgstr "ist kein gültiger Name"
|
msgstr "ist kein gültiger Name"
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="copyright text-muted small">Copyright © ungleich GmbH {% now "Y" %}. All Rights Reserved</p>
|
<p class="copyright text-muted small">Copyright © ungleich GmbH {% now "Y" %}. {% trans "All Rights Reserved" %}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -199,15 +199,15 @@ class IndexView(CreateView):
|
||||||
|
|
||||||
def validate_cores(self, value):
|
def validate_cores(self, value):
|
||||||
if (value > 48) or (value < 1):
|
if (value > 48) or (value < 1):
|
||||||
raise ValidationError(_('Not a proper cores number'))
|
raise ValidationError(_('Invalid number of cores'))
|
||||||
|
|
||||||
def validate_memory(self, value):
|
def validate_memory(self, value):
|
||||||
if (value > 200) or (value < 2):
|
if (value > 200) or (value < 2):
|
||||||
raise ValidationError(_('Not a proper ram number'))
|
raise ValidationError(_('Invalid RAM size'))
|
||||||
|
|
||||||
def validate_storage(self, value):
|
def validate_storage(self, value):
|
||||||
if (value > 2000) or (value < 10):
|
if (value > 2000) or (value < 10):
|
||||||
raise ValidationError(_('Not a proper storage number'))
|
raise ValidationError(_('Invalid storage size'))
|
||||||
|
|
||||||
@cache_control(no_cache=True, must_revalidate=True, no_store=True)
|
@cache_control(no_cache=True, must_revalidate=True, no_store=True)
|
||||||
def get(self, request, *args, **kwargs):
|
def get(self, request, *args, **kwargs):
|
||||||
|
|
|
@ -45,6 +45,9 @@ msgstr "Benachrichtigungen"
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr "Abmelden"
|
msgstr "Abmelden"
|
||||||
|
|
||||||
|
msgid "All Rights Reserved"
|
||||||
|
msgstr "Alle Rechte vorbehalten"
|
||||||
|
|
||||||
msgid "Invoice"
|
msgid "Invoice"
|
||||||
msgstr "Rechnung"
|
msgstr "Rechnung"
|
||||||
|
|
||||||
|
|
|
@ -115,7 +115,7 @@
|
||||||
{% if request.user.is_authenticated %}
|
{% if request.user.is_authenticated %}
|
||||||
<footer class="footer-vm">
|
<footer class="footer-vm">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<p class="copyright text-muted small">Copyright © ungleich GmbH {% now "Y" %}. All Rights Reserved</p>
|
<p class="copyright text-muted small">Copyright © ungleich GmbH {% now "Y" %}. {% trans "All Rights Reserved" %}</p>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
<a href="#contact">Contact</a>
|
<a href="#contact">Contact</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="copyright text-muted small">Copyright © ungleich GmbH {% now "Y" %}. All Rights Reserved</p>
|
<p class="copyright text-muted small">Copyright © ungleich GmbH {% now "Y" %}. {% trans "All Rights Reserved" %}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue