19 lines
927 B
PHP
19 lines
927 B
PHP
<?php
|
||
$TRANSLATIONS = array(
|
||
"Couldn't delete %s permanently" => "Невъзможно перманентното изтриване на %s",
|
||
"Couldn't restore %s" => "Невъзможно възтановяване на %s",
|
||
"perform restore operation" => "извършване на действие по възстановяване",
|
||
"Error" => "Грешка",
|
||
"delete file permanently" => "изтриване на файла завинаги",
|
||
"Delete permanently" => "Изтриване завинаги",
|
||
"Name" => "Име",
|
||
"Deleted" => "Изтрито",
|
||
"_%n folder_::_%n folders_" => array("",""),
|
||
"_%n file_::_%n files_" => array("",""),
|
||
"Nothing in here. Your trash bin is empty!" => "Няма нищо. Кофата е празна!",
|
||
"Restore" => "Възтановяване",
|
||
"Delete" => "Изтриване",
|
||
"Deleted Files" => "Изтрити файлове"
|
||
);
|
||
$PLURAL_FORMS = "nplurals=2; plural=(n != 1);";
|