diff options
Diffstat (limited to 'view/cs/strings.php')
-rw-r--r-- | view/cs/strings.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/view/cs/strings.php b/view/cs/strings.php index 0c7d0d7bd..b0c778a6b 100644 --- a/view/cs/strings.php +++ b/view/cs/strings.php @@ -1,8 +1,9 @@ <?php +if(! function_exists("string_plural_select_cs")) { function string_plural_select_cs($n){ return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2; -} +}} ; $a->strings["Post successful."] = "Příspěvek úspěšně odeslán"; $a->strings["Contact settings applied."] = "Nastavení kontaktu změněno"; |