18 lines
1.1 KiB
PHP
18 lines
1.1 KiB
PHP
<?php
|
||
$TRANSLATIONS = array(
|
||
"Shared by {owner}" => "Доступ открыл {owner}",
|
||
"This share is password-protected" => "Общий ресурс защищён паролем",
|
||
"The password is wrong. Try again." => "Неверный пароль. Попробуйте еще раз.",
|
||
"Password" => "Пароль",
|
||
"Sorry, this link doesn’t seem to work anymore." => "К сожалению, эта ссылка, похоже не будет работать больше.",
|
||
"Reasons might be:" => "Причиной может быть:",
|
||
"the item was removed" => "объект был удалён",
|
||
"the link expired" => "срок ссылки истёк",
|
||
"sharing is disabled" => "общий доступ отключён",
|
||
"For more info, please ask the person who sent this link." => "Пожалуйста, обратитесь к отправителю данной ссылки.",
|
||
"Download" => "Скачать",
|
||
"Download %s" => "Скачать %s",
|
||
"Direct link" => "Прямая ссылка"
|
||
);
|
||
$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);";
|