Update language.php

This commit is contained in:
Max Kostikov 2018-10-13 01:36:24 +02:00
parent 0de713ff36
commit 8e5189464e

View File

@ -276,9 +276,10 @@ function ta($k){
function tf() {
$r = "";
$file = "view/".str_replace('-', '_', App::$language)."/hstrings.php";
if(file_exists($file))
$r = trim(shell_exec("sed -n '5p' ".$file." | tr -d '$'"));
$lang = str_replace('-', '_', App::$language);
$file = "view/$lang/hstrings.php";
if(function_exists("string_plural_select_".$lang))
$r = trim(shell_exec("sed -n '5p' ".$file." | grep 'return' | tr -d '$'"));
return ($r != "" ? $r : "return 0;");
}