blob: 6bb39bb89dd971ae987ed8bd34cdea8d7ac6718c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
$TRANSLATIONS = array(
"Couldn't delete %s permanently" => "Nemožno zmazať %s navždy",
"Couldn't restore %s" => "Nemožno obnoviť %s",
"Deleted files" => "Zmazané súbory",
"Error" => "Chyba",
"restored" => "obnovené",
"Nothing in here. Your trash bin is empty!" => "Žiadny obsah. Kôš je prázdny!",
"Name" => "Názov",
"Restore" => "Obnoviť",
"Deleted" => "Zmazané",
"Delete" => "Zmazať",
"Deleted Files" => "Zmazané súbory"
);
$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;";
|