Merge pull request #1915 from 3d-gussner/MK3-fix_lang-check
Fix length false positives in lang-check.py
This commit is contained in:
commit
0a59e0a533
@ -38,7 +38,7 @@ def parse_txt(lang, no_warning):
|
||||
if rows is None:
|
||||
rows = 1
|
||||
|
||||
if len(translation) > cols*rows:
|
||||
if len(translation)-2 > cols*rows:
|
||||
stderr.write(
|
||||
"[E]: Text %s is longer then definiton on line %d\n" %
|
||||
(translation, lines))
|
||||
@ -56,7 +56,7 @@ def main():
|
||||
usage="$(prog)s lang")
|
||||
parser.add_argument(
|
||||
"lang", nargs='?', default="en", type=str,
|
||||
help="Check lang file (en|cs|de|es|fr|it)")
|
||||
help="Check lang file (en|cs|de|es|fr|it|pl)")
|
||||
parser.add_argument(
|
||||
"--no-warning", action="store_true",
|
||||
help="Disable warnings")
|
||||
|
Loading…
Reference in New Issue
Block a user