107 if (!isset($this->raw[$key])) {
108 $content =
'[' . date(
'Y-m-d H:i:s', time()) .
'] ';
109 $content .=
'ERROR: Lang var missing ' . $key;
110 $content .=
' for ' . $this->current .
' language.' . PHP_EOL;
111 file_put_contents(
$bearsamppRoot->getErrorLogFilePath(), $content, FILE_APPEND);
116 $replace = array(
"ő",
"Ő",
"ű",
"Ű");
117 $with = array(
"o",
"O",
"u",
"U");
119 return str_replace($replace, $with, $this->raw[$key]);