Skip to content

Commit d0c6abb

Browse files
shubham76agjohnson
authored andcommitted
Changed 'Submit' text on buttons with something more meaningful (#3749)
* Changed 'Submit' text on buttons with something more meaningful * Update project_advertising.html * Update project_edit.html * fixed typo * Removed the capitalization in sentences or texts on submit buttons
1 parent baa6b07 commit d0c6abb

10 files changed

+13
-13
lines changed

readthedocs/templates/core/project_details.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ <h3>{% trans "Build a version" %}</h3>
6666
<option value="{{ version.slug }}">{{ version.slug }}</option>
6767
{% endfor %}
6868
</select>
69-
<input type="submit" value="{% trans "Build" %}">
69+
<input type="submit" value="{% trans "Build version" %}">
7070
</form>
7171
</div>
7272
</div>

readthedocs/templates/projects/domain_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h3> {% trans "Add new Domain" %} </h3>
3535
<form method="post" action="{% url 'projects_domains_create' project.slug %}">{% csrf_token %}
3636
{{ form.as_p }}
3737
<p>
38-
<input style="display: inline;" type="submit" value="{% trans "Submit" %}">
38+
<input style="display: inline;" type="submit" value="{% trans "Add" %}">
3939
</p>
4040
</form>
4141
{% endblock %}

readthedocs/templates/projects/integration_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
{% empty %}
3636
<li class="module-item">
3737
<p class="quiet">
38-
{% trans 'No integrations are currently configured' %}
38+
{% trans 'No integrations are currently configured.' %}
3939
</p>
4040
</li>
4141
{% endfor %}

readthedocs/templates/projects/project_advanced.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<form method="post" action=".">{% csrf_token %}
1616
{{ form.as_p }}
1717
<p>
18-
<input style="display: inline;" type="submit" value="{% trans "Submit" %}">
18+
<input style="display: inline;" type="submit" value="{% trans "Save" %}">
1919
</p>
2020
</form>
2121
{% endblock %}

readthedocs/templates/projects/project_edit.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
</p>
2020
{{ form.as_p }}
2121
<p>
22-
<input style="display: inline;" type="submit" value="{% trans "Submit" %}">
23-
{% comment %}Translators: The 'or' here is in between 'Submit' and 'delete'.{% endcomment %}
22+
<input style="display: inline;" type="submit" value="{% trans "Save" %}">
23+
{% comment %}Translators: The 'or' here is in between 'Save' and 'Delete project'.{% endcomment %}
2424
{% trans "or" %}
25-
<a href="{% url "projects_delete" project.slug %}">{% trans "delete" %}</a>
25+
<a href="{% url "projects_delete" project.slug %}">{% trans "Delete project" %}</a>
2626
</p>
2727
</form>
2828
{% endblock %}

readthedocs/templates/projects/project_notifications.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ <h3>{% trans "New Email Notifications" %}</h3>
6666
<form method="post" action=".">{% csrf_token %}
6767
{{ email_form }}
6868
<p>
69-
<input style="display: inline;" type="submit" value="{% trans "Submit" %}">
69+
<input style="display: inline;" type="submit" value="{% trans "Add" %}">
7070
</p>
7171
</form>
7272

@@ -77,7 +77,7 @@ <h3>{% trans "New Webhook Notifications" %}</h3>
7777
<form method="post" action=".">{% csrf_token %}
7878
{{ webhook_form }}
7979
<p>
80-
<input style="display: inline;" type="submit" value="{% trans "Submit" %}">
80+
<input style="display: inline;" type="submit" value="{% trans "Add" %}">
8181
</p>
8282
</form>
8383
{% endblock %}

readthedocs/templates/projects/project_redirects.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ <h3>{% trans "Redirects" %}</h3>
106106
{{ form.as_p }}
107107
<div id="dynamic-redirect" class="empty"></div>
108108
<p>
109-
<input style="display: inline;" type="submit" value="{% trans "Submit" %}">
109+
<input style="display: inline;" type="submit" value="{% trans "Add" %}">
110110
</p>
111111
</form>
112112
{% endblock %}

readthedocs/templates/projects/project_translations.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h3> {% trans "Existing Translations" %} </h3>
3333
<form method="post" action=".">{% csrf_token %}
3434
{{ form.as_p }}
3535
<p>
36-
<input style="display: inline;" type="submit" value="{% trans "Submit" %}">
36+
<input style="display: inline;" type="submit" value="{% trans "Add" %}">
3737
</p>
3838
</form>
3939
{% endblock %}

readthedocs/templates/projects/project_users.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ <h3>{% trans "Add Maintainer" %}</h3>
4848
<form method="post" action=".">{% csrf_token %}
4949
{{ form.as_p }}
5050
<p>
51-
<input style="display: inline;" type="submit" value="{% trans "Submit" %}">
51+
<input style="display: inline;" type="submit" value="{% trans "Add" %}">
5252
</p>
5353
</form>
5454
{% endblock %}

readthedocs/templates/projects/project_versions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ <h3>{{ field.label}}</h3>
4949
{% endfor %}
5050

5151
<p>
52-
<input style="display: inline;" type="submit" value="{% trans "Submit" %}">
52+
<input style="display: inline;" type="submit" value="{% trans "Save" %}">
5353
</p>
5454
</form>
5555
{% endblock %}

0 commit comments

Comments
 (0)