diff options
author | Max Kostikov <max@kostikov.co> | 2018-10-13 01:36:24 +0200 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2018-10-13 01:36:24 +0200 |
commit | 8e5189464e59ca1899d7dbd3ee7302d26b25b297 (patch) | |
tree | ec2157ba64feeab27abf700a63aa582eae45ccaf /include | |
parent | 0de713ff363cadd706c27606553cc555ddc3a48a (diff) | |
download | volse-hubzilla-8e5189464e59ca1899d7dbd3ee7302d26b25b297.tar.gz volse-hubzilla-8e5189464e59ca1899d7dbd3ee7302d26b25b297.tar.bz2 volse-hubzilla-8e5189464e59ca1899d7dbd3ee7302d26b25b297.zip |
Update language.php
Diffstat (limited to 'include')
-rw-r--r-- | include/language.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/language.php b/include/language.php index 790c036d3..38e38fd69 100644 --- a/include/language.php +++ b/include/language.php @@ -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;"); } |