# # patch "ChangeLog" # from [5cc81ca9bf5abbc1fa4a78c39bfff1ed91d72bf5] # to [bcbcbf7a983668e682994c016bf1c5bfc09a8be0] # # patch "commands.cc" # from [117dfc6b8b0280603664a849fa7e021934bd93b3] # to [e8ee9760489d6bf951f927eb2e9f93ebdfa82cee] # # patch "monotone.cc" # from [5e9b9255786a729640bc5fedb9da7eec2282d968] # to [622baf2c20a7e9fc1304b3078560e90f9bb58e11] # ======================================================================== --- ChangeLog 5cc81ca9bf5abbc1fa4a78c39bfff1ed91d72bf5 +++ ChangeLog bcbcbf7a983668e682994c016bf1c5bfc09a8be0 @@ -1,3 +1,8 @@ +2005-08-24 Benoît Dejean + + * monotone.cc: + * commands.cc: Two more i18n strings. + 2005-08-23 Benoît Dejean * lua.cc: boost::format vs. F. ======================================================================== --- commands.cc 117dfc6b8b0280603664a849fa7e021934bd93b3 +++ commands.cc e8ee9760489d6bf951f927eb2e9f93ebdfa82cee @@ -187,7 +187,7 @@ } vector sorted; - out << "commands:" << endl; + out << _("commands:") << endl; for (i = cmds.begin(); i != cmds.end(); ++i) { sorted.push_back(i->second); ======================================================================== --- monotone.cc 5e9b9255786a729640bc5fedb9da7eec2282d968 +++ monotone.cc 622baf2c20a7e9fc1304b3078560e90f9bb58e11 @@ -521,7 +521,7 @@ if (count != 0) { ostringstream sstr; - sstr << "Options specific to 'monotone " << u.which << "':"; + sstr << F("Options specific to 'monotone %s':") % u.which; options[0].descrip = strdup(sstr.str().c_str()); options[0].argInfo |= POPT_ARGFLAG_DOC_HIDDEN;