commands: expand "arg" -> "argument" in showconfig help strings
authorMartin Geisler <mg@lazybytes.net>
Sun, 31 May 2009 14:48:17 +0200
changeset 8664 f265106ccb53
parent 8663 45f626a39def
child 8665 e4ad46f9a004
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".
mercurial/commands.py
--- a/mercurial/commands.py	Sun May 31 01:30:16 2009 +0200
+++ b/mercurial/commands.py	Sun May 31 14:48:17 2009 +0200
@@ -782,13 +782,13 @@
 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.