2014-09-06 17:59:46 +02:00
|
|
|
<?php
|
|
|
|
|
2014-09-06 18:27:03 +02:00
|
|
|
if(! function_exists("string_plural_select_cs")) {
|
|
|
|
function string_plural_select_cs($n){
|
2018-07-04 07:33:57 +02:00
|
|
|
$n = intval($n);
|
|
|
|
return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
|
2014-09-06 18:27:03 +02:00
|
|
|
}}
|
|
|
|
;
|
2018-07-04 07:33:57 +02:00
|
|
|
$a->strings["Numfriends settings updated."] = "Nastavení Numfriends aktualizováno";
|
2014-09-06 18:27:03 +02:00
|
|
|
$a->strings["Numfriends Settings"] = "Nastavení Numfriends";
|
2018-07-04 07:33:57 +02:00
|
|
|
$a->strings["How many contacts to display on profile sidebar"] = "Kolik kontaktů zobrazit na profilové postranní liště";
|
2015-04-03 13:17:32 +02:00
|
|
|
$a->strings["Submit"] = "Odeslat";
|