# # # patch "ChangeLog" # from [78d7e4aa4d46fc2fc9cce34ea8a767e7d82c6f6c] # to [7cf9742a4e0ea977e7cb6a970099c6483bcef5d1] # # patch "commands.cc" # from [0afe441c27aa918bc589a69620687bf1415c29ac] # to [a06be616bdfe6dab1d5c5c2e7ece181a933e2413] # ============================================================ --- ChangeLog 78d7e4aa4d46fc2fc9cce34ea8a767e7d82c6f6c +++ ChangeLog 7cf9742a4e0ea977e7cb6a970099c6483bcef5d1 @@ -1,5 +1,9 @@ 2006-04-01 Benoît Dejean + * commands.cc (CMD(attr)): 2 more strings for I18N. + +2006-04-01 Benoît Dejean + * xdelta.cc (apply_copy): Fixed warning. 2006-03-31 Nathaniel Smith ============================================================ --- commands.cc 0afe441c27aa918bc589a69620687bf1415c29ac +++ commands.cc a06be616bdfe6dab1d5c5c2e7ece181a933e2413 @@ -2281,7 +2281,7 @@ has_any_live_attrs = true; } if (!has_any_live_attrs) - cout << "No attributes for " << path << endl; + cout << F("No attributes for '%s'") % path << endl; } else if (args.size() == 3) { @@ -2290,7 +2290,7 @@ if (i != node->attrs.end() && i->second.first) cout << path << " : " << i->first << "=" << i->second.second << endl; else - cout << "No attribute " << a_key << " on path " << path << endl; + cout << F("No attribute '%s' on path '%s'") % a_key % path << endl; } else throw usage(name);