diff options
Diffstat (limited to 'view/ru/strings.php')
-rw-r--r-- | view/ru/strings.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/view/ru/strings.php b/view/ru/strings.php index 83b5f2e5f..8c7f2b291 100644 --- a/view/ru/strings.php +++ b/view/ru/strings.php @@ -1,8 +1,9 @@ <?php +if(! function_exists("string_plural_select_ru")) { function string_plural_select_ru($n){ return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2);; -} +}} ; $a->strings["Cannot locate DNS info for database server '%s'"] = ""; $a->strings["Profile Photos"] = "Фотографии профиля"; |