aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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))";