Author: mordante
Date: Tue Jun 23 21:40:55 2009
New Revision: 36370

URL: http://svn.gna.org/viewcvs/wesnoth?rev=36370&view=rev
Log:
Properly translate dialog title (bug #13761).

Modified:
    branches/1.6/changelog
    branches/1.6/src/game_preferences_display.cpp

Modified: branches/1.6/changelog
URL: 
http://svn.gna.org/viewcvs/wesnoth/branches/1.6/changelog?rev=36370&r1=36369&r2=36370&view=diff
==============================================================================
--- branches/1.6/changelog (original)
+++ branches/1.6/changelog Tue Jun 23 21:40:55 2009
@@ -1,7 +1,8 @@
 Version 1.6.3+svn:
   * Language and translations
     * Updated translations: French.
-
+ * Miscellaneous and bugfixes:
+    * Properly translate dialog title (bug #13761)
 
 Version 1.6.3:
  * Campaigns:

Modified: branches/1.6/src/game_preferences_display.cpp
URL: 
http://svn.gna.org/viewcvs/wesnoth/branches/1.6/src/game_preferences_display.cpp?rev=36370&r1=36369&r2=36370&view=diff
==============================================================================
--- branches/1.6/src/game_preferences_display.cpp (original)
+++ branches/1.6/src/game_preferences_display.cpp Tue Jun 23 21:40:55 2009
@@ -1204,7 +1204,9 @@
 
        symbols["filename"] = filename;
 
-       const std::string title =  vgettext("Find $filename server binary to 
host networked games", symbols);
+       const std::string title = utils::interpolate_variables_into_string(
+                         _("Find $filename server binary to host networked 
games")
+                       , &symbols);
 
        int res = dialogs::show_file_chooser_dialog(disp, path, title, false, 
filename);
        if (res == 0)


_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits

Reply via email to