# # patch "ChangeLog" # from [468b81c4197e48615e1bc95f097eb46d346030f3] # to [5a85e3257eaa69b82b15fd26f6a3183104b26afe] # # patch "commands.cc" # from [b7c789a7ca488a85dea4d60819c6ab3550d0438d] # to [117dfc6b8b0280603664a849fa7e021934bd93b3] # ======================================================================== --- ChangeLog 468b81c4197e48615e1bc95f097eb46d346030f3 +++ ChangeLog 5a85e3257eaa69b82b15fd26f6a3183104b26afe @@ -1,5 +1,10 @@ 2005-08-23 Benoît Dejean + * commands.cc (CMD*): _("") -> "" as _("") returns the PO + header. + +2005-08-23 Benoît Dejean + * transforms.cc (check_idna_encoding): No i18n for unittests. 2005-08-23 Benoît Dejean ======================================================================== --- commands.cc b7c789a7ca488a85dea4d60819c6ab3550d0438d +++ commands.cc 117dfc6b8b0280603664a849fa7e021934bd93b3 @@ -1148,7 +1148,7 @@ // fload and fmerge are simple commands for debugging the line // merger. -CMD(fload, _("debug"), _(""), _("load file contents into db"), OPT_NONE) +CMD(fload, _("debug"), "", _("load file contents into db"), OPT_NONE) { string s = get_stdin(); @@ -1478,7 +1478,7 @@ ALIAS(co, checkout) -CMD(heads, _("tree"), _(""), _("show unmerged head revisions of branch"), +CMD(heads, _("tree"), "", _("show unmerged head revisions of branch"), OPT_BRANCH_NAME) { set heads; @@ -1880,7 +1880,7 @@ } -CMD(read, _("packet i/o"), _(""), _("read packets from stdin"), +CMD(read, _("packet i/o"), "", _("read packets from stdin"), OPT_NONE) { packet_db_writer dbw(app, true); @@ -1890,7 +1890,7 @@ } -CMD(reindex, _("network"), _(""), +CMD(reindex, _("network"), "", _("rebuild the indices used to sync over the network"), OPT_NONE) { @@ -2790,7 +2790,7 @@ // cout << "change set '" << name << "'\n" << dat << endl; // } -CMD(update, _("working copy"), _(""), +CMD(update, _("working copy"), "", _("update working copy.\n" "If a revision is given, base the update on that revision. If not,\n" "base the update on the head of the branch (given or implicit)."), @@ -3066,7 +3066,7 @@ } -CMD(merge, _("tree"), _(""), _("merge unmerged heads of branch"), +CMD(merge, _("tree"), "", _("merge unmerged heads of branch"), OPT_BRANCH_NAME % OPT_DATE % OPT_AUTHOR % OPT_LCA) { set heads; @@ -3200,7 +3200,7 @@ } } -CMD(refresh_inodeprints, _("tree"), _(""), _("refresh the inodeprint cache"), +CMD(refresh_inodeprints, _("tree"), "", _("refresh the inodeprint cache"), OPT_NONE) { enable_inodeprints();