21 lines
781 B
PHP
21 lines
781 B
PHP
<?php
|
|
$TRANSLATIONS = array(
|
|
"Couldn't delete %s permanently" => "Datoteke %s ni mogoče dokončno izbrisati.",
|
|
"Couldn't restore %s" => "Ni mogoče obnoviti %s",
|
|
"perform restore operation" => "izvedi opravilo obnavljanja",
|
|
"Error" => "Napaka",
|
|
"delete file permanently" => "dokončno izbriši datoteko",
|
|
"Delete permanently" => "Izbriši dokončno",
|
|
"Name" => "Ime",
|
|
"Deleted" => "Izbrisano",
|
|
"1 folder" => "1 mapa",
|
|
"{count} folders" => "{count} map",
|
|
"1 file" => "1 datoteka",
|
|
"{count} files" => "{count} datotek",
|
|
"Nothing in here. Your trash bin is empty!" => "Mapa smeti je prazna.",
|
|
"Restore" => "Obnovi",
|
|
"Delete" => "Izbriši",
|
|
"Deleted Files" => "Izbrisane datoteke"
|
|
);
|
|
$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);";
|