2013-08-09 16:06:31 +04:00
|
|
|
|
<?php
|
|
|
|
|
$TRANSLATIONS = array(
|
2014-03-12 09:57:17 +04:00
|
|
|
|
"Shared by {owner}" => "Доступ открыл {owner}",
|
2014-03-11 09:59:39 +04:00
|
|
|
|
"This share is password-protected" => "Общий ресурс защищён паролем",
|
2013-07-09 04:12:22 +04:00
|
|
|
|
"The password is wrong. Try again." => "Неверный пароль. Попробуйте еще раз.",
|
2012-08-30 04:06:45 +04:00
|
|
|
|
"Password" => "Пароль",
|
2013-08-02 10:00:45 +04:00
|
|
|
|
"Sorry, this link doesn’t seem to work anymore." => "К сожалению, эта ссылка, похоже не будет работать больше.",
|
|
|
|
|
"Reasons might be:" => "Причиной может быть:",
|
|
|
|
|
"the item was removed" => "объект был удалён",
|
|
|
|
|
"the link expired" => "срок ссылки истёк",
|
2014-03-11 09:59:39 +04:00
|
|
|
|
"sharing is disabled" => "общий доступ отключён",
|
|
|
|
|
"For more info, please ask the person who sent this link." => "Пожалуйста, обратитесь к отправителю данной ссылки.",
|
2014-03-12 09:57:17 +04:00
|
|
|
|
"shared by %s" => "Поделиться с %s",
|
2013-10-27 10:32:11 +04:00
|
|
|
|
"Direct link" => "Прямая ссылка"
|
2012-08-25 04:08:36 +04:00
|
|
|
|
);
|
2013-08-09 16:06:31 +04:00
|
|
|
|
$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);";
|