Style fixes: Capitalization of "true" and "false"

Use "true" instead of "TRUE" and "false" instead of "FALSE" or "False".

Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
Lukas Fleischer 2014-02-06 09:15:16 +01:00
parent b8a31dcc72
commit 165bcba54e
4 changed files with 15 additions and 15 deletions

View file

@ -410,7 +410,7 @@ class gettext_reader {
function pgettext($context, $msgid) {
$key = $context . chr(4) . $msgid;
$ret = $this->translate($key);
if (strpos($ret, "\004") !== FALSE) {
if (strpos($ret, "\004") !== false) {
return $msgid;
} else {
return $ret;
@ -420,7 +420,7 @@ class gettext_reader {
function npgettext($context, $singular, $plural, $number) {
$key = $context . chr(4) . $singular;
$ret = $this->ngettext($key, $plural, $number);
if (strpos($ret, "\004") !== FALSE) {
if (strpos($ret, "\004") !== false) {
return $singular;
} else {
return $ret;