Commit 62ebed8a authored by Michal Čihař's avatar Michal Čihař

Add filter for not translated strings

Issue #967
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent b474b77c
......@@ -50,6 +50,8 @@ from weblate.trans.util import (
SIMPLE_FILTERS = {
'fuzzy': {'fuzzy': True},
'untranslated': {'translated': False},
'todo': {'translated': False},
'nottranslated': {'translated': False, 'fuzzy': False},
'translated': {'translated': True},
'suggestions': {'has_suggestion': True},
'comments': {'has_comment': True},
......
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