--- a/i18n/check-translation.py Sun Nov 01 13:04:14 2015 -0600
+++ b/i18n/check-translation.py Tue Nov 03 22:39:26 2015 +0900
@@ -71,9 +71,7 @@
deprecatedpe = None
@scanner()
def deprecatedsetup(pofile):
- pes = [p for p in pofile
- if ((p.msgid == 'DEPRECATED' or p.msgid == '(DEPRECATED)') and
- p.msgstr)]
+ pes = [p for p in pofile if p.msgid == '(DEPRECATED)' and p.msgstr]
if len(pes):
global deprecatedpe
deprecatedpe = pes[0]
@@ -82,8 +80,8 @@
def deprecated(pe):
"""Check for DEPRECATED
>>> ped = polib.POEntry(
- ... msgid = 'DEPRECATED',
- ... msgstr= 'DETACERPED')
+ ... msgid = '(DEPRECATED)',
+ ... msgstr= '(DETACERPED)')
>>> deprecatedsetup([ped])
>>> pe = polib.POEntry(
... msgid = 'Something (DEPRECATED)',