12 lines
362 B
PHP
12 lines
362 B
PHP
<?php
|
|
$TRANSLATIONS = array(
|
|
"Share" => "Zdieľať",
|
|
"_%n folder_::_%n folders_" => array("","",""),
|
|
"_%n file_::_%n files_" => array("","",""),
|
|
"_Uploading %n file_::_Uploading %n files_" => array("","",""),
|
|
"Save" => "Uložiť",
|
|
"Download" => "Stiahnuť",
|
|
"Delete" => "Odstrániť"
|
|
);
|
|
$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;";
|