aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2021-01-31 15:26:55 +0100
committerMax Kostikov <max@kostikov.co>2021-01-31 15:26:55 +0100
commitc0933c90e8b02cf30126a8f7c2866a60d9d3da46 (patch)
tree52852cf44c4a11c90a1fb35072090728df657b35
parent21b3ba38e710ccf08b95491aa3880548f3e2e866 (diff)
downloadvolse-hubzilla-c0933c90e8b02cf30126a8f7c2866a60d9d3da46.tar.gz
volse-hubzilla-c0933c90e8b02cf30126a8f7c2866a60d9d3da46.tar.bz2
volse-hubzilla-c0933c90e8b02cf30126a8f7c2866a60d9d3da46.zip
Fix copypaste
-rw-r--r--view/pl/hstrings.php2
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))";