diff options
author | Dan McGee <dan@archlinux.org> | 2007-12-04 09:56:28 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-12-04 09:56:28 -0600 |
commit | 874f3379ffe75582882a48b5d6b6533659750e7c (patch) | |
tree | 2ae0c3fea3acf0d57b9e9e3ce0b89529f595fe3f /src | |
parent | 665b61082ee52975e2dba657955e962ae5422a1e (diff) | |
download | pacman-874f3379ffe75582882a48b5d6b6533659750e7c.tar.xz |
Update some errors in messages found during localization
Also perform the updates in the message files so we don't break
translations.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/pacman.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 56f25111..ac81f1ed 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -112,7 +112,7 @@ static void usage(int op, const char * const myname) printf(_(" -s, --search <regex> search locally-installed packages for matching strings\n")); printf(_(" -t, --orphans list all packages not required by any package\n")); printf(_(" -u, --upgrades list all packages that can be upgraded\n")); - printf(_(" -q --quiet show less information for query and search\n")); + printf(_(" -q, --quiet show less information for query and search\n")); } else if(op == PM_OP_SYNC) { printf("%s: %s {-S --sync} [%s] [%s]\n", str_usg, myname, str_opt, str_pkg); printf("%s:\n", str_opt); @@ -129,7 +129,7 @@ static void usage(int op, const char * const myname) printf(_(" -u, --sysupgrade upgrade all packages that are out of date\n")); printf(_(" -w, --downloadonly download packages but do not install/upgrade anything\n")); printf(_(" -y, --refresh download fresh package databases from the server\n")); - printf(_(" --needed only install outdated or not yet installed packages\n")); + printf(_(" --needed only upgrade outdated or not yet installed packages\n")); printf(_(" --ignore <pkg> ignore a package upgrade (can be used more than once)\n")); printf(_(" --ignoregroup <grp>\n" " ignore a group upgrade (can be used more than once)\n")); |