Skip to content

Commit 4f9acf7

Browse files
authored
Fixed malformed translate tags in templates
1 parent cd69f2b commit 4f9acf7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

djangoproject/templates/conduct/faq.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ <h3 id="dsf-events">{% translate "What about events funded by the Django Softwar
7171
<a class="plink" href="{{ coc_url }}">require a code of conduct</a>.
7272
Isn't this redundant?{% endblocktranslate %}</p>
7373

74-
<p>{% translate "No: there's a difference between the two, and they're complementary.</p>
74+
<p>{% translate "No: there's a difference between the two, and they're complementary." %}</p>
7575

7676
<p>
7777
{% blocktranslate trimmed %}

djangoproject/templates/start.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ <h2>{% translate "Object-relational mapper" %}</h2>
136136
</div>
137137
</li>
138138
<li>
139-
<h2>{% translate "URLs and views</h2>
139+
<h2>{% translate "URLs and views" %}</h2>
140140
<div class="collapsing-content">
141141
<p>A clean, elegant URL scheme is an important detail in a high-quality web application. Django encourages beautiful URL design and doesn’t put any cruft in URLs, like .php or .asp.</p>
142142
<p>To design URLs for an application, you create a Python module called a URLconf. Like a table of contents for your app, it contains a simple mapping between URL patterns and your views.</p>

0 commit comments

Comments
 (0)