diff options
author | Max Kostikov <max@kostikov.co> | 2021-01-31 15:26:55 +0100 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2021-01-31 15:26:55 +0100 |
commit | c0933c90e8b02cf30126a8f7c2866a60d9d3da46 (patch) | |
tree | 52852cf44c4a11c90a1fb35072090728df657b35 /view/pl | |
parent | 21b3ba38e710ccf08b95491aa3880548f3e2e866 (diff) | |
download | volse-hubzilla-c0933c90e8b02cf30126a8f7c2866a60d9d3da46.tar.gz volse-hubzilla-c0933c90e8b02cf30126a8f7c2866a60d9d3da46.tar.bz2 volse-hubzilla-c0933c90e8b02cf30126a8f7c2866a60d9d3da46.zip |
Fix copypaste
Diffstat (limited to 'view/pl')
-rw-r--r-- | view/pl/hstrings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/pl/hstrings.php b/view/pl/hstrings.php index 85bb3d0e5..7a58ab97f 100644 --- a/view/pl/hstrings.php +++ b/view/pl/hstrings.php @@ -2,7 +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 || n%100>14) ? 1 : 2)); + return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : 2)); }} App::$rtl = 0; App::$strings["plural_function_code"] = "(n==1 ? 0 : (n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2))"; |