mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-09 18:08:49 +00:00
js_upload RU translation update THX Alexander An
This commit is contained in:
parent
0734b5620d
commit
d6221acb53
2 changed files with 73 additions and 11 deletions
|
@ -1,11 +1,17 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Upload a file"] = "Загрузить файл";
|
||||
$a->strings["Drop files here to upload"] = "Перетащите файлы сюда для загрузки";
|
||||
$a->strings["Cancel"] = "Отмена";
|
||||
$a->strings["Failed"] = "Ошибка";
|
||||
$a->strings["No files were uploaded."] = "Нет загруженных файлов.";
|
||||
$a->strings["Uploaded file is empty"] = "Загруженный файл пустой";
|
||||
$a->strings["Image exceeds size limit of "] = "Размер фото превышает лимит ";
|
||||
$a->strings["File has an invalid extension, it should be one of "] = "Файл имеет недопустимое расширение, оно должно быть одним из следующих ";
|
||||
$a->strings["Upload was cancelled, or server error encountered"] = "Загрузка была отменена, или произошла ошибка сервера";
|
||||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_ru")) {
|
||||
function string_plural_select_ru($n){
|
||||
$n = intval($n);
|
||||
return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Upload a file"] = "Загрузить файл";
|
||||
$a->strings["Drop files here to upload"] = "Перетащите сюда файлы для загрузки";
|
||||
$a->strings["Cancel"] = "Отмена";
|
||||
$a->strings["Failed"] = "Ошибка";
|
||||
$a->strings["No files were uploaded."] = "Файлы не были загружены.";
|
||||
$a->strings["Uploaded file is empty"] = "Загруженный файл пустой.";
|
||||
$a->strings["Image exceeds size limit of "] = "Изображение превышает ограничение в";
|
||||
$a->strings["File has an invalid extension, it should be one of "] = "У файла недопустимое расширение, оно должно быть";
|
||||
$a->strings["Upload was cancelled, or server error encountered"] = "Закачка отменена, либо возникла ошибка на сервере";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue