blob: 4b8055324d6d25e5a5c82d8d786d30b2d376e590 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?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;";
|