aboutsummaryrefslogtreecommitdiffstats
path: root/view/pl/hstrings.php
diff options
context:
space:
mode:
authorAndrzej Budziński <andrzej@budzinski.ovh>2021-01-30 18:42:47 +0100
committerAndrzej Budziński <andrzej@budzinski.ovh>2021-01-30 18:42:47 +0100
commitd2eb10d7fffe3f7265ae8f7b605ea1fe81ac43a0 (patch)
tree03b16fbd948f39fab366803e6c369ed3cb60a0b8 /view/pl/hstrings.php
parent89bf71b227d1bb585b69a52be80752bd1cb730af (diff)
downloadvolse-hubzilla-d2eb10d7fffe3f7265ae8f7b605ea1fe81ac43a0.tar.gz
volse-hubzilla-d2eb10d7fffe3f7265ae8f7b605ea1fe81ac43a0.tar.bz2
volse-hubzilla-d2eb10d7fffe3f7265ae8f7b605ea1fe81ac43a0.zip
Fixes (!1905):
- view/pl/hmessages.po - view/pl/hstrings.php
Diffstat (limited to 'view/pl/hstrings.php')
-rw-r--r--view/pl/hstrings.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/view/pl/hstrings.php b/view/pl/hstrings.php
index 4a2dd92ae..943fe36f3 100644
--- a/view/pl/hstrings.php
+++ b/view/pl/hstrings.php
@@ -2,8 +2,7 @@
if(! function_exists("string_plural_select_pl")) {
function string_plural_select_pl($n){
- return ($n==1 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12))
-;
+ return ($n==1 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12));
}}
App::$rtl = 0;
App::$strings["plural_function_code"] = "(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12))";