Switch to boost::format for non-trivial substitution of values into
authormmccutchen <mmccutchen@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Sat, 17 Apr 2010 01:44:50 +0000 (01:44 +0000)
committermmccutchen <mmccutchen@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Sat, 17 Apr 2010 01:44:50 +0000 (01:44 +0000)
user-visible strings.

This makes it easier to translate the patterns.  See the comment added
to src/util/gettext.hpp .

git-svn-id: http://supertux.lethargik.org/svn/supertux/trunk/supertux@6634 837edb03-e0f3-0310-88ca-d4d4e8b29345

INSTALL
src/supertux/levelintro.cpp
src/supertux/main.cpp
src/util/gettext.hpp

diff --git a/INSTALL b/INSTALL
index 9d195eb..9dac706 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -64,7 +64,7 @@ REQUIREMENTS
 * GLEW
     http://glew.sourceforge.net/
 
-* Boost's smart_ptr headers
+* Boost's smart_ptr and format headers
     http://www.boost.org/
 
   Note: We tried to write our code clean, portable and platform neutral, so it
index 98c5623..bbd3f21 100644 (file)
@@ -26,6 +26,7 @@
 #include "util/gettext.hpp"
 
 #include <sstream>
+#include <boost/format.hpp>
 
 LevelIntro::LevelIntro(const Level* level, const Statistics* best_level_statistics) :
   level(level), 
@@ -90,7 +91,7 @@ LevelIntro::draw(DrawingContext& context)
 
   std::string author = level->get_author();
   if ((author != "") && (author != "SuperTux Team")) {
-    std::string author_text = std::string(_("contributed by ")) + author;
+    std::string author_text = str(boost::format(_("contributed by %s")) % author);
     context.draw_center_text(Resources::small_font, author_text, Vector(0, py), LAYER_FOREGROUND1, LevelIntro::author_color);
     py += static_cast<int>(Resources::small_font->get_height());
   }
index 390eb20..27314d4 100644 (file)
@@ -22,6 +22,7 @@
 #include <iostream>
 #include <binreloc.h>
 #include <tinygettext/log.hpp>
+#include <boost/format.hpp>
 
 #include "supertux/main.hpp"
 
@@ -227,8 +228,10 @@ Main::init_physfs(const char* argv0)
 void
 Main::print_usage(const char* argv0)
 {
-  std::cerr << _("Usage: ") << argv0 << _(" [OPTIONS] [LEVELFILE]\n\n")
-            << _("Options:\n"
+  std::cerr << boost::format(_(
+                 "\n"
+                 "Usage: %s [OPTIONS] [LEVELFILE]\n\n"
+                 "Options:\n"
                  "  -f, --fullscreen             Run in fullscreen mode\n"
                  "  -w, --window                 Run in window mode\n"
                  "  -g, --geometry WIDTHxHEIGHT  Run SuperTux in given resolution\n"
@@ -246,7 +249,9 @@ Main::print_usage(const char* argv0)
                  "  --record-demo FILE LEVEL     Record a demo to FILE\n"
                  "  --play-demo FILE LEVEL       Play a recorded demo\n"
                  "  -s, --debug-scripts          Enable script debugger.\n"
-                 "\n")
+                 "\n"
+                 ))
+            % argv0
             << std::flush;
 }
 
index 4405c99..9c761ab 100644 (file)
 
 #include "supertux/globals.hpp"
 
+/*
+ * If you need to do a nontrivial substitution of values into a pattern, use
+ * boost::format rather than an ad-hoc concatenation.  That way, translators can
+ * translate the format string as a whole (and even rearrange the values if
+ * necessary with "%1$s"-style codes) instead of multiple pieces.  Patterns like
+ * "Label: %s" with only one string piece are a borderline case where
+ * boost::format is not really necessary.
+ *
+ * http://www.mihai-nita.net/article.php?artID=20060430a
+ *
+ * Bad:
+ *     std::string msg = _("You collected ") + num + _(" coins");
+ *     std::cout << _("You collected ") << num << _(" coins");
+ * Good:
+ *     #include <boost/format.hpp>
+ *     std::string msg = str(boost::format(_("You collected %d coins")) % num);
+ *     std::cout << boost::format(_("You collected %d coins")) % num;
+ */
+
 static inline std::string _(const std::string& message)
 {
   if (dictionary_manager)