Revert "Translator: fall back to LC_ALL if LC_MESSAGES is not defined"

This reverts commit 9fe2d4928d2542348a0e6932951628588875396c.
This commit is contained in:
Alexander A. Klimov 2015-06-12 13:29:31 +02:00
parent 9fe2d4928d
commit b58ffbe034

View File

@ -100,11 +100,7 @@ class Translator
{ {
$contextString = "{$context}\004{$text}"; $contextString = "{$context}\004{$text}";
$translation = dcgettext( $translation = dcgettext($domain, $contextString, LC_MESSAGES);
$domain,
$contextString,
defined('LC_MESSAGES') ? LC_MESSAGES : LC_ALL
);
if ($translation == $contextString) { if ($translation == $contextString) {
return $text; return $text;
@ -130,13 +126,7 @@ class Translator
{ {
$contextString = "{$context}\004{$textSingular}"; $contextString = "{$context}\004{$textSingular}";
$translation = dcngettext( $translation = dcngettext($domain, $contextString, $textPlural, $number, LC_MESSAGES);
$domain,
$contextString,
$textPlural,
$number,
defined('LC_MESSAGES') ? LC_MESSAGES : LC_ALL
);
if ($translation == $contextString || $translation == $textPlural) { if ($translation == $contextString || $translation == $textPlural) {
return ($number == 1 ? $textSingular : $textPlural); return ($number == 1 ? $textSingular : $textPlural);