Skip to content

Commit

Permalink
Fix incomplete translation of "Update members" widget
Browse files Browse the repository at this point in the history
Marks the default value for the search fields of the "Update members"
widget translatable. Also updates the English PO file accordingly.

Change-Id: I8c317de49087b4207bcb774dd241fd1e4591882b
Closes-Bug: #1239927
  • Loading branch information
psviderski committed Oct 15, 2013
1 parent 8f98790 commit 3b79ec1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions horizon/locale/en/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ msgstr ""

#: tables/actions.py:381
#: templates/horizon/common/_data_table_table_actions.html:13
#: templates/horizon/common/_workflow_step_update_members.html:11
#: templates/horizon/common/_workflow_step_update_members.html:17
msgid "Filter"
msgstr ""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
<div class="left">
<div class="fake_table fake_table_header fake_{{ step.slug }}_table">
<span class="members_title">{{ step.available_list_title }}</span>
<input type="text" name="available_{{ step.slug }}_filter" id="available_{{ step.slug }}" class="filter {{ step.slug }}_filter" placeholder="Filter">
<input type="text" name="available_{{ step.slug }}_filter" id="available_{{ step.slug }}" class="filter {{ step.slug }}_filter" placeholder="{% trans "Filter" %}">
</div>
</div>
<div class="right">
<div class="fake_table fake_table_header fake_{{ step.slug }}_table">
<span class="members_title">{{ step.members_list_title }}</span>
<input type="text" name="{{ step.slug }}_members_filter" id="{{ step.slug }}_members" class="filter {{ step.slug }}_filter" placeholder="Filter">
<input type="text" name="{{ step.slug }}_members_filter" id="{{ step.slug }}_members" class="filter {{ step.slug }}_filter" placeholder="{% trans "Filter" %}">
</div>
</div>
</div>
Expand Down

0 comments on commit 3b79ec1

Please sign in to comment.