Merge github.com:owncloud/core

This commit is contained in:
Sam Tuke 2013-02-05 13:44:45 +00:00
commit fd90b82acd
651 changed files with 21816 additions and 10986 deletions

11
.gitignore vendored
View File

@ -6,6 +6,17 @@ config/mount.php
apps/inc.php apps/inc.php
3rdparty 3rdparty
# ignore all apps except core ones
apps/*
!apps/files
!apps/files_encryption
!apps/files_external
!apps/files_sharing
!apps/files_trashbin
!apps/files_versions
!apps/user_ldap
!apps/user_webdavauth
# just sane ignores # just sane ignores
.*.sw[po] .*.sw[po]
*.bak *.bak

View File

@ -17,8 +17,8 @@ if(\OC\Files\Filesystem::file_exists($target . '/' . $file)) {
} }
if ($dir != '' || $file != 'Shared') { if ($dir != '' || $file != 'Shared') {
$targetFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file); $targetFile = \OC\Files\Filesystem::normalizePath($target . '/' . $file);
$sourceFile = \OC\Files\Filesystem::normalizePath($target . '/' . $file); $sourceFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file);
if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) { if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) {
OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file ))); OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file )));
} else { } else {

View File

@ -10,6 +10,8 @@ OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck(); OCP\JSON::callCheck();
$l = OC_L10N::get('files'); $l = OC_L10N::get('files');
$dir = $_POST['dir'];
// get array with current storage stats (e.g. max file size) // get array with current storage stats (e.g. max file size)
$storageStats = \OCA\files\lib\Helper::buildFileStorageStatistics($dir); $storageStats = \OCA\files\lib\Helper::buildFileStorageStatistics($dir);
@ -37,7 +39,6 @@ foreach ($_FILES['files']['error'] as $error) {
} }
$files = $_FILES['files']; $files = $_FILES['files'];
$dir = $_POST['dir'];
$error = ''; $error = '';
$maxUploadFilesize = OCP\Util::maxUploadFilesize($dir); $maxUploadFilesize = OCP\Util::maxUploadFilesize($dir);

View File

@ -6,7 +6,7 @@ OCP\App::registerAdmin('files', 'admin');
OCP\App::addNavigationEntry( array( "id" => "files_index", OCP\App::addNavigationEntry( array( "id" => "files_index",
"order" => 0, "order" => 0,
"href" => OCP\Util::linkTo( "files", "index.php" ), "href" => OCP\Util::linkTo( "files", "index.php" ),
"icon" => OCP\Util::imagePath( "core", "places/home.svg" ), "icon" => OCP\Util::imagePath( "core", "places/files.svg" ),
"name" => $l->t("Files") )); "name" => $l->t("Files") ));
OC_Search::registerProvider('OC_Search_Provider_File'); OC_Search::registerProvider('OC_Search_Provider_File');

View File

@ -32,12 +32,14 @@ OC_Util::obEnd();
// Backends // Backends
$authBackend = new OC_Connector_Sabre_Auth(); $authBackend = new OC_Connector_Sabre_Auth();
$lockBackend = new OC_Connector_Sabre_Locks(); $lockBackend = new OC_Connector_Sabre_Locks();
$requestBackend = new OC_Connector_Sabre_Request();
// Create ownCloud Dir // Create ownCloud Dir
$publicDir = new OC_Connector_Sabre_Directory(''); $publicDir = new OC_Connector_Sabre_Directory('');
// Fire up server // Fire up server
$server = new Sabre_DAV_Server($publicDir); $server = new Sabre_DAV_Server($publicDir);
$server->httpRequest = $requestBackend;
$server->setBaseUri($baseuri); $server->setBaseUri($baseuri);
// Load plugins // Load plugins

View File

@ -118,9 +118,6 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; }
.selectedActions a { display:inline; margin:-.5em 0; padding:.5em !important; } .selectedActions a { display:inline; margin:-.5em 0; padding:.5em !important; }
.selectedActions a img { position:relative; top:.3em; } .selectedActions a img { position:relative; top:.3em; }
/* add breadcrumb divider to the File item in navigation panel */
#navigation>ul>li:first-child { background:url('%webroot%/core/img/breadcrumb-start.svg') no-repeat 12.5em 0px; width:12.5em; padding-right:1em; position:fixed; }
#navigation>ul>li:first-child+li { padding-top:2.9em; }
#scanning-message{ top:40%; left:40%; position:absolute; display:none; } #scanning-message{ top:40%; left:40%; position:absolute; display:none; }

View File

@ -36,7 +36,7 @@ OCP\App::setActiveNavigationEntry('files_index');
$dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : ''; $dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : '';
// Redirect if directory does not exist // Redirect if directory does not exist
if (!\OC\Files\Filesystem::is_dir($dir . '/')) { if (!\OC\Files\Filesystem::is_dir($dir . '/')) {
header('Location: ' . $_SERVER['SCRIPT_NAME'] . ''); header('Location: ' . OCP\Util::getScriptName() . '');
exit(); exit();
} }

View File

@ -309,7 +309,7 @@ var FileList={
$(document).ready(function(){ $(document).ready(function(){
$('#notification').hide(); $('#notification').hide();
$('#notification .undo').live('click', function(){ $('#notification').on('click', '.undo', function(){
if (FileList.deleteFiles) { if (FileList.deleteFiles) {
$.each(FileList.deleteFiles,function(index,file){ $.each(FileList.deleteFiles,function(index,file){
$('tr').filterAttr('data-file',file).show(); $('tr').filterAttr('data-file',file).show();
@ -335,16 +335,16 @@ $(document).ready(function(){
FileList.lastAction = null; FileList.lastAction = null;
OC.Notification.hide(); OC.Notification.hide();
}); });
$('#notification .replace').live('click', function() { $('#notification').on('click', '.replace', function() {
OC.Notification.hide(function() { OC.Notification.hide(function() {
FileList.replace($('#notification').data('oldName'), $('#notification').data('newName'), $('#notification').data('isNewFile')); FileList.replace($('#notification').data('oldName'), $('#notification').data('newName'), $('#notification').data('isNewFile'));
}); });
}); });
$('#notification .suggest').live('click', function() { $('#notification').on('click', '.suggest', function() {
$('tr').filterAttr('data-file', $('#notification').data('oldName')).show(); $('tr').filterAttr('data-file', $('#notification').data('oldName')).show();
OC.Notification.hide(); OC.Notification.hide();
}); });
$('#notification .cancel').live('click', function() { $('#notification').on('click', '.cancel', function() {
if ($('#notification').data('isNewFile')) { if ($('#notification').data('isNewFile')) {
FileList.deleteCanceled = false; FileList.deleteCanceled = false;
FileList.deleteFiles = [$('#notification').data('oldName')]; FileList.deleteFiles = [$('#notification').data('oldName')];

View File

@ -110,7 +110,7 @@ $(document).ready(function() {
} }
// Triggers invisible file input // Triggers invisible file input
$('#upload a').live('click', function() { $('#upload a').on('click', function() {
$(this).parent().children('#file_upload_start').trigger('click'); $(this).parent().children('#file_upload_start').trigger('click');
return false; return false;
}); });
@ -123,7 +123,7 @@ $(document).ready(function() {
var lastChecked; var lastChecked;
// Sets the file link behaviour : // Sets the file link behaviour :
$('td.filename a').live('click',function(event) { $('#fileList').on('click','td.filename a',function(event) {
if (event.ctrlKey || event.shiftKey) { if (event.ctrlKey || event.shiftKey) {
event.preventDefault(); event.preventDefault();
if (event.shiftKey) { if (event.shiftKey) {
@ -189,7 +189,7 @@ $(document).ready(function() {
procesSelection(); procesSelection();
}); });
$('td.filename input:checkbox').live('change',function(event) { $('#fileList').on('change', 'td.filename input:checkbox',function(event) {
if (event.shiftKey) { if (event.shiftKey) {
var last = $(lastChecked).parent().parent().prevAll().length; var last = $(lastChecked).parent().parent().prevAll().length;
var first = $(this).parent().parent().prevAll().length; var first = $(this).parent().parent().prevAll().length;
@ -776,6 +776,10 @@ $(document).ready(function() {
}); });
function scanFiles(force, dir){ function scanFiles(force, dir){
if (!OC.currentUser) {
return;
}
if(!dir){ if(!dir){
dir = ''; dir = '';
} }

8
apps/files/js/upload.js Normal file
View File

@ -0,0 +1,8 @@
function Upload(fileSelector) {
if ($.support.xhrFileUpload) {
return new XHRUpload(fileSelector.target.files);
} else {
return new FormUpload(fileSelector);
}
}
Upload.target = OC.filePath('files', 'ajax', 'upload.php');

View File

@ -20,6 +20,7 @@
"replaced {new_name}" => "s'ha substituït {new_name}", "replaced {new_name}" => "s'ha substituït {new_name}",
"undo" => "desfés", "undo" => "desfés",
"replaced {new_name} with {old_name}" => "s'ha substituït {old_name} per {new_name}", "replaced {new_name} with {old_name}" => "s'ha substituït {old_name} per {new_name}",
"perform delete operation" => "executa d'operació d'esborrar",
"'.' is an invalid file name." => "'.' és un nom no vàlid per un fitxer.", "'.' is an invalid file name." => "'.' és un nom no vàlid per un fitxer.",
"File name cannot be empty." => "El nom del fitxer no pot ser buit.", "File name cannot be empty." => "El nom del fitxer no pot ser buit.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.",
@ -56,6 +57,7 @@
"Text file" => "Fitxer de text", "Text file" => "Fitxer de text",
"Folder" => "Carpeta", "Folder" => "Carpeta",
"From link" => "Des d'enllaç", "From link" => "Des d'enllaç",
"Trash" => "Esborra",
"Cancel upload" => "Cancel·la la pujada", "Cancel upload" => "Cancel·la la pujada",
"Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!", "Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!",
"Download" => "Baixa", "Download" => "Baixa",

View File

@ -20,6 +20,7 @@
"replaced {new_name}" => "nahrazeno {new_name}", "replaced {new_name}" => "nahrazeno {new_name}",
"undo" => "zpět", "undo" => "zpět",
"replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", "replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}",
"perform delete operation" => "provést smazání",
"'.' is an invalid file name." => "'.' je neplatným názvem souboru.", "'.' is an invalid file name." => "'.' je neplatným názvem souboru.",
"File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.", "File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.",
@ -56,6 +57,7 @@
"Text file" => "Textový soubor", "Text file" => "Textový soubor",
"Folder" => "Složka", "Folder" => "Složka",
"From link" => "Z odkazu", "From link" => "Z odkazu",
"Trash" => "Koš",
"Cancel upload" => "Zrušit odesílání", "Cancel upload" => "Zrušit odesílání",
"Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.", "Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.",
"Download" => "Stáhnout", "Download" => "Stáhnout",

View File

@ -8,7 +8,7 @@
"Missing a temporary folder" => "Temporärer Ordner fehlt.", "Missing a temporary folder" => "Temporärer Ordner fehlt.",
"Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte",
"Not enough space available" => "Nicht genug Speicherplatz verfügbar", "Not enough space available" => "Nicht genug Speicherplatz verfügbar",
"Invalid directory." => "Ungültiges Verzeichnis", "Invalid directory." => "Ungültiges Verzeichnis.",
"Files" => "Dateien", "Files" => "Dateien",
"Unshare" => "Nicht mehr freigeben", "Unshare" => "Nicht mehr freigeben",
"Delete" => "Löschen", "Delete" => "Löschen",
@ -20,8 +20,9 @@
"replaced {new_name}" => "{new_name} wurde ersetzt", "replaced {new_name}" => "{new_name} wurde ersetzt",
"undo" => "rückgängig machen", "undo" => "rückgängig machen",
"replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}", "replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}",
"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname", "perform delete operation" => "Löschvorgang ausführen",
"File name cannot be empty." => "Der Dateiname darf nicht leer sein", "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.",
"File name cannot be empty." => "Der Dateiname darf nicht leer sein.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.",
"Your storage is full, files can not be updated or synced anymore!" => "Ihr Speicherplatz ist voll, Dateien können nicht mehr aktualisiert oder synchronisiert werden!", "Your storage is full, files can not be updated or synced anymore!" => "Ihr Speicherplatz ist voll, Dateien können nicht mehr aktualisiert oder synchronisiert werden!",
"Your storage is almost full ({usedSpacePercent}%)" => "Ihr Speicherplatz ist fast aufgebraucht ({usedSpacePercent}%)", "Your storage is almost full ({usedSpacePercent}%)" => "Ihr Speicherplatz ist fast aufgebraucht ({usedSpacePercent}%)",
@ -34,7 +35,7 @@
"{count} files uploading" => "{count} Dateien werden hochgeladen", "{count} files uploading" => "{count} Dateien werden hochgeladen",
"Upload cancelled." => "Upload abgebrochen.", "Upload cancelled." => "Upload abgebrochen.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.",
"URL cannot be empty." => "Die URL darf nicht leer sein", "URL cannot be empty." => "Die URL darf nicht leer sein.",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten.",
"Name" => "Name", "Name" => "Name",
"Size" => "Größe", "Size" => "Größe",
@ -56,11 +57,13 @@
"Text file" => "Textdatei", "Text file" => "Textdatei",
"Folder" => "Ordner", "Folder" => "Ordner",
"From link" => "Von einem Link", "From link" => "Von einem Link",
"Trash" => "Papierkorb",
"Cancel upload" => "Upload abbrechen", "Cancel upload" => "Upload abbrechen",
"Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!", "Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!",
"Download" => "Herunterladen", "Download" => "Herunterladen",
"Upload too large" => "Upload zu groß", "Upload too large" => "Upload zu groß",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.",
"Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.",
"Current scanning" => "Scanne" "Current scanning" => "Scanne",
"Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..."
); );

View File

@ -20,6 +20,7 @@
"replaced {new_name}" => "{new_name} wurde ersetzt", "replaced {new_name}" => "{new_name} wurde ersetzt",
"undo" => "rückgängig machen", "undo" => "rückgängig machen",
"replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", "replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}",
"perform delete operation" => "Führe das Löschen aus",
"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.",
"File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.",
@ -56,11 +57,13 @@
"Text file" => "Textdatei", "Text file" => "Textdatei",
"Folder" => "Ordner", "Folder" => "Ordner",
"From link" => "Von einem Link", "From link" => "Von einem Link",
"Trash" => "Abfall",
"Cancel upload" => "Upload abbrechen", "Cancel upload" => "Upload abbrechen",
"Nothing in here. Upload something!" => "Alles leer. Bitte laden Sie etwas hoch!", "Nothing in here. Upload something!" => "Alles leer. Bitte laden Sie etwas hoch!",
"Download" => "Herunterladen", "Download" => "Herunterladen",
"Upload too large" => "Der Upload ist zu groß", "Upload too large" => "Der Upload ist zu groß",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.",
"Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.",
"Current scanning" => "Scanne" "Current scanning" => "Scanne",
"Upgrading filesystem cache..." => "Aktualisiere den Dateisystem-Cache"
); );

View File

@ -17,6 +17,7 @@
"suggest name" => "ehdota nimeä", "suggest name" => "ehdota nimeä",
"cancel" => "peru", "cancel" => "peru",
"undo" => "kumoa", "undo" => "kumoa",
"perform delete operation" => "suorita poistotoiminto",
"'.' is an invalid file name." => "'.' on virheellinen nimi tiedostolle.", "'.' is an invalid file name." => "'.' on virheellinen nimi tiedostolle.",
"File name cannot be empty." => "Tiedoston nimi ei voi olla tyhjä.", "File name cannot be empty." => "Tiedoston nimi ei voi olla tyhjä.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja.",
@ -50,11 +51,13 @@
"Text file" => "Tekstitiedosto", "Text file" => "Tekstitiedosto",
"Folder" => "Kansio", "Folder" => "Kansio",
"From link" => "Linkistä", "From link" => "Linkistä",
"Trash" => "Roskakori",
"Cancel upload" => "Peru lähetys", "Cancel upload" => "Peru lähetys",
"Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!", "Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!",
"Download" => "Lataa", "Download" => "Lataa",
"Upload too large" => "Lähetettävä tiedosto on liian suuri", "Upload too large" => "Lähetettävä tiedosto on liian suuri",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan.",
"Files are being scanned, please wait." => "Tiedostoja tarkistetaan, odota hetki.", "Files are being scanned, please wait." => "Tiedostoja tarkistetaan, odota hetki.",
"Current scanning" => "Tämänhetkinen tutkinta" "Current scanning" => "Tämänhetkinen tutkinta",
"Upgrading filesystem cache..." => "Päivitetään tiedostojärjestelmän välimuistia..."
); );

View File

@ -20,6 +20,7 @@
"replaced {new_name}" => "{new_name} a été remplacé", "replaced {new_name}" => "{new_name} a été remplacé",
"undo" => "annuler", "undo" => "annuler",
"replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}", "replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}",
"perform delete operation" => "effectuer l'opération de suppression",
"'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.", "'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.",
"File name cannot be empty." => "Le nom de fichier ne peut être vide.", "File name cannot be empty." => "Le nom de fichier ne peut être vide.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.",
@ -56,11 +57,13 @@
"Text file" => "Fichier texte", "Text file" => "Fichier texte",
"Folder" => "Dossier", "Folder" => "Dossier",
"From link" => "Depuis le lien", "From link" => "Depuis le lien",
"Trash" => "Corbeille",
"Cancel upload" => "Annuler l'envoi", "Cancel upload" => "Annuler l'envoi",
"Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", "Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)",
"Download" => "Télécharger", "Download" => "Télécharger",
"Upload too large" => "Fichier trop volumineux", "Upload too large" => "Fichier trop volumineux",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur.",
"Files are being scanned, please wait." => "Les fichiers sont en cours d'analyse, veuillez patienter.", "Files are being scanned, please wait." => "Les fichiers sont en cours d'analyse, veuillez patienter.",
"Current scanning" => "Analyse en cours" "Current scanning" => "Analyse en cours",
"Upgrading filesystem cache..." => "Mise à niveau du cache du système de fichier"
); );

View File

@ -20,6 +20,7 @@
"replaced {new_name}" => "sostituito {new_name}", "replaced {new_name}" => "sostituito {new_name}",
"undo" => "annulla", "undo" => "annulla",
"replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}", "replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}",
"perform delete operation" => "esegui l'operazione di eliminazione",
"'.' is an invalid file name." => "'.' non è un nome file valido.", "'.' is an invalid file name." => "'.' non è un nome file valido.",
"File name cannot be empty." => "Il nome del file non può essere vuoto.", "File name cannot be empty." => "Il nome del file non può essere vuoto.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.",
@ -56,6 +57,7 @@
"Text file" => "File di testo", "Text file" => "File di testo",
"Folder" => "Cartella", "Folder" => "Cartella",
"From link" => "Da collegamento", "From link" => "Da collegamento",
"Trash" => "Cestino",
"Cancel upload" => "Annulla invio", "Cancel upload" => "Annulla invio",
"Nothing in here. Upload something!" => "Non c'è niente qui. Carica qualcosa!", "Nothing in here. Upload something!" => "Non c'è niente qui. Carica qualcosa!",
"Download" => "Scarica", "Download" => "Scarica",

View File

@ -20,6 +20,7 @@
"replaced {new_name}" => "{new_name} を置換", "replaced {new_name}" => "{new_name} を置換",
"undo" => "元に戻す", "undo" => "元に戻す",
"replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換", "replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換",
"perform delete operation" => "削除を実行",
"'.' is an invalid file name." => "'.' は無効なファイル名です。", "'.' is an invalid file name." => "'.' は無効なファイル名です。",
"File name cannot be empty." => "ファイル名を空にすることはできません。", "File name cannot be empty." => "ファイル名を空にすることはできません。",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。",
@ -56,11 +57,13 @@
"Text file" => "テキストファイル", "Text file" => "テキストファイル",
"Folder" => "フォルダ", "Folder" => "フォルダ",
"From link" => "リンク", "From link" => "リンク",
"Trash" => "ゴミ箱",
"Cancel upload" => "アップロードをキャンセル", "Cancel upload" => "アップロードをキャンセル",
"Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。", "Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。",
"Download" => "ダウンロード", "Download" => "ダウンロード",
"Upload too large" => "ファイルサイズが大きすぎます", "Upload too large" => "ファイルサイズが大きすぎます",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。",
"Files are being scanned, please wait." => "ファイルをスキャンしています、しばらくお待ちください。", "Files are being scanned, please wait." => "ファイルをスキャンしています、しばらくお待ちください。",
"Current scanning" => "スキャン中" "Current scanning" => "スキャン中",
"Upgrading filesystem cache..." => "ファイルシステムキャッシュを更新中..."
); );

View File

@ -1,40 +1,69 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"There is no error, the file uploaded with success" => "Viss kārtībā, augšupielāde veiksmīga", "No file was uploaded. Unknown error" => "Netika augšupielādēta neviena datne. Nezināma kļūda",
"No file was uploaded" => "Neviens fails netika augšuplādēts", "There is no error, the file uploaded with success" => "Augšupielāde pabeigta bez kļūdām",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Augšupielādētā datne pārsniedz upload_max_filesize norādījumu php.ini datnē:",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Augšupielādētā datne pārsniedz MAX_FILE_SIZE norādi, kas ir norādīta HTML formā",
"The uploaded file was only partially uploaded" => "Augšupielādētā datne ir tikai daļēji augšupielādēta",
"No file was uploaded" => "Neviena datne netika augšupielādēta",
"Missing a temporary folder" => "Trūkst pagaidu mapes", "Missing a temporary folder" => "Trūkst pagaidu mapes",
"Failed to write to disk" => "Nav iespējams saglabāt", "Failed to write to disk" => "Neizdevās saglabāt diskā",
"Files" => "Faili", "Not enough space available" => "Nepietiek brīvas vietas",
"Unshare" => "Pārtraukt līdzdalīšanu", "Invalid directory." => "Nederīga direktorija.",
"Delete" => "Izdzēst", "Files" => "Datnes",
"Rename" => "Pārdēvēt", "Unshare" => "Pārtraukt dalīšanos",
"Delete" => "Dzēst",
"Rename" => "Pārsaukt",
"{new_name} already exists" => "{new_name} jau eksistē",
"replace" => "aizvietot", "replace" => "aizvietot",
"suggest name" => "Ieteiktais nosaukums", "suggest name" => "ieteiktais nosaukums",
"cancel" => "atcelt", "cancel" => "atcelt",
"undo" => "vienu soli atpakaļ", "replaced {new_name}" => "aizvietots {new_name}",
"Unable to upload your file as it is a directory or has 0 bytes" => "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai arī failam nav izmēra (0 baiti)", "undo" => "atsaukt",
"Upload Error" => "Augšuplādēšanas laikā radās kļūda", "replaced {new_name} with {old_name}" => "aizvietoja {new_name} ar {old_name}",
"perform delete operation" => "veikt dzēšanas darbību",
"'.' is an invalid file name." => "'.' ir nederīgs datnes nosaukums.",
"File name cannot be empty." => "Datnes nosaukums nevar būt tukšs.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'.",
"Your storage is full, files can not be updated or synced anymore!" => "Jūsu krātuve ir pilna, datnes vairs nevar augšupielādēt vai sinhronizēt!",
"Your storage is almost full ({usedSpacePercent}%)" => "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)",
"Your download is being prepared. This might take some time if the files are big." => "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Nevar augšupielādēt jūsu datni, jo tā ir direktorija vai arī tās izmērs ir 0 baiti",
"Upload Error" => "Kļūda augšupielādējot",
"Close" => "Aizvērt",
"Pending" => "Gaida savu kārtu", "Pending" => "Gaida savu kārtu",
"Upload cancelled." => "Augšuplāde ir atcelta", "1 file uploading" => "Augšupielādē 1 datni",
"{count} files uploading" => "augšupielādē {count} datnes",
"Upload cancelled." => "Augšupielāde ir atcelta.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde.", "File upload is in progress. Leaving the page now will cancel the upload." => "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde.",
"URL cannot be empty." => "URL nevar būt tukšs.",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nederīgs mapes nosaukums. “Koplietots” izmantojums ir rezervēts ownCloud servisam.",
"Name" => "Nosaukums", "Name" => "Nosaukums",
"Size" => "Izmērs", "Size" => "Izmērs",
"Modified" => "Izmainīts", "Modified" => "Mainīts",
"Upload" => "Augšuplādet", "1 folder" => "1 mape",
"File handling" => "Failu pārvaldība", "{count} folders" => "{count} mapes",
"Maximum upload size" => "Maksimālais failu augšuplādes apjoms", "1 file" => "1 datne",
"max. possible: " => "maksīmālais iespējamais:", "{count} files" => "{count} datnes",
"Needed for multi-file and folder downloads." => "Vajadzīgs vairāku failu un mapju lejuplādei", "Upload" => "Augšupielādēt",
"Enable ZIP-download" => "Iespējot ZIP lejuplādi", "File handling" => "Datņu pārvaldība",
"Maximum upload size" => "Maksimālais datņu augšupielādes apjoms",
"max. possible: " => "maksimālais iespējamais:",
"Needed for multi-file and folder downloads." => "Vajadzīgs vairāku datņu un mapju lejupielādēšanai.",
"Enable ZIP-download" => "Aktivēt ZIP lejupielādi",
"0 is unlimited" => "0 ir neierobežots", "0 is unlimited" => "0 ir neierobežots",
"Maximum input size for ZIP files" => "Maksimālais ievades izmērs ZIP datnēm",
"Save" => "Saglabāt", "Save" => "Saglabāt",
"New" => "Jauns", "New" => "Jauna",
"Text file" => "Teksta fails", "Text file" => "Teksta datne",
"Folder" => "Mape", "Folder" => "Mape",
"Cancel upload" => "Atcelt augšuplādi", "From link" => "No saites",
"Nothing in here. Upload something!" => "Te vēl nekas nav. Rīkojies, sāc augšuplādēt", "Trash" => "Miskaste",
"Download" => "Lejuplādēt", "Cancel upload" => "Atcelt augšupielādi",
"Upload too large" => "Fails ir par lielu lai to augšuplādetu", "Nothing in here. Upload something!" => "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Jūsu augšuplādējamie faili pārsniedz servera pieļaujamo failu augšupielādes apjomu", "Download" => "Lejupielādēt",
"Files are being scanned, please wait." => "Faili šobrīd tiek caurskatīti, nedaudz jāpagaida.", "Upload too large" => "Datne ir par lielu, lai to augšupielādētu",
"Current scanning" => "Šobrīd tiek pārbaudīti" "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu",
"Files are being scanned, please wait." => "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet.",
"Current scanning" => "Šobrīd tiek caurskatīts",
"Upgrading filesystem cache..." => "Uzlabo datņu sistēmas kešatmiņu..."
); );

View File

@ -20,9 +20,12 @@
"replaced {new_name}" => "verving {new_name}", "replaced {new_name}" => "verving {new_name}",
"undo" => "ongedaan maken", "undo" => "ongedaan maken",
"replaced {new_name} with {old_name}" => "verving {new_name} met {old_name}", "replaced {new_name} with {old_name}" => "verving {new_name} met {old_name}",
"perform delete operation" => "uitvoeren verwijderactie",
"'.' is an invalid file name." => "'.' is een ongeldige bestandsnaam.", "'.' is an invalid file name." => "'.' is een ongeldige bestandsnaam.",
"File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.", "File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan.",
"Your storage is full, files can not be updated or synced anymore!" => "Uw opslagruimte zit vol, Bestanden kunnen niet meer worden ge-upload of gesynchroniseerd!",
"Your storage is almost full ({usedSpacePercent}%)" => "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)",
"Your download is being prepared. This might take some time if the files are big." => "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden.", "Your download is being prepared. This might take some time if the files are big." => "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden.",
"Unable to upload your file as it is a directory or has 0 bytes" => "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes", "Unable to upload your file as it is a directory or has 0 bytes" => "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes",
"Upload Error" => "Upload Fout", "Upload Error" => "Upload Fout",
@ -54,11 +57,13 @@
"Text file" => "Tekstbestand", "Text file" => "Tekstbestand",
"Folder" => "Map", "Folder" => "Map",
"From link" => "Vanaf link", "From link" => "Vanaf link",
"Trash" => "Verwijderen",
"Cancel upload" => "Upload afbreken", "Cancel upload" => "Upload afbreken",
"Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!", "Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!",
"Download" => "Download", "Download" => "Download",
"Upload too large" => "Bestanden te groot", "Upload too large" => "Bestanden te groot",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server.",
"Files are being scanned, please wait." => "Bestanden worden gescand, even wachten.", "Files are being scanned, please wait." => "Bestanden worden gescand, even wachten.",
"Current scanning" => "Er wordt gescand" "Current scanning" => "Er wordt gescand",
"Upgrading filesystem cache..." => "Upgraden bestandssysteem cache..."
); );

View File

@ -20,6 +20,7 @@
"replaced {new_name}" => "{new_name} substituido", "replaced {new_name}" => "{new_name} substituido",
"undo" => "desfazer", "undo" => "desfazer",
"replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}", "replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}",
"perform delete operation" => "Executar a tarefa de apagar",
"'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!", "'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!",
"File name cannot be empty." => "O nome do ficheiro não pode estar vazio.", "File name cannot be empty." => "O nome do ficheiro não pode estar vazio.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.",
@ -56,6 +57,7 @@
"Text file" => "Ficheiro de texto", "Text file" => "Ficheiro de texto",
"Folder" => "Pasta", "Folder" => "Pasta",
"From link" => "Da ligação", "From link" => "Da ligação",
"Trash" => "Lixo",
"Cancel upload" => "Cancelar envio", "Cancel upload" => "Cancelar envio",
"Nothing in here. Upload something!" => "Vazio. Envie alguma coisa!", "Nothing in here. Upload something!" => "Vazio. Envie alguma coisa!",
"Download" => "Transferir", "Download" => "Transferir",

View File

@ -20,6 +20,7 @@
"replaced {new_name}" => "prepísaný {new_name}", "replaced {new_name}" => "prepísaný {new_name}",
"undo" => "vrátiť", "undo" => "vrátiť",
"replaced {new_name} with {old_name}" => "prepísaný {new_name} súborom {old_name}", "replaced {new_name} with {old_name}" => "prepísaný {new_name} súborom {old_name}",
"perform delete operation" => "vykonať zmazanie",
"'.' is an invalid file name." => "'.' je neplatné meno súboru.", "'.' is an invalid file name." => "'.' je neplatné meno súboru.",
"File name cannot be empty." => "Meno súboru nemôže byť prázdne", "File name cannot be empty." => "Meno súboru nemôže byť prázdne",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty.",
@ -56,11 +57,13 @@
"Text file" => "Textový súbor", "Text file" => "Textový súbor",
"Folder" => "Priečinok", "Folder" => "Priečinok",
"From link" => "Z odkazu", "From link" => "Z odkazu",
"Trash" => "Kôš",
"Cancel upload" => "Zrušiť odosielanie", "Cancel upload" => "Zrušiť odosielanie",
"Nothing in here. Upload something!" => "Žiadny súbor. Nahrajte niečo!", "Nothing in here. Upload something!" => "Žiadny súbor. Nahrajte niečo!",
"Download" => "Stiahnuť", "Download" => "Stiahnuť",
"Upload too large" => "Odosielaný súbor je príliš veľký", "Upload too large" => "Odosielaný súbor je príliš veľký",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server.", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server.",
"Files are being scanned, please wait." => "Čakajte, súbory sú prehľadávané.", "Files are being scanned, please wait." => "Čakajte, súbory sú prehľadávané.",
"Current scanning" => "Práve prehliadané" "Current scanning" => "Práve prehliadané",
"Upgrading filesystem cache..." => "Aktualizujem medzipamäť súborového systému..."
); );

View File

@ -20,6 +20,7 @@
"replaced {new_name}" => "ersatt {new_name}", "replaced {new_name}" => "ersatt {new_name}",
"undo" => "ångra", "undo" => "ångra",
"replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}", "replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}",
"perform delete operation" => "utför raderingen",
"'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.", "'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.",
"File name cannot be empty." => "Filnamn kan inte vara tomt.", "File name cannot be empty." => "Filnamn kan inte vara tomt.",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet.",
@ -56,6 +57,7 @@
"Text file" => "Textfil", "Text file" => "Textfil",
"Folder" => "Mapp", "Folder" => "Mapp",
"From link" => "Från länk", "From link" => "Från länk",
"Trash" => "Papperskorgen",
"Cancel upload" => "Avbryt uppladdning", "Cancel upload" => "Avbryt uppladdning",
"Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!", "Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!",
"Download" => "Ladda ner", "Download" => "Ladda ner",

View File

@ -20,6 +20,7 @@
"replaced {new_name}" => "แทนที่ {new_name} แล้ว", "replaced {new_name}" => "แทนที่ {new_name} แล้ว",
"undo" => "เลิกทำ", "undo" => "เลิกทำ",
"replaced {new_name} with {old_name}" => "แทนที่ {new_name} ด้วย {old_name} แล้ว", "replaced {new_name} with {old_name}" => "แทนที่ {new_name} ด้วย {old_name} แล้ว",
"perform delete operation" => "ดำเนินการตามคำสั่งลบ",
"'.' is an invalid file name." => "'.' เป็นชื่อไฟล์ที่ไม่ถูกต้อง", "'.' is an invalid file name." => "'.' เป็นชื่อไฟล์ที่ไม่ถูกต้อง",
"File name cannot be empty." => "ชื่อไฟล์ไม่สามารถเว้นว่างได้", "File name cannot be empty." => "ชื่อไฟล์ไม่สามารถเว้นว่างได้",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้",
@ -56,11 +57,13 @@
"Text file" => "ไฟล์ข้อความ", "Text file" => "ไฟล์ข้อความ",
"Folder" => "แฟ้มเอกสาร", "Folder" => "แฟ้มเอกสาร",
"From link" => "จากลิงก์", "From link" => "จากลิงก์",
"Trash" => "ถังขยะ",
"Cancel upload" => "ยกเลิกการอัพโหลด", "Cancel upload" => "ยกเลิกการอัพโหลด",
"Nothing in here. Upload something!" => "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!", "Nothing in here. Upload something!" => "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!",
"Download" => "ดาวน์โหลด", "Download" => "ดาวน์โหลด",
"Upload too large" => "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป", "Upload too large" => "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้",
"Files are being scanned, please wait." => "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่.", "Files are being scanned, please wait." => "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่.",
"Current scanning" => "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" "Current scanning" => "ไฟล์ที่กำลังสแกนอยู่ขณะนี้",
"Upgrading filesystem cache..." => "กำลังอัพเกรดหน่วยความจำแคชของระบบไฟล์..."
); );

View File

@ -20,9 +20,12 @@
"replaced {new_name}" => "已取代 {new_name}", "replaced {new_name}" => "已取代 {new_name}",
"undo" => "復原", "undo" => "復原",
"replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}", "replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}",
"perform delete operation" => "進行刪除動作",
"'.' is an invalid file name." => "'.' 是不合法的檔名。", "'.' is an invalid file name." => "'.' 是不合法的檔名。",
"File name cannot be empty." => "檔名不能為空。", "File name cannot be empty." => "檔名不能為空。",
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。",
"Your storage is full, files can not be updated or synced anymore!" => "您的儲存空間已滿,沒有辦法再更新或是同步檔案!",
"Your storage is almost full ({usedSpacePercent}%)" => "您的儲存空間快要滿了 ({usedSpacePercent}%)",
"Your download is being prepared. This might take some time if the files are big." => "正在準備您的下載,若您的檔案較大,將會需要更多時間。", "Your download is being prepared. This might take some time if the files are big." => "正在準備您的下載,若您的檔案較大,將會需要更多時間。",
"Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0", "Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0",
"Upload Error" => "上傳發生錯誤", "Upload Error" => "上傳發生錯誤",
@ -54,11 +57,13 @@
"Text file" => "文字檔", "Text file" => "文字檔",
"Folder" => "資料夾", "Folder" => "資料夾",
"From link" => "從連結", "From link" => "從連結",
"Trash" => "回收筒",
"Cancel upload" => "取消上傳", "Cancel upload" => "取消上傳",
"Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!", "Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!",
"Download" => "下載", "Download" => "下載",
"Upload too large" => "上傳過大", "Upload too large" => "上傳過大",
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。 ", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。 ",
"Files are being scanned, please wait." => "正在掃描檔案,請稍等。", "Files are being scanned, please wait." => "正在掃描檔案,請稍等。",
"Current scanning" => "目前掃描" "Current scanning" => "目前掃描",
"Upgrading filesystem cache..." => "正在更新檔案系統快取..."
); );

View File

@ -1,10 +1,16 @@
<?php if(count($_["breadcrumb"])):?>
<div class="crumb">
<a href="<?php echo $_['baseURL'].urlencode($crumb['dir']); ?>">
<img src="<?php echo OCP\image_path('core','places/home.svg');?>" />
</a>
</div>
<?php endif;?>
<?php for($i=0; $i<count($_["breadcrumb"]); $i++): <?php for($i=0; $i<count($_["breadcrumb"]); $i++):
$crumb = $_["breadcrumb"][$i]; $crumb = $_["breadcrumb"][$i];
$dir = str_replace('+', '%20', urlencode($crumb["dir"])); $dir = str_replace('+', '%20', urlencode($crumb["dir"]));
$dir = str_replace('%2F', '/', $dir); ?> $dir = str_replace('%2F', '/', $dir); ?>
<div class="crumb <?php if($i == count($_["breadcrumb"])-1) echo 'last';?> svg" <div class="crumb <?php if($i == count($_["breadcrumb"])-1) echo 'last';?> svg"
data-dir='<?php echo $dir;?>' data-dir='<?php echo $dir;?>'>
style='background-image:url("<?php echo OCP\image_path('core', 'breadcrumb.png');?>")'>
<a href="<?php echo $_['baseURL'].$dir; ?>"><?php echo OCP\Util::sanitizeHTML($crumb["name"]); ?></a> <a href="<?php echo $_['baseURL'].$dir; ?>"><?php echo OCP\Util::sanitizeHTML($crumb["name"]); ?></a>
</div> </div>
<?php endfor; <?php endfor;

View File

@ -28,7 +28,7 @@
> >
<?php if(!isset($_['readonly']) || !$_['readonly']): ?><input type="checkbox" /><?php endif; ?> <?php if(!isset($_['readonly']) || !$_['readonly']): ?><input type="checkbox" /><?php endif; ?>
<?php if($file['type'] == 'dir'): ?> <?php if($file['type'] == 'dir'): ?>
<a class="name" href="<?php echo $_['baseURL'].$directory.'/'.$name; ?>)" title=""> <a class="name" href="<?php echo $_['baseURL'].$directory.'/'.$name; ?>" title="">
<?php else: ?> <?php else: ?>
<a class="name" href="<?php echo $_['downloadURL'].$directory.'/'.$name; ?>" title=""> <a class="name" href="<?php echo $_['downloadURL'].$directory.'/'.$name; ?>" title="">
<?php endif; ?> <?php endif; ?>

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Please check your passwords and try again." => "Tarkista salasanasi ja yritä uudelleen.",
"Choose encryption mode:" => "Choose encryption mode:",
"None (no encryption at all)" => "Ei mitään (ei lainkaan salausta)",
"Important: Once you selected an encryption mode there is no way to change it back" => "Tärkeä huomautus: Kun olet valinnut salaustatavan, sitä ei ole mahdollista vaihtaa",
"Encryption" => "Salaus", "Encryption" => "Salaus",
"Exclude the following file types from encryption" => "Jätä seuraavat tiedostotyypit salaamatta", "Exclude the following file types from encryption" => "Jätä seuraavat tiedostotyypit salaamatta",
"None" => "Ei mitään" "None" => "Ei mitään"

View File

@ -0,0 +1,16 @@
<?php $TRANSLATIONS = array(
"Please switch to your ownCloud client and change your encryption password to complete the conversion." => "Lūdzu, pārslēdzieties uz savu ownCloud klientu un maniet savu šifrēšanas paroli, lai pabeigtu pārveidošanu.",
"switched to client side encryption" => "Pārslēdzās uz klienta puses šifrēšanu",
"Change encryption password to login password" => "Mainīt šifrēšanas paroli uz ierakstīšanās paroli",
"Please check your passwords and try again." => "Lūdzu, pārbaudiet savas paroles un mēģiniet vēlreiz.",
"Could not change your file encryption password to your login password" => "Nevarēja mainīt datņu šifrēšanas paroli uz ierakstīšanās paroli",
"Choose encryption mode:" => "Izvēlieties šifrēšanas režīmu:",
"Client side encryption (most secure but makes it impossible to access your data from the web interface)" => "Klienta puses šifrēšana (visdrošākā, bet nav iespējams piekļūt saviem datiem no tīmekļa saskarnes)",
"Server side encryption (allows you to access your files from the web interface and the desktop client)" => "Servera puses šifrēšana (ļauj piekļūt datnēm ar tīmekļa saskarni un ar darbvirsmas klientu)",
"None (no encryption at all)" => "Nav (nekādas šifrēšanas)",
"Important: Once you selected an encryption mode there is no way to change it back" => "Svarīgi — kad esat izvēlējies šifrēšanas režīmu, to nekādi nevar mainīt atpakaļ",
"User specific (let the user decide)" => "Lietotājam specifiski (ļauj lietotājam izlemt)",
"Encryption" => "Šifrēšana",
"Exclude the following file types from encryption" => "Sekojošos datņu tipus nešifrēt",
"None" => "Nav"
);

View File

@ -1,4 +1,11 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"switched to client side encryption" => "overgeschakeld naar client side encryptie",
"Change encryption password to login password" => "Verander encryptie wachtwoord naar login wachtwoord",
"Please check your passwords and try again." => "Controleer uw wachtwoorden en probeer het opnieuw.",
"Could not change your file encryption password to your login password" => "Kon het bestandsencryptie wachtwoord niet veranderen naar het login wachtwoord",
"Choose encryption mode:" => "Kies encryptie mode:",
"None (no encryption at all)" => "Geen (zonder encryptie)",
"Important: Once you selected an encryption mode there is no way to change it back" => "Belangrijk: Zodra er voor een encryptie mode is gekozen kan deze niet meer worden gewijzigd.",
"Encryption" => "Versleuteling", "Encryption" => "Versleuteling",
"Exclude the following file types from encryption" => "Versleutel de volgende bestand types niet", "Exclude the following file types from encryption" => "Versleutel de volgende bestand types niet",
"None" => "Geen" "None" => "Geen"

View File

@ -36,7 +36,7 @@ $(document).ready(function() {
} }
}); });
$('#externalStorage tbody tr input').live('keyup', function() { $('#externalStorage tbody').on('keyup', 'tr input', function() {
var tr = $(this).parent().parent(); var tr = $(this).parent().parent();
if ($(tr).hasClass('\\\\OC\\\\Files\\\\Storage\\\\Dropbox') && $(tr).find('[data-parameter="configured"]').val() != 'true') { if ($(tr).hasClass('\\\\OC\\\\Files\\\\Storage\\\\Dropbox') && $(tr).find('[data-parameter="configured"]').val() != 'true') {
var config = $(tr).find('.configuration'); var config = $(tr).find('.configuration');
@ -52,7 +52,7 @@ $(document).ready(function() {
} }
}); });
$('.dropbox').live('click', function(event) { $('.dropbox').on('click', function(event) {
event.preventDefault(); event.preventDefault();
var app_key = $(this).parent().find('[data-parameter="app_key"]').val(); var app_key = $(this).parent().find('[data-parameter="app_key"]').val();
var app_secret = $(this).parent().find('[data-parameter="app_secret"]').val(); var app_secret = $(this).parent().find('[data-parameter="app_secret"]').val();

View File

@ -33,8 +33,7 @@ $(document).ready(function() {
} }
}); });
$('#externalStorage tbody tr').live('change', function() { $('#externalStorage tbody').on('change', 'tr', function() {
console.log('hello');
if ($(this).hasClass('\\\\OC\\\\Files\\\\Storage\\\\Google') && $(this).find('[data-parameter="configured"]').val() != 'true') { if ($(this).hasClass('\\\\OC\\\\Files\\\\Storage\\\\Google') && $(this).find('[data-parameter="configured"]').val() != 'true') {
if ($(this).find('.mountPoint input').val() != '') { if ($(this).find('.mountPoint input').val() != '') {
if ($(this).find('.google').length == 0) { if ($(this).find('.google').length == 0) {
@ -44,7 +43,7 @@ $(document).ready(function() {
} }
}); });
$('#externalStorage tbody tr .mountPoint input').live('keyup', function() { $('#externalStorage tbody').on('keyup', 'tr .mountPoint input', function() {
var tr = $(this).parent().parent(); var tr = $(this).parent().parent();
if ($(tr).hasClass('\\\\OC\\\\Files\\\\Storage\\\\Google') && $(tr).find('[data-parameter="configured"]').val() != 'true' && $(tr).find('.google').length > 0) { if ($(tr).hasClass('\\\\OC\\\\Files\\\\Storage\\\\Google') && $(tr).find('[data-parameter="configured"]').val() != 'true' && $(tr).find('.google').length > 0) {
if ($(this).val() != '') { if ($(this).val() != '') {
@ -55,7 +54,7 @@ $(document).ready(function() {
} }
}); });
$('.google').live('click', function(event) { $('.google').on('click', function(event) {
event.preventDefault(); event.preventDefault();
var tr = $(this).parent().parent(); var tr = $(this).parent().parent();
var configured = $(this).parent().find('[data-parameter="configured"]'); var configured = $(this).parent().find('[data-parameter="configured"]');

View File

@ -71,7 +71,7 @@ OC.MountConfig={
$(document).ready(function() { $(document).ready(function() {
$('.chzn-select').chosen(); $('.chzn-select').chosen();
$('#selectBackend').live('change', function() { $('#selectBackend').on('change', function() {
var tr = $(this).parent().parent(); var tr = $(this).parent().parent();
$('#externalStorage tbody').append($(tr).clone()); $('#externalStorage tbody').append($(tr).clone());
$('#externalStorage tbody tr').last().find('.mountPoint input').val(''); $('#externalStorage tbody tr').last().find('.mountPoint input').val('');
@ -135,11 +135,11 @@ $(document).ready(function() {
return defaultMountPoint+append; return defaultMountPoint+append;
} }
$('#externalStorage td').live('change', function() { $('#externalStorage').on('change', 'td', function() {
OC.MountConfig.saveStorage($(this).parent()); OC.MountConfig.saveStorage($(this).parent());
}); });
$('td.remove>img').live('click', function() { $('td.remove>img').on('click', function() {
var tr = $(this).parent().parent(); var tr = $(this).parent().parent();
var mountPoint = $(tr).find('.mountPoint input').val(); var mountPoint = $(tr).find('.mountPoint input').val();
if ( ! mountPoint) { if ( ! mountPoint) {

View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"Users" => "Gebruikers"
);

View File

@ -1,5 +1,10 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"External Storage" => "حافظه خارجی",
"Configuration" => "پیکربندی",
"Options" => "تنظیمات",
"Applicable" => "قابل اجرا",
"Groups" => "گروه ها", "Groups" => "گروه ها",
"Users" => "کاربران", "Users" => "کاربران",
"Delete" => "حذف" "Delete" => "حذف",
"Enable User External Storage" => "فعال سازی حافظه خارجی کاربر"
); );

View File

@ -4,6 +4,8 @@
"Grant access" => "Salli pääsy", "Grant access" => "Salli pääsy",
"Fill out all required fields" => "Täytä kaikki vaaditut kentät", "Fill out all required fields" => "Täytä kaikki vaaditut kentät",
"Error configuring Google Drive storage" => "Virhe Google Drive levyn asetuksia tehtäessä", "Error configuring Google Drive storage" => "Virhe Google Drive levyn asetuksia tehtäessä",
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Varoitus:</b> \"smbclient\" ei ole asennettuna. CIFS-/SMB-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan smbclient.",
"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Varoitus:</b> PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. FTP-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön.",
"External Storage" => "Erillinen tallennusväline", "External Storage" => "Erillinen tallennusväline",
"Mount point" => "Liitospiste", "Mount point" => "Liitospiste",
"Backend" => "Taustaosa", "Backend" => "Taustaosa",

View File

@ -1,5 +1,26 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Access granted" => "Piešķirta pieeja",
"Error configuring Dropbox storage" => "Kļūda, konfigurējot Dropbox krātuvi",
"Grant access" => "Piešķirt pieeju",
"Fill out all required fields" => "Aizpildīt visus pieprasītos laukus",
"Please provide a valid Dropbox app key and secret." => "Lūdzu, norādiet derīgu Dropbox lietotnes atslēgu un noslēpumu.",
"Error configuring Google Drive storage" => "Kļūda, konfigurējot Google Drive krātuvi",
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Brīdinājums:</b> nav uzinstalēts “smbclient”. Nevar montēt CIFS/SMB koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē.",
"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Brīdinājums: </b> uz PHP nav aktivēts vai instalēts FTP atbalsts. Nevar montēt FTP koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē.",
"External Storage" => "Ārējā krātuve",
"Mount point" => "Montēšanas punkts",
"Backend" => "Aizmugure",
"Configuration" => "Konfigurācija",
"Options" => "Opcijas",
"Applicable" => "Piemērojams",
"Add mount point" => "Pievienot montēšanas punktu",
"None set" => "Neviens nav iestatīts",
"All Users" => "Visi lietotāji",
"Groups" => "Grupas", "Groups" => "Grupas",
"Users" => "Lietotāji", "Users" => "Lietotāji",
"Delete" => "Izdzēst" "Delete" => "Dzēst",
"Enable User External Storage" => "Aktivēt lietotāja ārējo krātuvi",
"Allow users to mount their own external storage" => "Ļaut lietotājiem montēt pašiem savu ārējo krātuvi",
"SSL root certificates" => "SSL saknes sertifikāti",
"Import Root Certificate" => "Importēt saknes sertifikātus"
); );

View File

@ -0,0 +1,4 @@
<?php $TRANSLATIONS = array(
"Password" => "Wagwoord",
"web services under your control" => "webdienste onder jou beheer"
);

View File

@ -1,6 +1,9 @@
<?php $TRANSLATIONS = array( <?php $TRANSLATIONS = array(
"Size" => "اندازه", "Password" => "گذرواژه",
"Modified" => "تاریخ", "Submit" => "ثبت",
"Delete all" => "حذف همه", "%s shared the folder %s with you" => "%sپوشه %s را با شما به اشتراک گذاشت",
"Delete" => "حذف" "%s shared the file %s with you" => "%sفایل %s را با شما به اشتراک گذاشت",
"Download" => "دانلود",
"No preview available for" => "هیچگونه پیش نمایشی موجود نیست",
"web services under your control" => "سرویس های تحت وب در کنترل شما"
); );

View File

@ -0,0 +1,9 @@
<?php $TRANSLATIONS = array(
"Password" => "Parole",
"Submit" => "Iesniegt",
"%s shared the folder %s with you" => "%s ar jums dalījās ar mapi %s",
"%s shared the file %s with you" => "%s ar jums dalījās ar datni %s",
"Download" => "Lejupielādēt",
"No preview available for" => "Nav pieejams priekšskatījums priekš",
"web services under your control" => "jūsu vadībā esošie tīmekļa servisi"
);

View File

@ -235,6 +235,7 @@ if ($linkItem) {
OCP\Util::addStyle('files', 'files'); OCP\Util::addStyle('files', 'files');
OCP\Util::addScript('files', 'files'); OCP\Util::addScript('files', 'files');
OCP\Util::addScript('files', 'filelist'); OCP\Util::addScript('files', 'filelist');
OCP\Util::addscript('files', 'keyboardshortcuts');
$files = array(); $files = array();
$rootLength = strlen($basePath) + 1; $rootLength = strlen($basePath) + 1;
foreach (OC_Files::getDirectoryContent($path) as $i) { foreach (OC_Files::getDirectoryContent($path) as $i) {

View File

@ -1,8 +1,7 @@
<?php <?php
if(!OCP\User::isLoggedIn()) { OCP\JSON::checkLoggedIn();
exit; OCP\JSON::callCheck();
}
$files = $_REQUEST['files']; $files = $_REQUEST['files'];
$dirlisting = $_REQUEST['dirlisting']; $dirlisting = $_REQUEST['dirlisting'];

View File

@ -66,7 +66,7 @@ $(document).ready(function() {
}); });
$('.undelete').click('click',function(event) { $('.undelete').click('click',function(event) {
var spinner = '<img class="move2trash" title="'+t('files_trashbin', 'perform undelete operation')+'" src="'+ OC.imagePath('core', 'loader.gif') +'"></a>'; var spinner = '<img class="move2trash" title="'+t('files_trashbin', 'perform restore operation')+'" src="'+ OC.imagePath('core', 'loader.gif') +'"></a>';
var files=getSelectedFiles('file'); var files=getSelectedFiles('file');
var fileslist=files.join(';'); var fileslist=files.join(';');
var dirlisting=getSelectedFiles('dirlisting')[0]; var dirlisting=getSelectedFiles('dirlisting')[0];

View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"Name" => "اسم"
);

View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"Name" => "Име"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "রাম",
"1 folder" => "১টি ফোল্ডার",
"{count} folders" => "{count} টি ফোল্ডার",
"1 file" => "১টি ফাইল",
"{count} files" => "{count} টি ফাইল"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "executa l'operació de restauració",
"Name" => "Nom",
"Deleted" => "Eliminat",
"1 folder" => "1 carpeta",
"{count} folders" => "{count} carpetes",
"1 file" => "1 fitxer",
"{count} files" => "{count} fitxers",
"Nothing in here. Your trash bin is empty!" => "La paperera està buida!",
"Restore" => "Recupera"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "provést obnovu",
"Name" => "Název",
"Deleted" => "Smazáno",
"1 folder" => "1 složka",
"{count} folders" => "{count} složky",
"1 file" => "1 soubor",
"{count} files" => "{count} soubory",
"Nothing in here. Your trash bin is empty!" => "Žádný obsah. Váš koš je prázdný.",
"Restore" => "Obnovit"
);

View File

@ -0,0 +1,8 @@
<?php $TRANSLATIONS = array(
"Name" => "Navn",
"1 folder" => "1 mappe",
"{count} folders" => "{count} mapper",
"1 file" => "1 fil",
"{count} files" => "{count} filer",
"Restore" => "Gendan"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "Wiederherstellung ausführen",
"Name" => "Name",
"Deleted" => "gelöscht",
"1 folder" => "1 Ordner",
"{count} folders" => "{count} Ordner",
"1 file" => "1 Datei",
"{count} files" => "{count} Dateien",
"Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, der Papierkorb ist leer!",
"Restore" => "Wiederherstellen"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "Führe die Wiederherstellung aus",
"Name" => "Name",
"Deleted" => "Gelöscht",
"1 folder" => "1 Ordner",
"{count} folders" => "{count} Ordner",
"1 file" => "1 Datei",
"{count} files" => "{count} Dateien",
"Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!",
"Restore" => "Wiederherstellen"
);

View File

@ -0,0 +1,8 @@
<?php $TRANSLATIONS = array(
"Name" => "Όνομα",
"1 folder" => "1 φάκελος",
"{count} folders" => "{count} φάκελοι",
"1 file" => "1 αρχείο",
"{count} files" => "{count} αρχεία",
"Restore" => "Επαναφορά"
);

View File

@ -0,0 +1,8 @@
<?php $TRANSLATIONS = array(
"Name" => "Nomo",
"1 folder" => "1 dosierujo",
"{count} folders" => "{count} dosierujoj",
"1 file" => "1 dosiero",
"{count} files" => "{count} dosierujoj",
"Restore" => "Restaŭri"
);

View File

@ -0,0 +1,8 @@
<?php $TRANSLATIONS = array(
"Name" => "Nombre",
"1 folder" => "1 carpeta",
"{count} folders" => "{count} carpetas",
"1 file" => "1 archivo",
"{count} files" => "{count} archivos",
"Restore" => "Recuperar"
);

View File

@ -0,0 +1,8 @@
<?php $TRANSLATIONS = array(
"Name" => "Nombre",
"1 folder" => "1 directorio",
"{count} folders" => "{count} directorios",
"1 file" => "1 archivo",
"{count} files" => "{count} archivos",
"Restore" => "Recuperar"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "Nimi",
"1 folder" => "1 kaust",
"{count} folders" => "{count} kausta",
"1 file" => "1 fail",
"{count} files" => "{count} faili"
);

View File

@ -0,0 +1,8 @@
<?php $TRANSLATIONS = array(
"Name" => "Izena",
"1 folder" => "karpeta bat",
"{count} folders" => "{count} karpeta",
"1 file" => "fitxategi bat",
"{count} files" => "{count} fitxategi",
"Restore" => "Berrezarri"
);

View File

@ -0,0 +1,8 @@
<?php $TRANSLATIONS = array(
"Name" => "نام",
"1 folder" => "1 پوشه",
"{count} folders" => "{ شمار} پوشه ها",
"1 file" => "1 پرونده",
"{count} files" => "{ شمار } فایل ها",
"Restore" => "بازیابی"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "suorita palautustoiminto",
"Name" => "Nimi",
"Deleted" => "Poistettu",
"1 folder" => "1 kansio",
"{count} folders" => "{count} kansiota",
"1 file" => "1 tiedosto",
"{count} files" => "{count} tiedostoa",
"Nothing in here. Your trash bin is empty!" => "Tyhjää täynnä! Roskakorissa ei ole mitään.",
"Restore" => "Palauta"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "effectuer l'opération de restauration",
"Name" => "Nom",
"Deleted" => "Effacé",
"1 folder" => "1 dossier",
"{count} folders" => "{count} dossiers",
"1 file" => "1 fichier",
"{count} files" => "{count} fichiers",
"Nothing in here. Your trash bin is empty!" => "Il n'y a rien ici. Votre corbeille est vide !",
"Restore" => "Restaurer"
);

View File

@ -0,0 +1,8 @@
<?php $TRANSLATIONS = array(
"Name" => "Nome",
"1 folder" => "1 cartafol",
"{count} folders" => "{count} cartafoles",
"1 file" => "1 ficheiro",
"{count} files" => "{count} ficheiros",
"Restore" => "Restablecer"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "שם",
"1 folder" => "תיקייה אחת",
"{count} folders" => "{count} תיקיות",
"1 file" => "קובץ אחד",
"{count} files" => "{count} קבצים"
);

View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"Name" => "Ime"
);

View File

@ -0,0 +1,8 @@
<?php $TRANSLATIONS = array(
"Name" => "Név",
"1 folder" => "1 mappa",
"{count} folders" => "{count} mappa",
"1 file" => "1 fájl",
"{count} files" => "{count} fájl",
"Restore" => "Visszaállítás"
);

View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"Name" => "Nomine"
);

View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"Name" => "nama"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "Nafn",
"1 folder" => "1 mappa",
"{count} folders" => "{count} möppur",
"1 file" => "1 skrá",
"{count} files" => "{count} skrár"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "esegui operazione di ripristino",
"Name" => "Nome",
"Deleted" => "Eliminati",
"1 folder" => "1 cartella",
"{count} folders" => "{count} cartelle",
"1 file" => "1 file",
"{count} files" => "{count} file",
"Nothing in here. Your trash bin is empty!" => "Qui non c'è niente. Il tuo cestino è vuoto.",
"Restore" => "Ripristina"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "復元操作を実行する",
"Name" => "名前",
"Deleted" => "削除済み",
"1 folder" => "1 フォルダ",
"{count} folders" => "{count} フォルダ",
"1 file" => "1 ファイル",
"{count} files" => "{count} ファイル",
"Nothing in here. Your trash bin is empty!" => "ここには何もありません。ゴミ箱は空です!",
"Restore" => "復元"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "სახელი",
"1 folder" => "1 საქაღალდე",
"{count} folders" => "{count} საქაღალდე",
"1 file" => "1 ფაილი",
"{count} files" => "{count} ფაილი"
);

View File

@ -0,0 +1,8 @@
<?php $TRANSLATIONS = array(
"Name" => "이름",
"1 folder" => "폴더 1개",
"{count} folders" => "폴더 {count}개",
"1 file" => "파일 1개",
"{count} files" => "파일 {count}개",
"Restore" => "복원"
);

View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"Name" => "ناو"
);

View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"Name" => "Numm"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "Pavadinimas",
"1 folder" => "1 aplankalas",
"{count} folders" => "{count} aplankalai",
"1 file" => "1 failas",
"{count} files" => "{count} failai"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "veikt atjaunošanu",
"Name" => "Nosaukums",
"Deleted" => "Dzēsts",
"1 folder" => "1 mape",
"{count} folders" => "{count} mapes",
"1 file" => "1 datne",
"{count} files" => "{count} datnes",
"Nothing in here. Your trash bin is empty!" => "Šeit nekā nav. Jūsu miskaste ir tukša!",
"Restore" => "Atjaunot"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "Име",
"1 folder" => "1 папка",
"{count} folders" => "{count} папки",
"1 file" => "1 датотека",
"{count} files" => "{count} датотеки"
);

View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"Name" => "Nama"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "Navn",
"1 folder" => "1 mappe",
"{count} folders" => "{count} mapper",
"1 file" => "1 fil",
"{count} files" => "{count} filer"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "uitvoeren restore operatie",
"Name" => "Naam",
"Deleted" => "Verwijderd",
"1 folder" => "1 map",
"{count} folders" => "{count} mappen",
"1 file" => "1 bestand",
"{count} files" => "{count} bestanden",
"Nothing in here. Your trash bin is empty!" => "Niets te vinden. Uw prullenbak is leeg!",
"Restore" => "Herstellen"
);

View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"Name" => "Namn"
);

View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"Name" => "Nom"
);

View File

@ -0,0 +1,8 @@
<?php $TRANSLATIONS = array(
"Name" => "Nazwa",
"1 folder" => "1 folder",
"{count} folders" => "{count} foldery",
"1 file" => "1 plik",
"{count} files" => "{count} pliki",
"Restore" => "Przywróć"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "realizar operação de restauração",
"Name" => "Nome",
"Deleted" => "Excluído",
"1 folder" => "1 pasta",
"{count} folders" => "{count} pastas",
"1 file" => "1 arquivo",
"{count} files" => "{count} arquivos",
"Nothing in here. Your trash bin is empty!" => "Nada aqui. Sua lixeira está vazia!",
"Restore" => "Restaurar"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "Restaurar",
"Name" => "Nome",
"Deleted" => "Apagado",
"1 folder" => "1 pasta",
"{count} folders" => "{count} pastas",
"1 file" => "1 ficheiro",
"{count} files" => "{count} ficheiros",
"Nothing in here. Your trash bin is empty!" => "Não ha ficheiros. O lixo está vazio",
"Restore" => "Restaurar"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "Nume",
"1 folder" => "1 folder",
"{count} folders" => "{count} foldare",
"1 file" => "1 fisier",
"{count} files" => "{count} fisiere"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "Имя",
"1 folder" => "1 папка",
"{count} folders" => "{count} папок",
"1 file" => "1 файл",
"{count} files" => "{count} файлов"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "Имя",
"1 folder" => "1 папка",
"{count} folders" => "{количество} папок",
"1 file" => "1 файл",
"{count} files" => "{количество} файлов"
);

View File

@ -0,0 +1,5 @@
<?php $TRANSLATIONS = array(
"Name" => "නම",
"1 folder" => "1 ෆොල්ඩරයක්",
"1 file" => "1 ගොනුවක්"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "vykonať obnovu",
"Name" => "Meno",
"Deleted" => "Zmazané",
"1 folder" => "1 priečinok",
"{count} folders" => "{count} priečinkov",
"1 file" => "1 súbor",
"{count} files" => "{count} súborov",
"Nothing in here. Your trash bin is empty!" => "Žiadny obsah. Kôš je prázdny!",
"Restore" => "Obnoviť"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "Ime",
"1 folder" => "1 mapa",
"{count} folders" => "{count} map",
"1 file" => "1 datoteka",
"{count} files" => "{count} datotek"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "врати у претходно стање",
"Name" => "Име",
"Deleted" => "Обрисано",
"1 folder" => "1 фасцикла",
"{count} folders" => "{count} фасцикле/и",
"1 file" => "1 датотека",
"{count} files" => "{count} датотеке/а",
"Nothing in here. Your trash bin is empty!" => "Овде нема ништа. Корпа за отпатке је празна.",
"Restore" => "Врати"
);

View File

@ -0,0 +1,3 @@
<?php $TRANSLATIONS = array(
"Name" => "Ime"
);

View File

@ -0,0 +1,10 @@
<?php $TRANSLATIONS = array(
"Name" => "Namn",
"Deleted" => "Raderad",
"1 folder" => "1 mapp",
"{count} folders" => "{count} mappar",
"1 file" => "1 fil",
"{count} files" => "{count} filer",
"Nothing in here. Your trash bin is empty!" => "Ingenting här. Din papperskorg är tom!",
"Restore" => "Återskapa"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "பெயர்",
"1 folder" => "1 கோப்புறை",
"{count} folders" => "{எண்ணிக்கை} கோப்புறைகள்",
"1 file" => "1 கோப்பு",
"{count} files" => "{எண்ணிக்கை} கோப்புகள்"
);

View File

@ -0,0 +1,11 @@
<?php $TRANSLATIONS = array(
"perform restore operation" => "ดำเนินการคืนค่า",
"Name" => "ชื่อ",
"Deleted" => "ลบแล้ว",
"1 folder" => "1 โฟลเดอร์",
"{count} folders" => "{count} โฟลเดอร์",
"1 file" => "1 ไฟล์",
"{count} files" => "{count} ไฟล์",
"Nothing in here. Your trash bin is empty!" => "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่",
"Restore" => "คืนค่า"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "İsim",
"1 folder" => "1 dizin",
"{count} folders" => "{count} dizin",
"1 file" => "1 dosya",
"{count} files" => "{count} dosya"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "Ім'я",
"1 folder" => "1 папка",
"{count} folders" => "{count} папок",
"1 file" => "1 файл",
"{count} files" => "{count} файлів"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "Tên",
"1 folder" => "1 thư mục",
"{count} folders" => "{count} thư mục",
"1 file" => "1 tập tin",
"{count} files" => "{count} tập tin"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "名称",
"1 folder" => "1 个文件夹",
"{count} folders" => "{count} 个文件夹",
"1 file" => "1 个文件",
"{count} files" => "{count} 个文件"
);

View File

@ -0,0 +1,7 @@
<?php $TRANSLATIONS = array(
"Name" => "名称",
"1 folder" => "1个文件夹",
"{count} folders" => "{count} 个文件夹",
"1 file" => "1 个文件",
"{count} files" => "{count} 个文件"
);

Some files were not shown because too many files have changed in this diff Show More