comparison mercurial/commands.py @ 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 7aa1526d4fc5
children 6f0f69da003e
comparison
equal deleted inserted replaced
8663:45f626a39def 8664:f265106ccb53
780 raise util.Abort(error) 780 raise util.Abort(error)
781 781
782 def showconfig(ui, repo, *values, **opts): 782 def showconfig(ui, repo, *values, **opts):
783 """show combined config settings from all hgrc files 783 """show combined config settings from all hgrc files
784 784
785 With no args, print names and values of all config items. 785 With no arguments, print names and values of all config items.
786 786
787 With one arg of the form section.name, print just the value of 787 With one argument of the form section.name, print just the value
788 that config item. 788 of that config item.
789 789
790 With multiple args, print names and values of all config items 790 With multiple arguments, print names and values of all config
791 with matching section names. 791 items with matching section names.
792 792
793 With the --debug flag, the source (filename and line number) is 793 With the --debug flag, the source (filename and line number) is
794 printed for each config item. 794 printed for each config item.
795 """ 795 """
796 796