Skip to content

Commit

Permalink
Merge pull request mozilla#6143 from emilghittasv/l10n-fix-questions-…
Browse files Browse the repository at this point in the history
…missing-localization

[l10n] Fix missing localization strings inside posted AAQ questions
  • Loading branch information
akatsoulas authored Jul 25, 2024
2 parents bda7535 + 8aee240 commit 395580b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ <h2 class="sumo-page-subheading">{{ title }}</h2>
<ul id="id_event_type">
<li class="field radio is-condensed">
<input type="radio" name="event_type" value="reply" required="" checked="" id="id_event_type_0">
<label for="id_event_type_0">when anybody replies.</label>
<label for="id_event_type_0">{{ _('when anybody replies') }}.</label>
</li>
<li class="field radio is-condensed">
<input type="radio" name="event_type" value="solution" required="" id="id_event_type_1">
<label for="id_event_type_1">when a solution is found.</label>
<label for="id_event_type_1">{{ _('when a solution is found') }}.</label>
</li>
</ul>

Expand Down
2 changes: 1 addition & 1 deletion kitsune/questions/jinja2/questions/question_details.html
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ <h3 class="sumo-card-heading">{{ _('Post a Reply') }}</h3>
class="tag-adder">
{% csrf_token %}
<div class="field is-condensed">
<label for="id_tag_input">Add a tag:</label>
<label for="id_tag_input">{{ _('Add a tag') }}:</label>
<input id="id_tag_input" type="text" name="tag-name" size="12" maxlength="100"
class="searchbox autocomplete-tags {% if tag_adding_error %} invalid{% endif %}"
value="{{ tag_adding_value }}" />
Expand Down

0 comments on commit 395580b

Please sign in to comment.