22 lines
1.1 KiB
PHP
22 lines
1.1 KiB
PHP
<?php
|
|
$TRANSLATIONS = array(
|
|
"File name cannot be empty." => "Имя файла не может быть пустым.",
|
|
"Files" => "Файлы",
|
|
"Share" => "Сделать общим",
|
|
"Rename" => "Переименовать",
|
|
"_%n folder_::_%n folders_" => array("","",""),
|
|
"_%n file_::_%n files_" => array("","",""),
|
|
"_Uploading %n file_::_Uploading %n files_" => array("","",""),
|
|
"'.' is an invalid file name." => "'.' является неверным именем файла.",
|
|
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Некорректное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не допустимы.",
|
|
"Error" => "Ошибка",
|
|
"Size" => "Размер",
|
|
"Upload" => "Загрузка",
|
|
"0 is unlimited" => "0 без ограничений",
|
|
"Save" => "Сохранить",
|
|
"Cancel upload" => "Отмена загрузки",
|
|
"Download" => "Загрузка",
|
|
"Delete" => "Удалить"
|
|
);
|
|
$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);";
|