diff options
Diffstat (limited to 'perl-install/standalone/drakhelp')
-rwxr-xr-x | perl-install/standalone/drakhelp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/standalone/drakhelp b/perl-install/standalone/drakhelp index 8117d5b7b..2e77168a0 100755 --- a/perl-install/standalone/drakhelp +++ b/perl-install/standalone/drakhelp @@ -16,10 +16,11 @@ use log; sub usage() { print STDERR N(" drakhelp 0.1 Copyright (C) %s Mandriva. +Copyright (C) %s Mageia. This is free software and may be redistributed under the terms of the GNU GPL. Usage: -", '2003-2008') . N(" --help - display this help +", '2003-2008', '2011') . N(" --help - display this help ") . N(" --id <id_label> - load the html help page which refers to id_label ") . N(" --doc <link> - link to another web page ( for WM welcome frontend) "); @@ -49,5 +50,5 @@ if (-f $instpath) { } else { $ugtk2::wm_icon = "help"; my $in = interactive->vnew; - $in->ask_warn(N("Mandriva Linux Help Center"), N("No Help entry for %s\n", $idlabel)); + $in->ask_warn(N("%s Help Center"), N("No Help entry for %s\n", $idlabel)); } |