15 lines
669 B
PHP
15 lines
669 B
PHP
<?php
|
||
$TRANSLATIONS = array(
|
||
"Deletion failed" => "Бришењето е неуспешно",
|
||
"Error" => "Грешка",
|
||
"_%s group found_::_%s groups found_" => array("",""),
|
||
"_%s user found_::_%s users found_" => array("",""),
|
||
"Help" => "Помош",
|
||
"Host" => "Домаќин",
|
||
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Може да го скокнете протколот освен ако не ви треба SSL. Тогаш ставете ldaps://",
|
||
"Password" => "Лозинка",
|
||
"Back" => "Назад",
|
||
"Continue" => "Продолжи"
|
||
);
|
||
$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;";
|