Skip to content

Commit 92e843f

Browse files
Adds missing translation strings (#9770)
Adds missing translation strings found by @Justman10000 #9638 Co-authored-by: Justin Nogossek <[email protected]> Co-authored-by: Justin Nogossek <[email protected]>
1 parent 426daae commit 92e843f

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

readthedocs/templates/homepage.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ <h2>{% trans "Technical documentation lives here" %}</h2>
5555

5656
<section>
5757
<div class="feature">
58-
<h3>Free docs hosting for open source</h3>
58+
<h3>{% trans "Free docs hosting for open source" %}</h3>
5959
<p>
6060
{% blocktrans trimmed %}
6161
We will host your documentation for free, forever.
@@ -66,7 +66,7 @@ <h3>Free docs hosting for open source</h3>
6666
</p>
6767
</div>
6868
<div class="feature">
69-
<h3>Always up to date</h3>
69+
<h3>{% trans "Always up to date" %}</h3>
7070
<p>
7171
{% blocktrans trimmed %}
7272
Whenever you push code to your favorite version control service,
@@ -81,7 +81,7 @@ <h3>Always up to date</h3>
8181

8282
<section>
8383
<div class="feature">
84-
<h3>Downloadable formats</h3>
84+
<h3>{% trans "Downloadable formats" %}</h3>
8585
<p>
8686
{% blocktrans trimmed %}
8787
We build and host your docs for the web, but they are
@@ -91,7 +91,7 @@ <h3>Downloadable formats</h3>
9191
</p>
9292
</div>
9393
<div class="feature">
94-
<h3>Multiple versions</h3>
94+
<h3>{% trans "Multiple versions" %}</h3>
9595
<p>
9696
{% blocktrans trimmed %}
9797
We can host and build multiple versions of your docs so having a

readthedocs/templates/profiles/private/advertising_profile.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
{% url "gold_detail" as gold_detail %}
4040
{% url "donate" as donate_url %}
4141
{% blocktrans trimmed %}
42-
You can <strong>go ad-free</strong> by becoming a <a href="{{ gold_detail }}">Gold member</a> or <a href="{{ donate_url }}">Supporter</a> of Read the Docs</a>.
42+
You can <strong>go ad-free</strong> by becoming a <a href="{{ gold_detail }}">Gold member</a> or <a href="{{ donate_url }}">Supporter</a> of Read the Docs.
4343
{% endblocktrans %}
4444
</p>
4545

readthedocs/templates/profiles/private/token_list.html

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@
99
{% block edit_content_header %} {% trans "API Tokens" %} {% endblock %}
1010

1111
{% block edit_content %}
12-
<p>Personal Access Token are tokens that allow you to use the Read the Docs APIv3 being authenticated as yourself. See <a href="https://docs.readthedocs.org/page/api/v3.html">APIv3 documentation</a> for more information.</p>
12+
<p>
13+
{% blocktrans trimmed %}
14+
Personal Access Token are tokens that allow you to use the Read the Docs APIv3 being authenticated as yourself.
15+
See <a href="https://docs.readthedocs.org/page/api/v3.html">APIv3 documentation</a> for more information.
16+
{% endblocktrans %}
17+
</p>
1318

1419
{% if not object_list %}
1520
<div class="button-bar">

readthedocs/templates/projects/environmentvariable_list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
{% block project_edit_content_header %}{% trans "Environment Variables" %}{% endblock %}
1313

1414
{% block project_edit_content %}
15-
<p>Environment variables allow you to change the way that your build behaves. Take into account that these environment variables are available to all build steps.</p>
15+
<p>{% trans "Environment variables allow you to change the way that your build behaves. Take into account that these environment variables are available to all build steps." %}</p>
1616

1717
<div class="button-bar">
1818
<ul>

0 commit comments

Comments
 (0)