aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2024-06-27 21:17:23 +0200
committerFabian Groffen <grobian@gentoo.org>2024-06-27 21:17:23 +0200
commit092dbac3c93d4a5f6fc2e5d496e17a0405c950a7 (patch)
tree5615ba34b47488d2463eac8110d4c492c9e616f8 /main.c
parentqwhich: add -r option to limit search to a repository (diff)
downloadportage-utils-092dbac3c93d4a5f6fc2e5d496e17a0405c950a7.tar.gz
portage-utils-092dbac3c93d4a5f6fc2e5d496e17a0405c950a7.tar.bz2
portage-utils-092dbac3c93d4a5f6fc2e5d496e17a0405c950a7.zip
*: remove i18n/gettext support
This looked very rudimentary, and half, there were no translations, and not all strings were covered. It was never enabled, so dummy for many releases. Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'main.c')
-rw-r--r--main.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/main.c b/main.c
index 7225eedd..5d7c97d2 100644
--- a/main.c
+++ b/main.c
@@ -1,5 +1,5 @@
/*
- * Copyright 2005-2023 Gentoo Foundation
+ * Copyright 2005-2024 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
*
* Copyright 2005-2008 Ned Ludd - <solar@gentoo.org>
@@ -106,13 +106,13 @@ usage(int status, const char *flags, struct option const opts[],
fprintf(fp, " %s%9s%s %s%-16s%s%s:%s %s\n",
YELLOW, applets[i].name, NORM,
DKBLUE, applets[i].opts, NORM,
- RED, NORM, _(applets[i].desc));
+ RED, NORM, applets[i].desc);
} else if (blabber > 0) {
fprintf(fp, "%susage:%s %s%s%s [opts] %s%s%s %s:%s %s\n",
GREEN, NORM,
YELLOW, applets[blabber].name, NORM,
DKBLUE, applets[blabber].opts, NORM,
- RED, NORM, _(applets[blabber].desc));
+ RED, NORM, applets[blabber].desc);
if (desc)
fprintf(fp, "\n%s\n", desc);
}
@@ -154,10 +154,10 @@ usage(int status, const char *flags, struct option const opts[],
/* then wrap the help text, if necessary */
prefixlen = 6 + 2 + optlen + 1 + 1 + 1;
if ((size_t)twidth < prefixlen + 10) {
- fprintf(fp, "%s\n", _(help[i]));
+ fprintf(fp, "%s\n", help[i]);
} else {
const char *t;
- hstr = _(help[i]);
+ hstr = help[i];
l = strlen(hstr);
while (twidth - prefixlen < l) {
/* search backwards for a space */
@@ -1240,10 +1240,6 @@ int main(int argc, char **argv)
IF_DEBUG(init_coredumps());
argv0 = argv[0];
- setlocale(LC_ALL, "");
- bindtextdomain(argv0, CONFIG_EPREFIX "usr/share/locale");
- textdomain(argv0);
-
/* note: setting nocolor here is pointless, since
* initialize_portage_env is going to re-init nocolor, so make
* sure we modify the default instead. */