CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Guillaume Melquiond <[EMAIL PROTECTED]> 05/05/14 19:13:52
Modified files:
src : tstring.cpp
Log message:
Missing untranslatable flag. Fix second paragraph of Fundamentals not
being translated.
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/tstring.cpp.diff?tr1=1.10&tr2=1.11&r1=text&r2=text
Patches:
Index: wesnoth/src/tstring.cpp
diff -u wesnoth/src/tstring.cpp:1.10 wesnoth/src/tstring.cpp:1.11
--- wesnoth/src/tstring.cpp:1.10 Sat May 14 08:56:13 2005
+++ wesnoth/src/tstring.cpp Sat May 14 19:13:52 2005
@@ -1,4 +1,4 @@
-/* $Id: tstring.cpp,v 1.10 2005/05/14 08:56:13 silene Exp $ */
+/* $Id: tstring.cpp,v 1.11 2005/05/14 19:13:52 silene Exp $ */
/*
Copyright (C) 2004 by Philippe Plantier <[EMAIL PROTECTED]>
Copyright (C) 2005 by Guillaume Melquiond <[EMAIL PROTECTED]>
@@ -252,6 +252,7 @@
std::string substr(w.begin(), w.end());
if(w.translatable()) {
chunk.translatable_ = true;
+ chunk.last_untranslatable_ = false;
chunk.value_ = TRANSLATABLE_PART + w.textdomain() +
TEXTDOMAIN_SEPARATOR + substr;
} else {