summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2016-09-06 13:05:40 -0400
committerMike Gilbert <floppym@gentoo.org>2016-09-06 13:06:14 -0400
commit21b9b696ff49990923422c9f5cbf6260f9e1efd2 (patch)
treebfece8cb6649ba964095202907480debe3fe50c5 /eclass/chromium-2.eclass
parentnet-dns/pdns-recursor: Version bump (diff)
downloadgentoo-21b9b696ff49990923422c9f5cbf6260f9e1efd2.tar.gz
gentoo-21b9b696ff49990923422c9f5cbf6260f9e1efd2.tar.bz2
gentoo-21b9b696ff49990923422c9f5cbf6260f9e1efd2.zip
chromium-2.eclass: replace a few leftover refs to LINGUAS
Diffstat (limited to 'eclass/chromium-2.eclass')
-rw-r--r--eclass/chromium-2.eclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/chromium-2.eclass b/eclass/chromium-2.eclass
index 27275f283194..eeae750c6f71 100644
--- a/eclass/chromium-2.eclass
+++ b/eclass/chromium-2.eclass
@@ -50,7 +50,7 @@ _chromium_set_l10n_IUSE() {
for lang in ${CHROMIUM_LANGS}; do
# Default to enabled since we bundle them anyway.
# USE-expansion will take care of disabling the langs the user has not
- # selected via LINGUAS.
+ # selected via L10N.
IUSE+=" +l10n_${lang}"
done
}
@@ -63,7 +63,7 @@ fi
# @USAGE:
# @DESCRIPTION:
# Removes pak files from the current directory for languages that the user has
-# not selected via the LINGUAS variable.
+# not selected via the L10N variable.
# Also performs QA checks to ensure CHROMIUM_LANGS has been set correctly.
chromium_remove_language_paks() {
local lang pak
@@ -71,7 +71,7 @@ chromium_remove_language_paks() {
# Look for missing pak files.
for lang in ${CHROMIUM_LANGS}; do
if [[ ! -e ${lang}.pak ]]; then
- eqawarn "LINGUAS warning: no .pak file for ${lang} (${lang}.pak not found)"
+ eqawarn "L10N warning: no .pak file for ${lang} (${lang}.pak not found)"
fi
done
@@ -87,7 +87,7 @@ chromium_remove_language_paks() {
continue
fi
if ! has ${lang} ${CHROMIUM_LANGS}; then
- eqawarn "LINGUAS warning: no ${lang} in LANGS"
+ eqawarn "L10N warning: no ${lang} in LANGS"
continue
fi
if ! use l10n_${lang}; then