Revert "Exclude variation_name= from translate mark checks"

This reverts commit 2832fac8c7.
Apparently, this is the wrong way to do this
This commit is contained in:
Charles Dang 2015-01-29 13:44:06 +11:00
parent 2832fac8c7
commit 5ac65f74f5

View file

@ -1672,7 +1672,7 @@ def global_sanity_check(filename, lines):
pass
elif key == 'letter': # May be led with _s for void
pass
elif key in ('name', 'male_name', 'female_name', 'variation_name', 'value'): # FIXME: check this someday
elif key in ('name', 'male_name', 'female_name', 'value'): # FIXME: check this someday
pass
elif translatables.search(key):
if markcheck and has_tr_mark and lines[i].find("\"\"")>-1: