# HG changeset patch # User Martin Geisler # Date 2009-05-31 12:48:17 # Node ID f265106ccb538f755281a416aee12844fd8ac34e # Parent 45f626a39def2b1b8f7302453df35e4e929bfaae commands: expand "arg" -> "argument" in showconfig help strings It is easier to translate full sentences without abbreviations, or said differently, I don't know a short Danish word for "argument". diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -782,13 +782,13 @@ def debugcheckstate(ui, repo): def showconfig(ui, repo, *values, **opts): """show combined config settings from all hgrc files - With no args, print names and values of all config items. - - With one arg of the form section.name, print just the value of - that config item. - - With multiple args, print names and values of all config items - with matching section names. + With no arguments, print names and values of all config items. + + With one argument of the form section.name, print just the value + of that config item. + + With multiple arguments, print names and values of all config + items with matching section names. With the --debug flag, the source (filename and line number) is printed for each config item.