kopia lustrzana https://github.com/wagtail/wagtail
Fix inconsistent capitalisation that resulted in unnecessary extra strings to translate
Thanks to @chimenopull/3429/head
rodzic
3348cd5c89
commit
ef5c61ece7
wagtail
wagtailadmin/templates/wagtailadmin/account
wagtailforms/templates/wagtailforms
|
@ -15,7 +15,7 @@
|
|||
{% include "wagtailadmin/shared/field_as_li.html" with field=field %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<input type="submit" value="{% trans 'Change Password' %}" class="button" />
|
||||
<input type="submit" value="{% trans 'Change password' %}" class="button" />
|
||||
</form>
|
||||
{% else %}
|
||||
<p>{% trans "Your password can't be changed here. Please contact a site administrator." %}</p>
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
{% extends "wagtailadmin/base.html" %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block titletag %}{% trans "Notification Preferences" %}{% endblock %}
|
||||
{% block titletag %}{% trans "Notification preferences" %}{% endblock %}
|
||||
{% block content %}
|
||||
{% trans "Notification Preferences" as prefs_str %}
|
||||
{% trans "Notification preferences" as prefs_str %}
|
||||
{% include "wagtailadmin/shared/header.html" with title=prefs_str %}
|
||||
|
||||
<div class="nice-padding">
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th colspan="{{ data_headings|length|add:1 }}">
|
||||
<button class="button no" id="delete-submissions" style="visibility: hidden">Delete selected submissions</button>
|
||||
<button class="button no" id="delete-submissions" style="visibility: hidden">{% trans "Delete selected submissions" %}</button>
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
Ładowanie…
Reference in New Issue