From 28e6b46a4187a915a2af91807db044beab05b2de Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 14 Jun 2009 17:01:12 +0000 Subject: [PATCH] (svn r16576) -Fix: show the line of the translation file that has the fault and not the line of the string in english.txt. --- src/strgen/strgen.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/strgen/strgen.cpp b/src/strgen/strgen.cpp index 9fab88b642..2d88230314 100644 --- a/src/strgen/strgen.cpp +++ b/src/strgen/strgen.cpp @@ -790,6 +790,10 @@ static void HandleString(char *str, bool master) ent->translated_case = c; } else { ent->translated = strdup(s); + /* If the string was translated, use the line from the + * translated language so errors in the translated file + * are properly referenced to. */ + ent->line = _cur_line; } } }