No, it actually confirms it was a bug, since that commit looks like the
one that fixed it (I can no longer reproduce it).
Look at the code:
+static const char *
+getLocale ()
+{
+ char *lang = getenv ("LC_ALL");
+
+ if (!lang || !strlen (lang))
+ lang = getenv ("LC_MESSAGES");
+
+ if (!lang || !strlen (lang))
+ lang = getenv ("LANG");
+
+ return lang ? lang : "";
+}
This starts by looking at $LC_ALL. If that's unset or empty it tries
$LC_MESSAGES, and if that's also unset or empty it falls back to $LANG.
This is exactly what it should be, AFAICT.
--
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778438
Title:
compizconfig-settings-manager ignores $LC_MESSAGES
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/compizconfig-settings-manager/+bug/778438/+subscriptions
--
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs