Commit 91895e53 authored by Michal Čihař's avatar Michal Čihař

Improve label for fuzzy strings

Indicate that they are marked for review...
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent ab642e61
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<td>{% trans "Untranslated strings:" %}</th><td>{{ translation.untranslated }} ({{ translation.get_untranslated_percent }}%)</td> <td>{% trans "Untranslated strings:" %}</th><td>{{ translation.untranslated }} ({{ translation.get_untranslated_percent }}%)</td>
</tr> </tr>
<tr> <tr>
<td>{% trans "Strings needing review:" %}</th><td>{{ translation.fuzzy }} ({{ translation.get_fuzzy_percent }}%)</td> <td>{% trans "Strings marked for review:" %}</th><td>{{ translation.fuzzy }} ({{ translation.get_fuzzy_percent }}%)</td>
</tr> </tr>
</table> </table>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
{% trans "Total strings:" %} {{ translation.total }} {% trans "Total strings:" %} {{ translation.total }}
{% trans "Translated strings:" %} {{ translation.translated }} ({{ translation.get_translated_percent }}%) {% trans "Translated strings:" %} {{ translation.translated }} ({{ translation.get_translated_percent }}%)
{% trans "Untranslated strings:" %} {{ translation.untranslated }} ({{ translation.get_untranslated_percent }}%) {% trans "Untranslated strings:" %} {{ translation.untranslated }} ({{ translation.get_untranslated_percent }}%)
{% trans "Strings needing review:" %} {{ translation.fuzzy }} ({{ translation.get_fuzzy_percent }}%) {% trans "Strings marked for review:" %} {{ translation.fuzzy }} ({{ translation.get_fuzzy_percent }}%)
{% blocktrans %}You can translate at {{ translation_url }}{% endblocktrans %} {% blocktrans %}You can translate at {{ translation_url }}{% endblocktrans %}
{% endfilter%}{% endautoescape %}{% include "mail/signature.txt" %} {% endfilter%}{% endautoescape %}{% include "mail/signature.txt" %}
...@@ -431,7 +431,7 @@ class FilterField(forms.ChoiceField): ...@@ -431,7 +431,7 @@ class FilterField(forms.ChoiceField):
('nottranslated', _('Not translated strings')), ('nottranslated', _('Not translated strings')),
('todo', _('Strings needing attention')), ('todo', _('Strings needing attention')),
('translated', _('Translated strings')), ('translated', _('Translated strings')),
('fuzzy', _('Strings needing review')), ('fuzzy', _('Strings marked for review')),
('suggestions', _('Strings with suggestions')), ('suggestions', _('Strings with suggestions')),
('comments', _('Strings with comments')), ('comments', _('Strings with comments')),
('allchecks', _('Strings with any failing checks')), ('allchecks', _('Strings with any failing checks')),
......
...@@ -1005,7 +1005,7 @@ class Translation(models.Model, URLMixin, PercentMixin, LoggerMixin): ...@@ -1005,7 +1005,7 @@ class Translation(models.Model, URLMixin, PercentMixin, LoggerMixin):
# Fuzzy strings # Fuzzy strings
result.add_if( result.add_if(
'fuzzy', 'fuzzy',
_('Strings needing review'), _('Strings marked for review'),
self.fuzzy, self.fuzzy,
'danger', 'danger',
self.fuzzy_words, self.fuzzy_words,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment