changeset 8664:f265106ccb53

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".
author Martin Geisler <mg@lazybytes.net>
date Sun, 31 May 2009 14:48:17 +0200
parents 45f626a39def
children e4ad46f9a004
files mercurial/commands.py
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- 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.