update strings, add plural select function definition check

This commit is contained in:
Fabrixxm
2013-02-27 09:36:25 -05:00
parent 9d99a531b9
commit 057110e08b
13 changed files with 27 additions and 14 deletions

View File

@@ -1,8 +1,9 @@
<?php
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<10 || $n%100>=20) ? 1 : 2);;
}
}}
;
$a->strings["Post successful."] = "Post dodany pomyślnie";
$a->strings["[Embedded content - reload page to view]"] = "";