Merge branch 'master' into ext-fs-irods-master
This commit is contained in:
commit
17ff5d486e
|
@ -32,5 +32,8 @@ RewriteRule ^remote/(.*) remote.php [QSA,L]
|
||||||
AddType image/svg+xml svg svgz
|
AddType image/svg+xml svg svgz
|
||||||
AddEncoding gzip svgz
|
AddEncoding gzip svgz
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
<IfModule dir_module>
|
||||||
|
DirectoryIndex index.php index.html
|
||||||
|
</IfModule>
|
||||||
AddDefaultCharset utf-8
|
AddDefaultCharset utf-8
|
||||||
Options -Indexes
|
Options -Indexes
|
||||||
|
|
|
@ -8,7 +8,7 @@ OCP\JSON::callCheck();
|
||||||
|
|
||||||
// Get data
|
// Get data
|
||||||
$dir = stripslashes($_POST["dir"]);
|
$dir = stripslashes($_POST["dir"]);
|
||||||
$files = isset($_POST["file"]) ? stripslashes($_POST["file"]) : stripslashes($_POST["files"]);
|
$files = isset($_POST["file"]) ? $_POST["file"] : $_POST["files"];
|
||||||
|
|
||||||
$files = json_decode($files);
|
$files = json_decode($files);
|
||||||
$filesWithError = '';
|
$filesWithError = '';
|
||||||
|
|
|
@ -22,18 +22,18 @@ var FileActions = {
|
||||||
if (FileActions.actions.all) {
|
if (FileActions.actions.all) {
|
||||||
actions = $.extend(actions, FileActions.actions.all);
|
actions = $.extend(actions, FileActions.actions.all);
|
||||||
}
|
}
|
||||||
if (mime) {
|
if (type) {//type is 'dir' or 'file'
|
||||||
if (FileActions.actions[mime]) {
|
if (FileActions.actions[type]) {
|
||||||
actions = $.extend(actions, FileActions.actions[mime]);
|
actions = $.extend(actions, FileActions.actions[type]);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
if (mime) {
|
||||||
var mimePart = mime.substr(0, mime.indexOf('/'));
|
var mimePart = mime.substr(0, mime.indexOf('/'));
|
||||||
if (FileActions.actions[mimePart]) {
|
if (FileActions.actions[mimePart]) {
|
||||||
actions = $.extend(actions, FileActions.actions[mimePart]);
|
actions = $.extend(actions, FileActions.actions[mimePart]);
|
||||||
}
|
}
|
||||||
}
|
if (FileActions.actions[mime]) {
|
||||||
if (type) {//type is 'dir' or 'file'
|
actions = $.extend(actions, FileActions.actions[mime]);
|
||||||
if (FileActions.actions[type]) {
|
|
||||||
actions = $.extend(actions, FileActions.actions[type]);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
var filteredActions = {};
|
var filteredActions = {};
|
||||||
|
@ -113,6 +113,7 @@ var FileActions = {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if(actions.Share && !($('#dir').val() === '/' && file === 'Shared')){
|
if(actions.Share && !($('#dir').val() === '/' && file === 'Shared')){
|
||||||
|
// t('files', 'Share')
|
||||||
addAction('Share', actions.Share);
|
addAction('Share', actions.Share);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -320,9 +320,9 @@ var FileList={
|
||||||
}
|
}
|
||||||
for (var i=0; i<files.length; i++) {
|
for (var i=0; i<files.length; i++) {
|
||||||
var deleteAction = $('tr').filterAttr('data-file',files[i]).children("td.date").children(".action.delete");
|
var deleteAction = $('tr').filterAttr('data-file',files[i]).children("td.date").children(".action.delete");
|
||||||
var oldHTML = deleteAction[0].outerHTML;
|
var oldHTML = deleteAction.html();
|
||||||
var newHTML = '<img class="move2trash" data-action="Delete" title="'+t('files', 'perform delete operation')+'" src="'+ OC.imagePath('core', 'loading.gif') +'"></a>';
|
var newHTML = '<img class="move2trash" data-action="Delete" title="'+t('files', 'perform delete operation')+'" src="'+ OC.imagePath('core', 'loading.gif') +'"></a>';
|
||||||
deleteAction[0].outerHTML = newHTML;
|
deleteAction.html(newHTML);
|
||||||
}
|
}
|
||||||
// Finish any existing actions
|
// Finish any existing actions
|
||||||
if (FileList.lastAction) {
|
if (FileList.lastAction) {
|
||||||
|
@ -344,7 +344,7 @@ var FileList={
|
||||||
} else {
|
} else {
|
||||||
$.each(files,function(index,file) {
|
$.each(files,function(index,file) {
|
||||||
var deleteAction = $('tr').filterAttr('data-file',file).children("td.date").children(".move2trash");
|
var deleteAction = $('tr').filterAttr('data-file',file).children("td.date").children(".move2trash");
|
||||||
deleteAction[0].outerHTML = oldHTML;
|
deleteAction.html(oldHTML);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -757,9 +757,9 @@ var createDragShadow = function(event){
|
||||||
var dir=$('#dir').val();
|
var dir=$('#dir').val();
|
||||||
|
|
||||||
$(selectedFiles).each(function(i,elem){
|
$(selectedFiles).each(function(i,elem){
|
||||||
var newtr = $('<tr data-dir="'+dir+'" data-filename="'+elem.name+'">'
|
var newtr = $('<tr/>').attr('data-dir', dir).attr('data-filename', elem.name);
|
||||||
+'<td class="filename">'+elem.name+'</td><td class="size">'+humanFileSize(elem.size)+'</td>'
|
newtr.append($('<td/>').addClass('filename').text(elem.name));
|
||||||
+'</tr>');
|
newtr.append($('<td/>').addClass('size').text(humanFileSize(elem.size)));
|
||||||
tbody.append(newtr);
|
tbody.append(newtr);
|
||||||
if (elem.type === 'dir') {
|
if (elem.type === 'dir') {
|
||||||
newtr.find('td.filename').attr('style','background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')');
|
newtr.find('td.filename').attr('style','background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')');
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "لا يوجد مساحة تخزينية كافية",
|
"Not enough storage available" => "لا يوجد مساحة تخزينية كافية",
|
||||||
"Invalid directory." => "مسار غير صحيح.",
|
"Invalid directory." => "مسار غير صحيح.",
|
||||||
"Files" => "الملفات",
|
"Files" => "الملفات",
|
||||||
|
"Share" => "شارك",
|
||||||
"Delete permanently" => "حذف بشكل دائم",
|
"Delete permanently" => "حذف بشكل دائم",
|
||||||
"Delete" => "محذوف",
|
"Delete" => "محذوف",
|
||||||
"Rename" => "إعادة تسميه",
|
"Rename" => "إعادة تسميه",
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
"Failed to write to disk" => "Възникна проблем при запис в диска",
|
"Failed to write to disk" => "Възникна проблем при запис в диска",
|
||||||
"Invalid directory." => "Невалидна директория.",
|
"Invalid directory." => "Невалидна директория.",
|
||||||
"Files" => "Файлове",
|
"Files" => "Файлове",
|
||||||
|
"Share" => "Споделяне",
|
||||||
"Delete permanently" => "Изтриване завинаги",
|
"Delete permanently" => "Изтриване завинаги",
|
||||||
"Delete" => "Изтриване",
|
"Delete" => "Изтриване",
|
||||||
"Rename" => "Преименуване",
|
"Rename" => "Преименуване",
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
"Failed to write to disk" => "ডিস্কে লিখতে ব্যর্থ",
|
"Failed to write to disk" => "ডিস্কে লিখতে ব্যর্থ",
|
||||||
"Invalid directory." => "ভুল ডিরেক্টরি",
|
"Invalid directory." => "ভুল ডিরেক্টরি",
|
||||||
"Files" => "ফাইল",
|
"Files" => "ফাইল",
|
||||||
|
"Share" => "ভাগাভাগি কর",
|
||||||
"Delete" => "মুছে ফেল",
|
"Delete" => "মুছে ফেল",
|
||||||
"Rename" => "পূনঃনামকরণ",
|
"Rename" => "পূনঃনামকরণ",
|
||||||
"Pending" => "মুলতুবি",
|
"Pending" => "মুলতুবি",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "No hi ha prou espai disponible",
|
"Not enough storage available" => "No hi ha prou espai disponible",
|
||||||
"Invalid directory." => "Directori no vàlid.",
|
"Invalid directory." => "Directori no vàlid.",
|
||||||
"Files" => "Fitxers",
|
"Files" => "Fitxers",
|
||||||
|
"Share" => "Comparteix",
|
||||||
"Delete permanently" => "Esborra permanentment",
|
"Delete permanently" => "Esborra permanentment",
|
||||||
"Delete" => "Suprimeix",
|
"Delete" => "Suprimeix",
|
||||||
"Rename" => "Reanomena",
|
"Rename" => "Reanomena",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Nedostatek dostupného úložného prostoru",
|
"Not enough storage available" => "Nedostatek dostupného úložného prostoru",
|
||||||
"Invalid directory." => "Neplatný adresář",
|
"Invalid directory." => "Neplatný adresář",
|
||||||
"Files" => "Soubory",
|
"Files" => "Soubory",
|
||||||
|
"Share" => "Sdílet",
|
||||||
"Delete permanently" => "Trvale odstranit",
|
"Delete permanently" => "Trvale odstranit",
|
||||||
"Delete" => "Smazat",
|
"Delete" => "Smazat",
|
||||||
"Rename" => "Přejmenovat",
|
"Rename" => "Přejmenovat",
|
||||||
|
|
|
@ -1,7 +1,74 @@
|
||||||
<?php $TRANSLATIONS = array(
|
<?php $TRANSLATIONS = array(
|
||||||
|
"Could not move %s - File with this name already exists" => "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli",
|
||||||
|
"Could not move %s" => "Methwyd symud %s",
|
||||||
|
"Unable to rename file" => "Methu ailenwi ffeil",
|
||||||
|
"No file was uploaded. Unknown error" => "Ni lwythwyd ffeil i fyny. Gwall anhysbys.",
|
||||||
|
"There is no error, the file uploaded with success" => "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus",
|
||||||
|
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:",
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML",
|
||||||
|
"The uploaded file was only partially uploaded" => "Dim ond yn rhannol y llwythwyd y ffeil i fyny",
|
||||||
|
"No file was uploaded" => "Ni lwythwyd ffeil i fyny",
|
||||||
|
"Missing a temporary folder" => "Plygell dros dro yn eisiau",
|
||||||
|
"Failed to write to disk" => "Methwyd ysgrifennu i'r ddisg",
|
||||||
|
"Not enough storage available" => "Dim digon o le storio ar gael",
|
||||||
|
"Invalid directory." => "Cyfeiriadur annilys.",
|
||||||
|
"Files" => "Ffeiliau",
|
||||||
|
"Share" => "Rhannu",
|
||||||
|
"Delete permanently" => "Dileu'n barhaol",
|
||||||
"Delete" => "Dileu",
|
"Delete" => "Dileu",
|
||||||
|
"Rename" => "Ailenwi",
|
||||||
|
"Pending" => "I ddod",
|
||||||
|
"{new_name} already exists" => "{new_name} yn bodoli'n barod",
|
||||||
|
"replace" => "amnewid",
|
||||||
|
"suggest name" => "awgrymu enw",
|
||||||
|
"cancel" => "diddymu",
|
||||||
|
"replaced {new_name} with {old_name}" => "newidiwyd {new_name} yn lle {old_name}",
|
||||||
|
"undo" => "dadwneud",
|
||||||
|
"perform delete operation" => "cyflawni gweithred dileu",
|
||||||
|
"1 file uploading" => "1 ffeil yn llwytho i fyny",
|
||||||
|
"files uploading" => "ffeiliau'n llwytho i fyny",
|
||||||
|
"'.' is an invalid file name." => "Mae '.' yn enw ffeil annilys.",
|
||||||
|
"File name cannot be empty." => "Does dim hawl cael enw ffeil gwag.",
|
||||||
|
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'.",
|
||||||
|
"Your storage is full, files can not be updated or synced anymore!" => "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!",
|
||||||
|
"Your storage is almost full ({usedSpacePercent}%)" => "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)",
|
||||||
|
"Your download is being prepared. This might take some time if the files are big." => "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr.",
|
||||||
|
"Unable to upload your file as it is a directory or has 0 bytes" => "Methu llwytho'ch ffeil i fyny gan ei fod yn gyferiadur neu'n cynnwys 0 beit",
|
||||||
|
"Not enough space available" => "Dim digon o le ar gael",
|
||||||
|
"Upload cancelled." => "Diddymwyd llwytho i fyny.",
|
||||||
|
"File upload is in progress. Leaving the page now will cancel the upload." => "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses.",
|
||||||
|
"URL cannot be empty." => "Does dim hawl cael URL gwag.",
|
||||||
|
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Owncloud",
|
||||||
"Error" => "Gwall",
|
"Error" => "Gwall",
|
||||||
|
"Name" => "Enw",
|
||||||
|
"Size" => "Maint",
|
||||||
|
"Modified" => "Addaswyd",
|
||||||
|
"1 folder" => "1 blygell",
|
||||||
|
"{count} folders" => "{count} plygell",
|
||||||
|
"1 file" => "1 ffeil",
|
||||||
|
"{count} files" => "{count} ffeil",
|
||||||
|
"Upload" => "Llwytho i fyny",
|
||||||
|
"File handling" => "Trafod ffeiliau",
|
||||||
|
"Maximum upload size" => "Maint mwyaf llwytho i fyny",
|
||||||
|
"max. possible: " => "mwyaf. posib:",
|
||||||
|
"Needed for multi-file and folder downloads." => "Angen ar gyfer llwytho mwy nag un ffeil neu blygell i lawr yr un pryd.",
|
||||||
|
"Enable ZIP-download" => "Galluogi llwytho i lawr ZIP",
|
||||||
|
"0 is unlimited" => "0 yn ddiderfyn",
|
||||||
|
"Maximum input size for ZIP files" => "Maint mewnbynnu mwyaf ffeiliau ZIP",
|
||||||
"Save" => "Cadw",
|
"Save" => "Cadw",
|
||||||
|
"New" => "Newydd",
|
||||||
|
"Text file" => "Ffeil destun",
|
||||||
|
"Folder" => "Plygell",
|
||||||
|
"From link" => "Dolen o",
|
||||||
|
"Deleted files" => "Ffeiliau ddilewyd",
|
||||||
|
"Cancel upload" => "Diddymu llwytho i fyny",
|
||||||
|
"You don’t have write permissions here." => "Nid oes gennych hawliau ysgrifennu fan hyn.",
|
||||||
|
"Nothing in here. Upload something!" => "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!",
|
||||||
"Download" => "Llwytho i lawr",
|
"Download" => "Llwytho i lawr",
|
||||||
"Unshare" => "Dad-rannu"
|
"Unshare" => "Dad-rannu",
|
||||||
|
"Upload too large" => "Maint llwytho i fyny'n rhy fawr",
|
||||||
|
"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn.",
|
||||||
|
"Files are being scanned, please wait." => "Arhoswch, mae ffeiliau'n cael eu sganio.",
|
||||||
|
"Current scanning" => "Sganio cyfredol",
|
||||||
|
"Upgrading filesystem cache..." => "Uwchraddio storfa system ffeiliau..."
|
||||||
);
|
);
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Der er ikke nok plads til rådlighed",
|
"Not enough storage available" => "Der er ikke nok plads til rådlighed",
|
||||||
"Invalid directory." => "Ugyldig mappe.",
|
"Invalid directory." => "Ugyldig mappe.",
|
||||||
"Files" => "Filer",
|
"Files" => "Filer",
|
||||||
|
"Share" => "Del",
|
||||||
"Delete permanently" => "Slet permanent",
|
"Delete permanently" => "Slet permanent",
|
||||||
"Delete" => "Slet",
|
"Delete" => "Slet",
|
||||||
"Rename" => "Omdøb",
|
"Rename" => "Omdøb",
|
||||||
|
@ -25,6 +26,7 @@
|
||||||
"undo" => "fortryd",
|
"undo" => "fortryd",
|
||||||
"perform delete operation" => "udfør slet operation",
|
"perform delete operation" => "udfør slet operation",
|
||||||
"1 file uploading" => "1 fil uploades",
|
"1 file uploading" => "1 fil uploades",
|
||||||
|
"files uploading" => "uploader filer",
|
||||||
"'.' is an invalid file name." => "'.' er et ugyldigt filnavn.",
|
"'.' is an invalid file name." => "'.' er et ugyldigt filnavn.",
|
||||||
"File name cannot be empty." => "Filnavnet kan ikke stå tomt.",
|
"File name cannot be empty." => "Filnavnet kan ikke stå tomt.",
|
||||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.",
|
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.",
|
||||||
|
@ -32,6 +34,7 @@
|
||||||
"Your storage is almost full ({usedSpacePercent}%)" => "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)",
|
"Your storage is almost full ({usedSpacePercent}%)" => "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)",
|
||||||
"Your download is being prepared. This might take some time if the files are big." => "Dit download forberedes. Dette kan tage lidt tid ved større filer.",
|
"Your download is being prepared. This might take some time if the files are big." => "Dit download forberedes. Dette kan tage lidt tid ved større filer.",
|
||||||
"Unable to upload your file as it is a directory or has 0 bytes" => "Kunne ikke uploade din fil, da det enten er en mappe eller er tom",
|
"Unable to upload your file as it is a directory or has 0 bytes" => "Kunne ikke uploade din fil, da det enten er en mappe eller er tom",
|
||||||
|
"Not enough space available" => "ikke nok tilgængelig ledig plads ",
|
||||||
"Upload cancelled." => "Upload afbrudt.",
|
"Upload cancelled." => "Upload afbrudt.",
|
||||||
"File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.",
|
"File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.",
|
||||||
"URL cannot be empty." => "URLen kan ikke være tom.",
|
"URL cannot be empty." => "URLen kan ikke være tom.",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Nicht genug Speicherplatz verfügbar",
|
"Not enough storage available" => "Nicht genug Speicherplatz verfügbar",
|
||||||
"Invalid directory." => "Ungültiges Verzeichnis.",
|
"Invalid directory." => "Ungültiges Verzeichnis.",
|
||||||
"Files" => "Dateien",
|
"Files" => "Dateien",
|
||||||
|
"Share" => "Teilen",
|
||||||
"Delete permanently" => "Permanent löschen",
|
"Delete permanently" => "Permanent löschen",
|
||||||
"Delete" => "Löschen",
|
"Delete" => "Löschen",
|
||||||
"Rename" => "Umbenennen",
|
"Rename" => "Umbenennen",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Nicht genug Speicher vorhanden.",
|
"Not enough storage available" => "Nicht genug Speicher vorhanden.",
|
||||||
"Invalid directory." => "Ungültiges Verzeichnis.",
|
"Invalid directory." => "Ungültiges Verzeichnis.",
|
||||||
"Files" => "Dateien",
|
"Files" => "Dateien",
|
||||||
|
"Share" => "Teilen",
|
||||||
"Delete permanently" => "Entgültig löschen",
|
"Delete permanently" => "Entgültig löschen",
|
||||||
"Delete" => "Löschen",
|
"Delete" => "Löschen",
|
||||||
"Rename" => "Umbenennen",
|
"Rename" => "Umbenennen",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος",
|
"Not enough storage available" => "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος",
|
||||||
"Invalid directory." => "Μη έγκυρος φάκελος.",
|
"Invalid directory." => "Μη έγκυρος φάκελος.",
|
||||||
"Files" => "Αρχεία",
|
"Files" => "Αρχεία",
|
||||||
|
"Share" => "Διαμοιρασμός",
|
||||||
"Delete permanently" => "Μόνιμη διαγραφή",
|
"Delete permanently" => "Μόνιμη διαγραφή",
|
||||||
"Delete" => "Διαγραφή",
|
"Delete" => "Διαγραφή",
|
||||||
"Rename" => "Μετονομασία",
|
"Rename" => "Μετονομασία",
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
"Failed to write to disk" => "Malsukcesis skribo al disko",
|
"Failed to write to disk" => "Malsukcesis skribo al disko",
|
||||||
"Invalid directory." => "Nevalida dosierujo.",
|
"Invalid directory." => "Nevalida dosierujo.",
|
||||||
"Files" => "Dosieroj",
|
"Files" => "Dosieroj",
|
||||||
|
"Share" => "Kunhavigi",
|
||||||
"Delete" => "Forigi",
|
"Delete" => "Forigi",
|
||||||
"Rename" => "Alinomigi",
|
"Rename" => "Alinomigi",
|
||||||
"Pending" => "Traktotaj",
|
"Pending" => "Traktotaj",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "No hay suficiente espacio disponible",
|
"Not enough storage available" => "No hay suficiente espacio disponible",
|
||||||
"Invalid directory." => "Directorio invalido.",
|
"Invalid directory." => "Directorio invalido.",
|
||||||
"Files" => "Archivos",
|
"Files" => "Archivos",
|
||||||
|
"Share" => "Compartir",
|
||||||
"Delete permanently" => "Eliminar permanentemente",
|
"Delete permanently" => "Eliminar permanentemente",
|
||||||
"Delete" => "Eliminar",
|
"Delete" => "Eliminar",
|
||||||
"Rename" => "Renombrar",
|
"Rename" => "Renombrar",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "No hay suficiente capacidad de almacenamiento",
|
"Not enough storage available" => "No hay suficiente capacidad de almacenamiento",
|
||||||
"Invalid directory." => "Directorio invalido.",
|
"Invalid directory." => "Directorio invalido.",
|
||||||
"Files" => "Archivos",
|
"Files" => "Archivos",
|
||||||
|
"Share" => "Compartir",
|
||||||
"Delete permanently" => "Borrar de manera permanente",
|
"Delete permanently" => "Borrar de manera permanente",
|
||||||
"Delete" => "Borrar",
|
"Delete" => "Borrar",
|
||||||
"Rename" => "Cambiar nombre",
|
"Rename" => "Cambiar nombre",
|
||||||
|
@ -25,6 +26,7 @@
|
||||||
"undo" => "deshacer",
|
"undo" => "deshacer",
|
||||||
"perform delete operation" => "Eliminar",
|
"perform delete operation" => "Eliminar",
|
||||||
"1 file uploading" => "Subiendo 1 archivo",
|
"1 file uploading" => "Subiendo 1 archivo",
|
||||||
|
"files uploading" => "Subiendo archivos",
|
||||||
"'.' is an invalid file name." => "'.' es un nombre de archivo inválido.",
|
"'.' is an invalid file name." => "'.' es un nombre de archivo inválido.",
|
||||||
"File name cannot be empty." => "El nombre del archivo no puede quedar vacío.",
|
"File name cannot be empty." => "El nombre del archivo no puede quedar vacío.",
|
||||||
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos.",
|
"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos.",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Saadaval pole piisavalt ruumi",
|
"Not enough storage available" => "Saadaval pole piisavalt ruumi",
|
||||||
"Invalid directory." => "Vigane kaust.",
|
"Invalid directory." => "Vigane kaust.",
|
||||||
"Files" => "Failid",
|
"Files" => "Failid",
|
||||||
|
"Share" => "Jaga",
|
||||||
"Delete permanently" => "Kustuta jäädavalt",
|
"Delete permanently" => "Kustuta jäädavalt",
|
||||||
"Delete" => "Kustuta",
|
"Delete" => "Kustuta",
|
||||||
"Rename" => "ümber",
|
"Rename" => "ümber",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Ez dago behar aina leku erabilgarri,",
|
"Not enough storage available" => "Ez dago behar aina leku erabilgarri,",
|
||||||
"Invalid directory." => "Baliogabeko karpeta.",
|
"Invalid directory." => "Baliogabeko karpeta.",
|
||||||
"Files" => "Fitxategiak",
|
"Files" => "Fitxategiak",
|
||||||
|
"Share" => "Elkarbanatu",
|
||||||
"Delete permanently" => "Ezabatu betirako",
|
"Delete permanently" => "Ezabatu betirako",
|
||||||
"Delete" => "Ezabatu",
|
"Delete" => "Ezabatu",
|
||||||
"Rename" => "Berrizendatu",
|
"Rename" => "Berrizendatu",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "فضای کافی در دسترس نیست",
|
"Not enough storage available" => "فضای کافی در دسترس نیست",
|
||||||
"Invalid directory." => "فهرست راهنما نامعتبر می باشد.",
|
"Invalid directory." => "فهرست راهنما نامعتبر می باشد.",
|
||||||
"Files" => "فایل ها",
|
"Files" => "فایل ها",
|
||||||
|
"Share" => "اشتراکگذاری",
|
||||||
"Delete permanently" => "حذف قطعی",
|
"Delete permanently" => "حذف قطعی",
|
||||||
"Delete" => "پاک کردن",
|
"Delete" => "پاک کردن",
|
||||||
"Rename" => "تغییرنام",
|
"Rename" => "تغییرنام",
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
"Unable to rename file" => "Tiedoston nimeäminen uudelleen ei onnistunut",
|
"Unable to rename file" => "Tiedoston nimeäminen uudelleen ei onnistunut",
|
||||||
"No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe",
|
"No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe",
|
||||||
"There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti",
|
"There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti",
|
||||||
|
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Lähetetyn tiedoston koko ylittää php.ini-tiedoston upload_max_filesize-säännön:",
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan",
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lähetetty tiedosto ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-arvon ylärajan",
|
||||||
"The uploaded file was only partially uploaded" => "Tiedoston lähetys onnistui vain osittain",
|
"The uploaded file was only partially uploaded" => "Tiedoston lähetys onnistui vain osittain",
|
||||||
"No file was uploaded" => "Yhtäkään tiedostoa ei lähetetty",
|
"No file was uploaded" => "Yhtäkään tiedostoa ei lähetetty",
|
||||||
|
@ -12,6 +13,7 @@
|
||||||
"Not enough storage available" => "Tallennustilaa ei ole riittävästi käytettävissä",
|
"Not enough storage available" => "Tallennustilaa ei ole riittävästi käytettävissä",
|
||||||
"Invalid directory." => "Virheellinen kansio.",
|
"Invalid directory." => "Virheellinen kansio.",
|
||||||
"Files" => "Tiedostot",
|
"Files" => "Tiedostot",
|
||||||
|
"Share" => "Jaa",
|
||||||
"Delete permanently" => "Poista pysyvästi",
|
"Delete permanently" => "Poista pysyvästi",
|
||||||
"Delete" => "Poista",
|
"Delete" => "Poista",
|
||||||
"Rename" => "Nimeä uudelleen",
|
"Rename" => "Nimeä uudelleen",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Plus assez d'espace de stockage disponible",
|
"Not enough storage available" => "Plus assez d'espace de stockage disponible",
|
||||||
"Invalid directory." => "Dossier invalide.",
|
"Invalid directory." => "Dossier invalide.",
|
||||||
"Files" => "Fichiers",
|
"Files" => "Fichiers",
|
||||||
|
"Share" => "Partager",
|
||||||
"Delete permanently" => "Supprimer de façon définitive",
|
"Delete permanently" => "Supprimer de façon définitive",
|
||||||
"Delete" => "Supprimer",
|
"Delete" => "Supprimer",
|
||||||
"Rename" => "Renommer",
|
"Rename" => "Renommer",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Non hai espazo de almacenamento abondo",
|
"Not enough storage available" => "Non hai espazo de almacenamento abondo",
|
||||||
"Invalid directory." => "O directorio é incorrecto.",
|
"Invalid directory." => "O directorio é incorrecto.",
|
||||||
"Files" => "Ficheiros",
|
"Files" => "Ficheiros",
|
||||||
|
"Share" => "Compartir",
|
||||||
"Delete permanently" => "Eliminar permanentemente",
|
"Delete permanently" => "Eliminar permanentemente",
|
||||||
"Delete" => "Eliminar",
|
"Delete" => "Eliminar",
|
||||||
"Rename" => "Renomear",
|
"Rename" => "Renomear",
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
"Missing a temporary folder" => "תיקייה זמנית חסרה",
|
"Missing a temporary folder" => "תיקייה זמנית חסרה",
|
||||||
"Failed to write to disk" => "הכתיבה לכונן נכשלה",
|
"Failed to write to disk" => "הכתיבה לכונן נכשלה",
|
||||||
"Files" => "קבצים",
|
"Files" => "קבצים",
|
||||||
|
"Share" => "שתף",
|
||||||
"Delete permanently" => "מחק לצמיתות",
|
"Delete permanently" => "מחק לצמיתות",
|
||||||
"Delete" => "מחיקה",
|
"Delete" => "מחיקה",
|
||||||
"Rename" => "שינוי שם",
|
"Rename" => "שינוי שם",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Missing a temporary folder" => "Nedostaje privremena mapa",
|
"Missing a temporary folder" => "Nedostaje privremena mapa",
|
||||||
"Failed to write to disk" => "Neuspjelo pisanje na disk",
|
"Failed to write to disk" => "Neuspjelo pisanje na disk",
|
||||||
"Files" => "Datoteke",
|
"Files" => "Datoteke",
|
||||||
|
"Share" => "Podijeli",
|
||||||
"Delete" => "Briši",
|
"Delete" => "Briši",
|
||||||
"Rename" => "Promjeni ime",
|
"Rename" => "Promjeni ime",
|
||||||
"Pending" => "U tijeku",
|
"Pending" => "U tijeku",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Nincs elég szabad hely.",
|
"Not enough storage available" => "Nincs elég szabad hely.",
|
||||||
"Invalid directory." => "Érvénytelen mappa.",
|
"Invalid directory." => "Érvénytelen mappa.",
|
||||||
"Files" => "Fájlok",
|
"Files" => "Fájlok",
|
||||||
|
"Share" => "Megosztás",
|
||||||
"Delete permanently" => "Végleges törlés",
|
"Delete permanently" => "Végleges törlés",
|
||||||
"Delete" => "Törlés",
|
"Delete" => "Törlés",
|
||||||
"Rename" => "Átnevezés",
|
"Rename" => "Átnevezés",
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
"No file was uploaded" => "Nulle file esseva incargate",
|
"No file was uploaded" => "Nulle file esseva incargate",
|
||||||
"Missing a temporary folder" => "Manca un dossier temporari",
|
"Missing a temporary folder" => "Manca un dossier temporari",
|
||||||
"Files" => "Files",
|
"Files" => "Files",
|
||||||
|
"Share" => "Compartir",
|
||||||
"Delete" => "Deler",
|
"Delete" => "Deler",
|
||||||
"Name" => "Nomine",
|
"Name" => "Nomine",
|
||||||
"Size" => "Dimension",
|
"Size" => "Dimension",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Ruang penyimpanan tidak mencukupi",
|
"Not enough storage available" => "Ruang penyimpanan tidak mencukupi",
|
||||||
"Invalid directory." => "Direktori tidak valid.",
|
"Invalid directory." => "Direktori tidak valid.",
|
||||||
"Files" => "Berkas",
|
"Files" => "Berkas",
|
||||||
|
"Share" => "Bagikan",
|
||||||
"Delete permanently" => "Hapus secara permanen",
|
"Delete permanently" => "Hapus secara permanen",
|
||||||
"Delete" => "Hapus",
|
"Delete" => "Hapus",
|
||||||
"Rename" => "Ubah nama",
|
"Rename" => "Ubah nama",
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
"Failed to write to disk" => "Tókst ekki að skrifa á disk",
|
"Failed to write to disk" => "Tókst ekki að skrifa á disk",
|
||||||
"Invalid directory." => "Ógild mappa.",
|
"Invalid directory." => "Ógild mappa.",
|
||||||
"Files" => "Skrár",
|
"Files" => "Skrár",
|
||||||
|
"Share" => "Deila",
|
||||||
"Delete" => "Eyða",
|
"Delete" => "Eyða",
|
||||||
"Rename" => "Endurskýra",
|
"Rename" => "Endurskýra",
|
||||||
"Pending" => "Bíður",
|
"Pending" => "Bíður",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Spazio di archiviazione insufficiente",
|
"Not enough storage available" => "Spazio di archiviazione insufficiente",
|
||||||
"Invalid directory." => "Cartella non valida.",
|
"Invalid directory." => "Cartella non valida.",
|
||||||
"Files" => "File",
|
"Files" => "File",
|
||||||
|
"Share" => "Condividi",
|
||||||
"Delete permanently" => "Elimina definitivamente",
|
"Delete permanently" => "Elimina definitivamente",
|
||||||
"Delete" => "Elimina",
|
"Delete" => "Elimina",
|
||||||
"Rename" => "Rinomina",
|
"Rename" => "Rinomina",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "ストレージに十分な空き容量がありません",
|
"Not enough storage available" => "ストレージに十分な空き容量がありません",
|
||||||
"Invalid directory." => "無効なディレクトリです。",
|
"Invalid directory." => "無効なディレクトリです。",
|
||||||
"Files" => "ファイル",
|
"Files" => "ファイル",
|
||||||
|
"Share" => "共有",
|
||||||
"Delete permanently" => "完全に削除する",
|
"Delete permanently" => "完全に削除する",
|
||||||
"Delete" => "削除",
|
"Delete" => "削除",
|
||||||
"Rename" => "名前の変更",
|
"Rename" => "名前の変更",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "საცავში საკმარისი ადგილი არ არის",
|
"Not enough storage available" => "საცავში საკმარისი ადგილი არ არის",
|
||||||
"Invalid directory." => "დაუშვებელი დირექტორია.",
|
"Invalid directory." => "დაუშვებელი დირექტორია.",
|
||||||
"Files" => "ფაილები",
|
"Files" => "ფაილები",
|
||||||
|
"Share" => "გაზიარება",
|
||||||
"Delete permanently" => "სრულად წაშლა",
|
"Delete permanently" => "სრულად წაშლა",
|
||||||
"Delete" => "წაშლა",
|
"Delete" => "წაშლა",
|
||||||
"Rename" => "გადარქმევა",
|
"Rename" => "გადარქმევა",
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
"Failed to write to disk" => "디스크에 쓰지 못했습니다",
|
"Failed to write to disk" => "디스크에 쓰지 못했습니다",
|
||||||
"Invalid directory." => "올바르지 않은 디렉터리입니다.",
|
"Invalid directory." => "올바르지 않은 디렉터리입니다.",
|
||||||
"Files" => "파일",
|
"Files" => "파일",
|
||||||
|
"Share" => "공유",
|
||||||
"Delete" => "삭제",
|
"Delete" => "삭제",
|
||||||
"Rename" => "이름 바꾸기",
|
"Rename" => "이름 바꾸기",
|
||||||
"Pending" => "보류 중",
|
"Pending" => "보류 중",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Missing a temporary folder" => "Et feelt en temporären Dossier",
|
"Missing a temporary folder" => "Et feelt en temporären Dossier",
|
||||||
"Failed to write to disk" => "Konnt net op den Disk schreiwen",
|
"Failed to write to disk" => "Konnt net op den Disk schreiwen",
|
||||||
"Files" => "Dateien",
|
"Files" => "Dateien",
|
||||||
|
"Share" => "Deelen",
|
||||||
"Delete" => "Läschen",
|
"Delete" => "Läschen",
|
||||||
"replace" => "ersetzen",
|
"replace" => "ersetzen",
|
||||||
"cancel" => "ofbriechen",
|
"cancel" => "ofbriechen",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Missing a temporary folder" => "Nėra laikinojo katalogo",
|
"Missing a temporary folder" => "Nėra laikinojo katalogo",
|
||||||
"Failed to write to disk" => "Nepavyko įrašyti į diską",
|
"Failed to write to disk" => "Nepavyko įrašyti į diską",
|
||||||
"Files" => "Failai",
|
"Files" => "Failai",
|
||||||
|
"Share" => "Dalintis",
|
||||||
"Delete" => "Ištrinti",
|
"Delete" => "Ištrinti",
|
||||||
"Rename" => "Pervadinti",
|
"Rename" => "Pervadinti",
|
||||||
"Pending" => "Laukiantis",
|
"Pending" => "Laukiantis",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Nav pietiekami daudz vietas",
|
"Not enough storage available" => "Nav pietiekami daudz vietas",
|
||||||
"Invalid directory." => "Nederīga direktorija.",
|
"Invalid directory." => "Nederīga direktorija.",
|
||||||
"Files" => "Datnes",
|
"Files" => "Datnes",
|
||||||
|
"Share" => "Dalīties",
|
||||||
"Delete permanently" => "Dzēst pavisam",
|
"Delete permanently" => "Dzēst pavisam",
|
||||||
"Delete" => "Dzēst",
|
"Delete" => "Dzēst",
|
||||||
"Rename" => "Pārsaukt",
|
"Rename" => "Pārsaukt",
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
"Missing a temporary folder" => "Не постои привремена папка",
|
"Missing a temporary folder" => "Не постои привремена папка",
|
||||||
"Failed to write to disk" => "Неуспеав да запишам на диск",
|
"Failed to write to disk" => "Неуспеав да запишам на диск",
|
||||||
"Files" => "Датотеки",
|
"Files" => "Датотеки",
|
||||||
|
"Share" => "Сподели",
|
||||||
"Delete" => "Избриши",
|
"Delete" => "Избриши",
|
||||||
"Rename" => "Преименувај",
|
"Rename" => "Преименувај",
|
||||||
"Pending" => "Чека",
|
"Pending" => "Чека",
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
"Missing a temporary folder" => "Folder sementara hilang",
|
"Missing a temporary folder" => "Folder sementara hilang",
|
||||||
"Failed to write to disk" => "Gagal untuk disimpan",
|
"Failed to write to disk" => "Gagal untuk disimpan",
|
||||||
"Files" => "fail",
|
"Files" => "fail",
|
||||||
|
"Share" => "Kongsi",
|
||||||
"Delete" => "Padam",
|
"Delete" => "Padam",
|
||||||
"Pending" => "Dalam proses",
|
"Pending" => "Dalam proses",
|
||||||
"replace" => "ganti",
|
"replace" => "ganti",
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
"Missing a temporary folder" => "Mangler en midlertidig mappe",
|
"Missing a temporary folder" => "Mangler en midlertidig mappe",
|
||||||
"Failed to write to disk" => "Klarte ikke å skrive til disk",
|
"Failed to write to disk" => "Klarte ikke å skrive til disk",
|
||||||
"Files" => "Filer",
|
"Files" => "Filer",
|
||||||
|
"Share" => "Del",
|
||||||
"Delete permanently" => "Slett permanent",
|
"Delete permanently" => "Slett permanent",
|
||||||
"Delete" => "Slett",
|
"Delete" => "Slett",
|
||||||
"Rename" => "Omdøp",
|
"Rename" => "Omdøp",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Niet genoeg opslagruimte beschikbaar",
|
"Not enough storage available" => "Niet genoeg opslagruimte beschikbaar",
|
||||||
"Invalid directory." => "Ongeldige directory.",
|
"Invalid directory." => "Ongeldige directory.",
|
||||||
"Files" => "Bestanden",
|
"Files" => "Bestanden",
|
||||||
|
"Share" => "Delen",
|
||||||
"Delete permanently" => "Verwijder definitief",
|
"Delete permanently" => "Verwijder definitief",
|
||||||
"Delete" => "Verwijder",
|
"Delete" => "Verwijder",
|
||||||
"Rename" => "Hernoem",
|
"Rename" => "Hernoem",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Missing a temporary folder" => "Un dorsièr temporari manca",
|
"Missing a temporary folder" => "Un dorsièr temporari manca",
|
||||||
"Failed to write to disk" => "L'escriptura sul disc a fracassat",
|
"Failed to write to disk" => "L'escriptura sul disc a fracassat",
|
||||||
"Files" => "Fichièrs",
|
"Files" => "Fichièrs",
|
||||||
|
"Share" => "Parteja",
|
||||||
"Delete" => "Escafa",
|
"Delete" => "Escafa",
|
||||||
"Rename" => "Torna nomenar",
|
"Rename" => "Torna nomenar",
|
||||||
"Pending" => "Al esperar",
|
"Pending" => "Al esperar",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Za mało dostępnego miejsca",
|
"Not enough storage available" => "Za mało dostępnego miejsca",
|
||||||
"Invalid directory." => "Zła ścieżka.",
|
"Invalid directory." => "Zła ścieżka.",
|
||||||
"Files" => "Pliki",
|
"Files" => "Pliki",
|
||||||
|
"Share" => "Udostępnij",
|
||||||
"Delete permanently" => "Trwale usuń",
|
"Delete permanently" => "Trwale usuń",
|
||||||
"Delete" => "Usuń",
|
"Delete" => "Usuń",
|
||||||
"Rename" => "Zmień nazwę",
|
"Rename" => "Zmień nazwę",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Espaço de armazenamento insuficiente",
|
"Not enough storage available" => "Espaço de armazenamento insuficiente",
|
||||||
"Invalid directory." => "Diretório inválido.",
|
"Invalid directory." => "Diretório inválido.",
|
||||||
"Files" => "Arquivos",
|
"Files" => "Arquivos",
|
||||||
|
"Share" => "Compartilhar",
|
||||||
"Delete permanently" => "Excluir permanentemente",
|
"Delete permanently" => "Excluir permanentemente",
|
||||||
"Delete" => "Excluir",
|
"Delete" => "Excluir",
|
||||||
"Rename" => "Renomear",
|
"Rename" => "Renomear",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Não há espaço suficiente em disco",
|
"Not enough storage available" => "Não há espaço suficiente em disco",
|
||||||
"Invalid directory." => "Directório Inválido",
|
"Invalid directory." => "Directório Inválido",
|
||||||
"Files" => "Ficheiros",
|
"Files" => "Ficheiros",
|
||||||
|
"Share" => "Partilhar",
|
||||||
"Delete permanently" => "Eliminar permanentemente",
|
"Delete permanently" => "Eliminar permanentemente",
|
||||||
"Delete" => "Apagar",
|
"Delete" => "Apagar",
|
||||||
"Rename" => "Renomear",
|
"Rename" => "Renomear",
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
"Failed to write to disk" => "Eroare la scriere pe disc",
|
"Failed to write to disk" => "Eroare la scriere pe disc",
|
||||||
"Invalid directory." => "Director invalid.",
|
"Invalid directory." => "Director invalid.",
|
||||||
"Files" => "Fișiere",
|
"Files" => "Fișiere",
|
||||||
|
"Share" => "Partajează",
|
||||||
"Delete" => "Șterge",
|
"Delete" => "Șterge",
|
||||||
"Rename" => "Redenumire",
|
"Rename" => "Redenumire",
|
||||||
"Pending" => "În așteptare",
|
"Pending" => "În așteptare",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Недостаточно доступного места в хранилище",
|
"Not enough storage available" => "Недостаточно доступного места в хранилище",
|
||||||
"Invalid directory." => "Неправильный каталог.",
|
"Invalid directory." => "Неправильный каталог.",
|
||||||
"Files" => "Файлы",
|
"Files" => "Файлы",
|
||||||
|
"Share" => "Открыть доступ",
|
||||||
"Delete permanently" => "Удалено навсегда",
|
"Delete permanently" => "Удалено навсегда",
|
||||||
"Delete" => "Удалить",
|
"Delete" => "Удалить",
|
||||||
"Rename" => "Переименовать",
|
"Rename" => "Переименовать",
|
||||||
|
@ -25,6 +26,7 @@
|
||||||
"undo" => "отмена",
|
"undo" => "отмена",
|
||||||
"perform delete operation" => "выполняется операция удаления",
|
"perform delete operation" => "выполняется операция удаления",
|
||||||
"1 file uploading" => "загружается 1 файл",
|
"1 file uploading" => "загружается 1 файл",
|
||||||
|
"files uploading" => "файлы загружаются",
|
||||||
"'.' 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." => "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы.",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Недостаточно места в хранилище",
|
"Not enough storage available" => "Недостаточно места в хранилище",
|
||||||
"Invalid directory." => "Неверный каталог.",
|
"Invalid directory." => "Неверный каталог.",
|
||||||
"Files" => "Файлы",
|
"Files" => "Файлы",
|
||||||
|
"Share" => "Сделать общим",
|
||||||
"Delete permanently" => "Удалить навсегда",
|
"Delete permanently" => "Удалить навсегда",
|
||||||
"Delete" => "Удалить",
|
"Delete" => "Удалить",
|
||||||
"Rename" => "Переименовать",
|
"Rename" => "Переименовать",
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
"Missing a temporary folder" => "තාවකාලික ෆොල්ඩරයක් සොයාගත නොහැක",
|
"Missing a temporary folder" => "තාවකාලික ෆොල්ඩරයක් සොයාගත නොහැක",
|
||||||
"Failed to write to disk" => "තැටිගත කිරීම අසාර්ථකයි",
|
"Failed to write to disk" => "තැටිගත කිරීම අසාර්ථකයි",
|
||||||
"Files" => "ගොනු",
|
"Files" => "ගොනු",
|
||||||
|
"Share" => "බෙදා හදා ගන්න",
|
||||||
"Delete" => "මකන්න",
|
"Delete" => "මකන්න",
|
||||||
"Rename" => "නැවත නම් කරන්න",
|
"Rename" => "නැවත නම් කරන්න",
|
||||||
"replace" => "ප්රතිස්ථාපනය කරන්න",
|
"replace" => "ප්රතිස්ථාපනය කරන්න",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Nedostatok dostupného úložného priestoru",
|
"Not enough storage available" => "Nedostatok dostupného úložného priestoru",
|
||||||
"Invalid directory." => "Neplatný priečinok",
|
"Invalid directory." => "Neplatný priečinok",
|
||||||
"Files" => "Súbory",
|
"Files" => "Súbory",
|
||||||
|
"Share" => "Zdieľať",
|
||||||
"Delete permanently" => "Zmazať trvalo",
|
"Delete permanently" => "Zmazať trvalo",
|
||||||
"Delete" => "Odstrániť",
|
"Delete" => "Odstrániť",
|
||||||
"Rename" => "Premenovať",
|
"Rename" => "Premenovať",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Na voljo ni dovolj prostora",
|
"Not enough storage available" => "Na voljo ni dovolj prostora",
|
||||||
"Invalid directory." => "Neveljavna mapa.",
|
"Invalid directory." => "Neveljavna mapa.",
|
||||||
"Files" => "Datoteke",
|
"Files" => "Datoteke",
|
||||||
|
"Share" => "Souporaba",
|
||||||
"Delete permanently" => "Izbriši trajno",
|
"Delete permanently" => "Izbriši trajno",
|
||||||
"Delete" => "Izbriši",
|
"Delete" => "Izbriši",
|
||||||
"Rename" => "Preimenuj",
|
"Rename" => "Preimenuj",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Nuk ka mbetur hapësirë memorizimi e mjaftueshme",
|
"Not enough storage available" => "Nuk ka mbetur hapësirë memorizimi e mjaftueshme",
|
||||||
"Invalid directory." => "Dosje e pavlefshme.",
|
"Invalid directory." => "Dosje e pavlefshme.",
|
||||||
"Files" => "Skedarët",
|
"Files" => "Skedarët",
|
||||||
|
"Share" => "Nda",
|
||||||
"Delete permanently" => "Elimino përfundimisht",
|
"Delete permanently" => "Elimino përfundimisht",
|
||||||
"Delete" => "Elimino",
|
"Delete" => "Elimino",
|
||||||
"Rename" => "Riemërto",
|
"Rename" => "Riemërto",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Нема довољно простора",
|
"Not enough storage available" => "Нема довољно простора",
|
||||||
"Invalid directory." => "неисправна фасцикла.",
|
"Invalid directory." => "неисправна фасцикла.",
|
||||||
"Files" => "Датотеке",
|
"Files" => "Датотеке",
|
||||||
|
"Share" => "Дели",
|
||||||
"Delete permanently" => "Обриши за стално",
|
"Delete permanently" => "Обриши за стално",
|
||||||
"Delete" => "Обриши",
|
"Delete" => "Обриши",
|
||||||
"Rename" => "Преименуј",
|
"Rename" => "Преименуј",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Inte tillräckligt med lagringsutrymme tillgängligt",
|
"Not enough storage available" => "Inte tillräckligt med lagringsutrymme tillgängligt",
|
||||||
"Invalid directory." => "Felaktig mapp.",
|
"Invalid directory." => "Felaktig mapp.",
|
||||||
"Files" => "Filer",
|
"Files" => "Filer",
|
||||||
|
"Share" => "Dela",
|
||||||
"Delete permanently" => "Radera permanent",
|
"Delete permanently" => "Radera permanent",
|
||||||
"Delete" => "Radera",
|
"Delete" => "Radera",
|
||||||
"Rename" => "Byt namn",
|
"Rename" => "Byt namn",
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
"Missing a temporary folder" => "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை",
|
"Missing a temporary folder" => "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை",
|
||||||
"Failed to write to disk" => "வட்டில் எழுத முடியவில்லை",
|
"Failed to write to disk" => "வட்டில் எழுத முடியவில்லை",
|
||||||
"Files" => "கோப்புகள்",
|
"Files" => "கோப்புகள்",
|
||||||
|
"Share" => "பகிர்வு",
|
||||||
"Delete" => "அழிக்க",
|
"Delete" => "அழிக்க",
|
||||||
"Rename" => "பெயர்மாற்றம்",
|
"Rename" => "பெயர்மாற்றம்",
|
||||||
"Pending" => "நிலுவையிலுள்ள",
|
"Pending" => "நிலுவையிலுள்ள",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน",
|
"Not enough storage available" => "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน",
|
||||||
"Invalid directory." => "ไดเร็กทอรี่ไม่ถูกต้อง",
|
"Invalid directory." => "ไดเร็กทอรี่ไม่ถูกต้อง",
|
||||||
"Files" => "ไฟล์",
|
"Files" => "ไฟล์",
|
||||||
|
"Share" => "แชร์",
|
||||||
"Delete" => "ลบ",
|
"Delete" => "ลบ",
|
||||||
"Rename" => "เปลี่ยนชื่อ",
|
"Rename" => "เปลี่ยนชื่อ",
|
||||||
"Pending" => "อยู่ระหว่างดำเนินการ",
|
"Pending" => "อยู่ระหว่างดำเนินการ",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Yeterli disk alanı yok",
|
"Not enough storage available" => "Yeterli disk alanı yok",
|
||||||
"Invalid directory." => "Geçersiz dizin.",
|
"Invalid directory." => "Geçersiz dizin.",
|
||||||
"Files" => "Dosyalar",
|
"Files" => "Dosyalar",
|
||||||
|
"Share" => "Paylaş",
|
||||||
"Delete permanently" => "Kalıcı olarak sil",
|
"Delete permanently" => "Kalıcı olarak sil",
|
||||||
"Delete" => "Sil",
|
"Delete" => "Sil",
|
||||||
"Rename" => "İsim değiştir.",
|
"Rename" => "İsim değiştir.",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Місця більше немає",
|
"Not enough storage available" => "Місця більше немає",
|
||||||
"Invalid directory." => "Невірний каталог.",
|
"Invalid directory." => "Невірний каталог.",
|
||||||
"Files" => "Файли",
|
"Files" => "Файли",
|
||||||
|
"Share" => "Поділитися",
|
||||||
"Delete permanently" => "Видалити назавжди",
|
"Delete permanently" => "Видалити назавжди",
|
||||||
"Delete" => "Видалити",
|
"Delete" => "Видалити",
|
||||||
"Rename" => "Перейменувати",
|
"Rename" => "Перейменувати",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "Không đủ không gian lưu trữ",
|
"Not enough storage available" => "Không đủ không gian lưu trữ",
|
||||||
"Invalid directory." => "Thư mục không hợp lệ",
|
"Invalid directory." => "Thư mục không hợp lệ",
|
||||||
"Files" => "Tập tin",
|
"Files" => "Tập tin",
|
||||||
|
"Share" => "Chia sẻ",
|
||||||
"Delete permanently" => "Xóa vĩnh vễn",
|
"Delete permanently" => "Xóa vĩnh vễn",
|
||||||
"Delete" => "Xóa",
|
"Delete" => "Xóa",
|
||||||
"Rename" => "Sửa tên",
|
"Rename" => "Sửa tên",
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
"Missing a temporary folder" => "丢失了一个临时文件夹",
|
"Missing a temporary folder" => "丢失了一个临时文件夹",
|
||||||
"Failed to write to disk" => "写磁盘失败",
|
"Failed to write to disk" => "写磁盘失败",
|
||||||
"Files" => "文件",
|
"Files" => "文件",
|
||||||
|
"Share" => "分享",
|
||||||
"Delete" => "删除",
|
"Delete" => "删除",
|
||||||
"Rename" => "重命名",
|
"Rename" => "重命名",
|
||||||
"Pending" => "Pending",
|
"Pending" => "Pending",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "没有足够的存储空间",
|
"Not enough storage available" => "没有足够的存储空间",
|
||||||
"Invalid directory." => "无效文件夹。",
|
"Invalid directory." => "无效文件夹。",
|
||||||
"Files" => "文件",
|
"Files" => "文件",
|
||||||
|
"Share" => "分享",
|
||||||
"Delete permanently" => "永久删除",
|
"Delete permanently" => "永久删除",
|
||||||
"Delete" => "删除",
|
"Delete" => "删除",
|
||||||
"Rename" => "重命名",
|
"Rename" => "重命名",
|
||||||
|
@ -25,6 +26,7 @@
|
||||||
"undo" => "撤销",
|
"undo" => "撤销",
|
||||||
"perform delete operation" => "进行删除操作",
|
"perform delete operation" => "进行删除操作",
|
||||||
"1 file uploading" => "1个文件上传中",
|
"1 file uploading" => "1个文件上传中",
|
||||||
|
"files uploading" => "文件上传中",
|
||||||
"'.' 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." => "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。",
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<?php $TRANSLATIONS = array(
|
<?php $TRANSLATIONS = array(
|
||||||
"Files" => "文件",
|
"Files" => "文件",
|
||||||
|
"Share" => "分享",
|
||||||
"Delete" => "刪除",
|
"Delete" => "刪除",
|
||||||
"Error" => "錯誤",
|
"Error" => "錯誤",
|
||||||
"Name" => "名稱",
|
"Name" => "名稱",
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
"Not enough storage available" => "儲存空間不足",
|
"Not enough storage available" => "儲存空間不足",
|
||||||
"Invalid directory." => "無效的資料夾。",
|
"Invalid directory." => "無效的資料夾。",
|
||||||
"Files" => "檔案",
|
"Files" => "檔案",
|
||||||
|
"Share" => "分享",
|
||||||
"Delete permanently" => "永久刪除",
|
"Delete permanently" => "永久刪除",
|
||||||
"Delete" => "刪除",
|
"Delete" => "刪除",
|
||||||
"Rename" => "重新命名",
|
"Rename" => "重新命名",
|
||||||
|
@ -34,7 +35,7 @@
|
||||||
"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",
|
||||||
"Not enough space available" => "沒有足夠的可用空間",
|
"Not enough space available" => "沒有足夠的可用空間",
|
||||||
"Upload cancelled." => "上傳取消",
|
"Upload cancelled." => "上傳已取消",
|
||||||
"File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中。離開此頁面將會取消上傳。",
|
"File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中。離開此頁面將會取消上傳。",
|
||||||
"URL cannot be empty." => "URL 不能為空白。",
|
"URL cannot be empty." => "URL 不能為空白。",
|
||||||
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留",
|
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留",
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
"Access granted" => "Достъпът е даден",
|
"Access granted" => "Достъпът е даден",
|
||||||
"Grant access" => "Даване на достъп",
|
"Grant access" => "Даване на достъп",
|
||||||
"External Storage" => "Външно хранилище",
|
"External Storage" => "Външно хранилище",
|
||||||
|
"Folder name" => "Име на папката",
|
||||||
"Configuration" => "Конфигурация",
|
"Configuration" => "Конфигурация",
|
||||||
"Options" => "Опции",
|
"Options" => "Опции",
|
||||||
"Applicable" => "Приложимо",
|
"Applicable" => "Приложимо",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Error configuring Google Drive storage" => "Chyba při nastavení úložiště Google Drive",
|
"Error configuring Google Drive storage" => "Chyba při nastavení úložiště Google Drive",
|
||||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Varování:</b> není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje.",
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Varování:</b> není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje.",
|
||||||
"<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>Varování:</b> není nainstalována, nebo povolena, podpora FTP v PHP. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje.",
|
"<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>Varování:</b> není nainstalována, nebo povolena, podpora FTP v PHP. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje.",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Varování:</b> není nainstalována, nebo povolena, podpora Curl v PHP. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje.",
|
||||||
"External Storage" => "Externí úložiště",
|
"External Storage" => "Externí úložiště",
|
||||||
"Folder name" => "Název složky",
|
"Folder name" => "Název složky",
|
||||||
"External storage" => "Externí úložiště",
|
"External storage" => "Externí úložiště",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Error configuring Google Drive storage" => "Fejl ved konfiguration af Google Drive plads",
|
"Error configuring Google Drive storage" => "Fejl ved konfiguration af Google Drive plads",
|
||||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b> Advarsel: </ b> \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det.",
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b> Advarsel: </ b> \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det.",
|
||||||
"<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> Advarsel: </ b> FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det.",
|
"<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> Advarsel: </ b> FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det.",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Advarsel:</b> Understøttelsen for Curl i PHP er enten ikke aktiveret eller ikke installeret. Det er ikke muligt, at montere ownCloud / WebDAV eller GoogleDrive. Spørg din system administrator om at installere det. ",
|
||||||
"External Storage" => "Ekstern opbevaring",
|
"External Storage" => "Ekstern opbevaring",
|
||||||
"Folder name" => "Mappenavn",
|
"Folder name" => "Mappenavn",
|
||||||
"External storage" => "Eksternt lager",
|
"External storage" => "Eksternt lager",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Error configuring Google Drive storage" => "Fehler beim Einrichten von Google Drive",
|
"Error configuring Google Drive storage" => "Fehler beim Einrichten von Google Drive",
|
||||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Warnung:</b> \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren.",
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Warnung:</b> \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren.",
|
||||||
"<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>Warnung::</b> Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator.",
|
"<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>Warnung::</b> Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator.",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Achtung:</b> Die Curl Unterstützung von PHP ist nicht aktiviert oder installiert. Das Laden von ownCloud / WebDAV oder GoogleDrive Freigaben ist nicht möglich. Bitte Sie Ihren Systemadministrator, das Modul zu installieren.",
|
||||||
"External Storage" => "Externer Speicher",
|
"External Storage" => "Externer Speicher",
|
||||||
"Folder name" => "Ordnername",
|
"Folder name" => "Ordnername",
|
||||||
"External storage" => "Externer Speicher",
|
"External storage" => "Externer Speicher",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Error configuring Google Drive storage" => "Error configurando el almacenamiento de Google Drive",
|
"Error configuring Google Drive storage" => "Error configurando el almacenamiento de Google Drive",
|
||||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Advertencia:</b> El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale.",
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Advertencia:</b> El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale.",
|
||||||
"<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>Advertencia:</b> El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale.",
|
"<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>Advertencia:</b> El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale.",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Advertencia:</b> El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale.",
|
||||||
"External Storage" => "Almacenamiento externo",
|
"External Storage" => "Almacenamiento externo",
|
||||||
"Folder name" => "Nombre de la carpeta",
|
"Folder name" => "Nombre de la carpeta",
|
||||||
"External storage" => "Almacenamiento externo",
|
"External storage" => "Almacenamiento externo",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Error configuring Google Drive storage" => "Viga Google Drive'i salvestusruumi seadistamisel",
|
"Error configuring Google Drive storage" => "Viga Google Drive'i salvestusruumi seadistamisel",
|
||||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Hoiatus:</b> \"smbclient\" pole paigaldatud. Jagatud CIFS/SMB hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata SAMBA tugi.",
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Hoiatus:</b> \"smbclient\" pole paigaldatud. Jagatud CIFS/SMB hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata SAMBA tugi.",
|
||||||
"<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>Hoiatus:</b> FTP tugi puudub PHP paigalduses. Jagatud FTP hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi.",
|
"<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>Hoiatus:</b> FTP tugi puudub PHP paigalduses. Jagatud FTP hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi.",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Hoiatus:</b> Curl tugi puudub PHP paigalduses. Jagatud ownCloud / WebDAV või GoogleDrive ühendamine pole võimalik. Palu oma süsteemihalduril see paigaldada.",
|
||||||
"External Storage" => "Väline salvestuskoht",
|
"External Storage" => "Väline salvestuskoht",
|
||||||
"Folder name" => "Kausta nimi",
|
"Folder name" => "Kausta nimi",
|
||||||
"External storage" => "Väline andmehoidla",
|
"External storage" => "Väline andmehoidla",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"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> \"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.",
|
"<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.",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Varoitus:</b> PHP:n Curl-tuki ei ole käytössä tai sitä ei ole lainkaan asennettu. ownCloudin, WebDAV:in tai Google Driven liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan Curl-tuki käyttöön.",
|
||||||
"External Storage" => "Erillinen tallennusväline",
|
"External Storage" => "Erillinen tallennusväline",
|
||||||
"Folder name" => "Kansion nimi",
|
"Folder name" => "Kansion nimi",
|
||||||
"External storage" => "Ulkoinen tallennustila",
|
"External storage" => "Ulkoinen tallennustila",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Error configuring Google Drive storage" => "Erreur lors de la configuration du support de stockage Google Drive",
|
"Error configuring Google Drive storage" => "Erreur lors de la configuration du support de stockage Google Drive",
|
||||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Attention : </b> \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer.",
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Attention : </b> \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer.",
|
||||||
"<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>Attention : </b> Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer.",
|
"<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>Attention : </b> Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer.",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Attention :</b> Le support de Curl n'est pas activé ou installé dans PHP. Le montage de ownCloud / WebDAV ou GoogleDrive n'est pas possible. Contactez votre administrateur système pour l'installer.",
|
||||||
"External Storage" => "Stockage externe",
|
"External Storage" => "Stockage externe",
|
||||||
"Folder name" => "Nom du dossier",
|
"Folder name" => "Nom du dossier",
|
||||||
"External storage" => "Stockage externe",
|
"External storage" => "Stockage externe",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Error configuring Google Drive storage" => "Produciuse un erro ao configurar o almacenamento en Google Drive",
|
"Error configuring Google Drive storage" => "Produciuse un erro ao configurar o almacenamento en Google Drive",
|
||||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Aviso:</b> «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo.",
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Aviso:</b> «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo.",
|
||||||
"<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>Aviso:</b> A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo.",
|
"<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>Aviso:</b> A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo.",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Aviso:</ b> A compatibilidade de Curl en PHP non está activada ou instalada. Non é posíbel a montaxe de ownCloud / WebDAV ou GoogleDrive. Consulte co administrador do sistema para instalala.",
|
||||||
"External Storage" => "Almacenamento externo",
|
"External Storage" => "Almacenamento externo",
|
||||||
"Folder name" => "Nome do cartafol",
|
"Folder name" => "Nome do cartafol",
|
||||||
"External storage" => "Almacenamento externo",
|
"External storage" => "Almacenamento externo",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Error configuring Google Drive storage" => "Errore durante la configurazione dell'archivio Google Drive",
|
"Error configuring Google Drive storage" => "Errore durante la configurazione dell'archivio Google Drive",
|
||||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Avviso:</b> \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo.",
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Avviso:</b> \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo.",
|
||||||
"<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>Avviso:</b> il supporto FTP di PHP non è abilitato o non è installato. Impossibile montare condivisioni FTP. Chiedi all'amministratore di sistema di installarlo.",
|
"<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>Avviso:</b> il supporto FTP di PHP non è abilitato o non è installato. Impossibile montare condivisioni FTP. Chiedi all'amministratore di sistema di installarlo.",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Avviso:</b> il supporto Curl di PHP non è abilitato o non è installato. Impossibile montare condivisioni ownCloud / WebDAV o GoogleDrive. Chiedi all'amministratore di sistema di installarlo.",
|
||||||
"External Storage" => "Archiviazione esterna",
|
"External Storage" => "Archiviazione esterna",
|
||||||
"Folder name" => "Nome della cartella",
|
"Folder name" => "Nome della cartella",
|
||||||
"External storage" => "Archiviazione esterna",
|
"External storage" => "Archiviazione esterna",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Error configuring Google Drive storage" => "Googleドライブストレージの設定エラー",
|
"Error configuring Google Drive storage" => "Googleドライブストレージの設定エラー",
|
||||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>警告:</b> \"smbclient\" はインストールされていません。CIFS/SMB 共有のマウントはできません。システム管理者にインストールをお願いして下さい。",
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>警告:</b> \"smbclient\" はインストールされていません。CIFS/SMB 共有のマウントはできません。システム管理者にインストールをお願いして下さい。",
|
||||||
"<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>警告:</b> PHPのFTPサポートは無効もしくはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールをお願いして下さい。",
|
"<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>警告:</b> PHPのFTPサポートは無効もしくはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールをお願いして下さい。",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>警告:</b> PHP の Curl サポートは無効もしくはインストールされていません。ownCloud / WebDAV もしくは GoogleDrive のマウントはできません。システム管理者にインストールをお願いして下さい。",
|
||||||
"External Storage" => "外部ストレージ",
|
"External Storage" => "外部ストレージ",
|
||||||
"Folder name" => "フォルダ名",
|
"Folder name" => "フォルダ名",
|
||||||
"External storage" => "外部ストレージ",
|
"External storage" => "外部ストレージ",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Error configuring Google Drive storage" => "შეცდომა Google Drive საცავის კონფიგურირების დროს",
|
"Error configuring Google Drive storage" => "შეცდომა Google Drive საცავის კონფიგურირების დროს",
|
||||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>გაფრთხილება:</b> \"smbclient\" არ არის ინსტალირებული. CIFS/SMB ზიარების მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის.",
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>გაფრთხილება:</b> \"smbclient\" არ არის ინსტალირებული. CIFS/SMB ზიარების მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის.",
|
||||||
"<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>გაფრთხილება:</b> FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის.",
|
"<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>გაფრთხილება:</b> FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის.",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>გაფრთხილება:</b>PHP–ის Curl მხარდაჭერა არ არის ჩართული ან ინსტალირებული. ownCloud / WebDAV ან GoogleDrive–ის მონტირება შეუძლებელია. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის.",
|
||||||
"External Storage" => "ექსტერნალ საცავი",
|
"External Storage" => "ექსტერნალ საცავი",
|
||||||
"Folder name" => "ფოლდერის სახელი",
|
"Folder name" => "ფოლდერის სახელი",
|
||||||
"External storage" => "ექსტერნალ საცავი",
|
"External storage" => "ექსტერნალ საცავი",
|
||||||
|
|
|
@ -6,11 +6,14 @@
|
||||||
"Error configuring Google Drive storage" => "Eroare la configurarea mediului de stocare Google Drive",
|
"Error configuring Google Drive storage" => "Eroare la configurarea mediului de stocare Google Drive",
|
||||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Atenție:</b> \"smbclient\" nu este instalat. Montarea mediilor CIFS/SMB partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleaze.",
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Atenție:</b> \"smbclient\" nu este instalat. Montarea mediilor CIFS/SMB partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleaze.",
|
||||||
"<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>Atenție:</b> suportul pentru FTP în PHP nu este activat sau instalat. Montarea mediilor FPT partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleze.",
|
"<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>Atenție:</b> suportul pentru FTP în PHP nu este activat sau instalat. Montarea mediilor FPT partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleze.",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Atentie:</b> Suportul Curl nu este pornit / instalat in configuratia PHP! Montarea ownCloud / WebDAV / GoogleDrive nu este posibila! Intrebati administratorul sistemului despre aceasta problema!",
|
||||||
"External Storage" => "Stocare externă",
|
"External Storage" => "Stocare externă",
|
||||||
"Folder name" => "Denumire director",
|
"Folder name" => "Denumire director",
|
||||||
|
"External storage" => "Stocare externă",
|
||||||
"Configuration" => "Configurație",
|
"Configuration" => "Configurație",
|
||||||
"Options" => "Opțiuni",
|
"Options" => "Opțiuni",
|
||||||
"Applicable" => "Aplicabil",
|
"Applicable" => "Aplicabil",
|
||||||
|
"Add storage" => "Adauga stocare",
|
||||||
"None set" => "Niciunul",
|
"None set" => "Niciunul",
|
||||||
"All Users" => "Toți utilizatorii",
|
"All Users" => "Toți utilizatorii",
|
||||||
"Groups" => "Grupuri",
|
"Groups" => "Grupuri",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Error configuring Google Drive storage" => "Ошибка при настройке хранилища Google Drive",
|
"Error configuring Google Drive storage" => "Ошибка при настройке хранилища Google Drive",
|
||||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Внимание:</b> \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его.",
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Внимание:</b> \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его.",
|
||||||
"<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>Внимание:</b> Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить.",
|
"<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>Внимание:</b> Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить.",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Внимание:</b> Поддержка Curl в PHP не включена или не установлена. Подключение ownCloud / WebDAV или GoogleDrive невозможно. Попросите вашего системного администратора установить его.",
|
||||||
"External Storage" => "Внешний носитель",
|
"External Storage" => "Внешний носитель",
|
||||||
"Folder name" => "Имя папки",
|
"Folder name" => "Имя папки",
|
||||||
"External storage" => "Внешний носитель данных",
|
"External storage" => "Внешний носитель данных",
|
||||||
|
|
|
@ -4,6 +4,9 @@
|
||||||
"Grant access" => "Erişim sağlandı",
|
"Grant access" => "Erişim sağlandı",
|
||||||
"Please provide a valid Dropbox app key and secret." => "Lütfen Dropbox app key ve secret temin ediniz",
|
"Please provide a valid Dropbox app key and secret." => "Lütfen Dropbox app key ve secret temin ediniz",
|
||||||
"Error configuring Google Drive storage" => "Google Drive depo yapılandırma hatası",
|
"Error configuring Google Drive storage" => "Google Drive depo yapılandırma hatası",
|
||||||
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Uyari.</b>''smbclient''yüklü değil. Mont etme CIFS/SMB hissenin mümkün değildir. Lutfen kullanici sistemin sormak onu yuklemek ici, ",
|
||||||
|
"<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." => "<Uyari.</b>. Sistem FTP PHPden aktif degil veya yuklemedi. Monte etme hissenin FTP mumkun degildir. Lutfen kullaniici sistemin sormak onu yuklemek icin.",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b> Ihbar </b>. Dayanma Curl PHPden aktif veya yuklemedi degil. Monte ownClouden/WebDay veya GoogleDrive mumkun degil. Lutfen sistm yonetici sormak yuklemek icin. ",
|
||||||
"External Storage" => "Harici Depolama",
|
"External Storage" => "Harici Depolama",
|
||||||
"Folder name" => "Dizin ismi",
|
"Folder name" => "Dizin ismi",
|
||||||
"External storage" => "Harici Depolama",
|
"External storage" => "Harici Depolama",
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"Error configuring Google Drive storage" => "配置Google Drive存储时出错",
|
"Error configuring Google Drive storage" => "配置Google Drive存储时出错",
|
||||||
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>警告:</b>“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。",
|
"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>警告:</b>“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。",
|
||||||
"<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>警告:</b>PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。",
|
"<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>警告:</b>PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。",
|
||||||
|
"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>警告:</b> PHP中未启用或未安装Curl支持。ownCloud / WebDAV 或 GoogleDrive 不能挂载。请请求您的系统管理员安装该它。",
|
||||||
"External Storage" => "外部存储",
|
"External Storage" => "外部存储",
|
||||||
"Folder name" => "目录名称",
|
"Folder name" => "目录名称",
|
||||||
"External storage" => "外部存储",
|
"External storage" => "外部存储",
|
||||||
|
|
|
@ -70,7 +70,7 @@ class OC_Mount_Config {
|
||||||
'root' => '&Root',
|
'root' => '&Root',
|
||||||
'secure' => '!Secure ftps://'));
|
'secure' => '!Secure ftps://'));
|
||||||
|
|
||||||
$backends['\OC\Files\Storage\Google']=array(
|
if(OC_Mount_Config::checkcurl()) $backends['\OC\Files\Storage\Google']=array(
|
||||||
'backend' => 'Google Drive',
|
'backend' => 'Google Drive',
|
||||||
'configuration' => array(
|
'configuration' => array(
|
||||||
'configured' => '#configured',
|
'configured' => '#configured',
|
||||||
|
@ -96,7 +96,7 @@ class OC_Mount_Config {
|
||||||
'share' => 'Share',
|
'share' => 'Share',
|
||||||
'root' => '&Root'));
|
'root' => '&Root'));
|
||||||
|
|
||||||
$backends['\OC\Files\Storage\DAV']=array(
|
if(OC_Mount_Config::checkcurl()) $backends['\OC\Files\Storage\DAV']=array(
|
||||||
'backend' => 'ownCloud / WebDAV',
|
'backend' => 'ownCloud / WebDAV',
|
||||||
'configuration' => array(
|
'configuration' => array(
|
||||||
'host' => 'URL',
|
'host' => 'URL',
|
||||||
|
@ -424,6 +424,13 @@ class OC_Mount_Config {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* check if curl is installed
|
||||||
|
*/
|
||||||
|
public static function checkcurl() {
|
||||||
|
return (function_exists('curl_init'));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* check dependencies
|
* check dependencies
|
||||||
*/
|
*/
|
||||||
|
@ -436,6 +443,9 @@ class OC_Mount_Config {
|
||||||
if(!OC_Mount_Config::checkphpftp()) {
|
if(!OC_Mount_Config::checkphpftp()) {
|
||||||
$txt.=$l->t('<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.').'<br />';
|
$txt.=$l->t('<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.').'<br />';
|
||||||
}
|
}
|
||||||
|
if(!OC_Mount_Config::checkcurl()) {
|
||||||
|
$txt.=$l->t('<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it.').'<br />';
|
||||||
|
}
|
||||||
|
|
||||||
return($txt);
|
return($txt);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
<?php $TRANSLATIONS = array(
|
<?php $TRANSLATIONS = array(
|
||||||
"Password" => "Cyfrinair",
|
"Password" => "Cyfrinair",
|
||||||
"Submit" => "Cyflwyno",
|
"Submit" => "Cyflwyno",
|
||||||
|
"%s shared the folder %s with you" => "Rhannodd %s blygell %s â chi",
|
||||||
|
"%s shared the file %s with you" => "Rhannodd %s ffeil %s â chi",
|
||||||
"Download" => "Llwytho i lawr",
|
"Download" => "Llwytho i lawr",
|
||||||
|
"No preview available for" => "Does dim rhagolwg ar gael ar gyfer",
|
||||||
"web services under your control" => "gwasanaethau gwe a reolir gennych"
|
"web services under your control" => "gwasanaethau gwe a reolir gennych"
|
||||||
);
|
);
|
||||||
|
|
|
@ -13,5 +13,6 @@
|
||||||
"{count} files" => "{count} файла",
|
"{count} files" => "{count} файла",
|
||||||
"Nothing in here. Your trash bin is empty!" => "Няма нищо. Кофата е празна!",
|
"Nothing in here. Your trash bin is empty!" => "Няма нищо. Кофата е празна!",
|
||||||
"Restore" => "Възтановяване",
|
"Restore" => "Възтановяване",
|
||||||
"Delete" => "Изтриване"
|
"Delete" => "Изтриване",
|
||||||
|
"Deleted Files" => "Изтрити файлове"
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,4 +1,18 @@
|
||||||
<?php $TRANSLATIONS = array(
|
<?php $TRANSLATIONS = array(
|
||||||
|
"Couldn't delete %s permanently" => "Methwyd dileu %s yn barhaol",
|
||||||
|
"Couldn't restore %s" => "Methwyd adfer %s",
|
||||||
|
"perform restore operation" => "gweithrediad adfer",
|
||||||
"Error" => "Gwall",
|
"Error" => "Gwall",
|
||||||
"Delete" => "Dileu"
|
"delete file permanently" => "dileu ffeil yn barhaol",
|
||||||
|
"Delete permanently" => "Dileu'n barhaol",
|
||||||
|
"Name" => "Enw",
|
||||||
|
"Deleted" => "Wedi dileu",
|
||||||
|
"1 folder" => "1 blygell",
|
||||||
|
"{count} folders" => "{count} plygell",
|
||||||
|
"1 file" => "1 ffeil",
|
||||||
|
"{count} files" => "{count} ffeil",
|
||||||
|
"Nothing in here. Your trash bin is empty!" => "Does dim byd yma. Mae eich bin sbwriel yn wag!",
|
||||||
|
"Restore" => "Adfer",
|
||||||
|
"Delete" => "Dileu",
|
||||||
|
"Deleted Files" => "Ffeiliau Ddilewyd"
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<?php $TRANSLATIONS = array(
|
<?php $TRANSLATIONS = array(
|
||||||
"Couldn't delete %s permanently" => "無法永久刪除%s",
|
"Couldn't delete %s permanently" => "無法永久刪除 %s",
|
||||||
"Couldn't restore %s" => "無法復原%s",
|
"Couldn't restore %s" => "無法復原 %s",
|
||||||
"perform restore operation" => "進行復原動作",
|
"perform restore operation" => "進行復原動作",
|
||||||
"Error" => "錯誤",
|
"Error" => "錯誤",
|
||||||
"delete file permanently" => "永久刪除文件",
|
"delete file permanently" => "永久刪除檔案",
|
||||||
"Delete permanently" => "永久刪除",
|
"Delete permanently" => "永久刪除",
|
||||||
"Name" => "名稱",
|
"Name" => "名稱",
|
||||||
"Deleted" => "已刪除",
|
"Deleted" => "已刪除",
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
"{count} folders" => "{count} 個資料夾",
|
"{count} folders" => "{count} 個資料夾",
|
||||||
"1 file" => "1 個檔案",
|
"1 file" => "1 個檔案",
|
||||||
"{count} files" => "{count} 個檔案",
|
"{count} files" => "{count} 個檔案",
|
||||||
"Nothing in here. Your trash bin is empty!" => "這裏沒東西。您的垃圾桶是空的!",
|
"Nothing in here. Your trash bin is empty!" => "您的垃圾桶是空的!",
|
||||||
"Restore" => "復原",
|
"Restore" => "復原",
|
||||||
"Delete" => "刪除",
|
"Delete" => "刪除",
|
||||||
"Deleted Files" => "已刪除的檔案"
|
"Deleted Files" => "已刪除的檔案"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
<?php $TRANSLATIONS = array(
|
<?php $TRANSLATIONS = array(
|
||||||
|
"success" => "успешно",
|
||||||
|
"File %s was reverted to version %s" => "Файлът %s бе върнат към версия %s",
|
||||||
"Versions" => "Версии"
|
"Versions" => "Версии"
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
<?php $TRANSLATIONS = array(
|
<?php $TRANSLATIONS = array(
|
||||||
"History" => "Istoric",
|
"Could not revert: %s" => "Nu a putut reveni: %s",
|
||||||
"Files Versioning" => "Versionare fișiere",
|
"success" => "success",
|
||||||
"Enable" => "Activare"
|
"File %s was reverted to version %s" => "Fisierul %s a revenit la versiunea %s",
|
||||||
|
"failure" => "eșec",
|
||||||
|
"File %s could not be reverted to version %s" => "Fisierele %s nu au putut reveni la versiunea %s",
|
||||||
|
"No old versions available" => "Versiunile vechi nu sunt disponibile",
|
||||||
|
"No path specified" => "Nici un dosar specificat",
|
||||||
|
"Versions" => "Versiuni",
|
||||||
|
"Revert a file to a previous version by clicking on its revert button" => "Readuceti un fișier la o versiune anterioară, făcând clic pe butonul revenire"
|
||||||
);
|
);
|
||||||
|
|
|
@ -76,8 +76,15 @@ class Group_Proxy extends lib\Proxy implements \OCP\GroupInterface {
|
||||||
if(isset($this->backends[$prefix])) {
|
if(isset($this->backends[$prefix])) {
|
||||||
$result = call_user_func_array(array($this->backends[$prefix], $method), $parameters);
|
$result = call_user_func_array(array($this->backends[$prefix], $method), $parameters);
|
||||||
if(!$result) {
|
if(!$result) {
|
||||||
//not found here, reset cache to null
|
//not found here, reset cache to null if group vanished
|
||||||
$this->writeToCache($cacheKey, null);
|
//because sometimes methods return false with a reason
|
||||||
|
$groupExists = call_user_func_array(
|
||||||
|
array($this->backends[$prefix], 'groupExists'),
|
||||||
|
array($gid)
|
||||||
|
);
|
||||||
|
if(!$groupExists) {
|
||||||
|
$this->writeToCache($cacheKey, null);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
<?php $TRANSLATIONS = array(
|
<?php $TRANSLATIONS = array(
|
||||||
|
"Deletion failed" => "Methwyd dileu",
|
||||||
"Password" => "Cyfrinair",
|
"Password" => "Cyfrinair",
|
||||||
"Help" => "Cymorth"
|
"Help" => "Cymorth"
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,28 +1,49 @@
|
||||||
<?php $TRANSLATIONS = array(
|
<?php $TRANSLATIONS = array(
|
||||||
|
"The configuration is valid and the connection could be established!" => "Uyunlama mantikli ve baglama yerlestirmek edebilmi.",
|
||||||
|
"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Uyunlama gecerli, fakat Baglama yapamadi. Lutfen kontrol yapmak, eger bu iyi yerlertirdi. ",
|
||||||
|
"The configuration is invalid. Please look in the ownCloud log for further details." => "Uyunma mantikli degil. Lutfen log daha kontrol yapmak. ",
|
||||||
"Deletion failed" => "Silme başarısız oldu",
|
"Deletion failed" => "Silme başarısız oldu",
|
||||||
|
"Take over settings from recent server configuration?" => "Parametri sonadan uyunlama cikarmak mi?",
|
||||||
"Keep settings?" => "Ayarları kalsınmı?",
|
"Keep settings?" => "Ayarları kalsınmı?",
|
||||||
|
"Cannot add server configuration" => "Sunucu uyunlama birlemek edemen. ",
|
||||||
"Connection test succeeded" => "Bağlantı testi başarılı oldu",
|
"Connection test succeeded" => "Bağlantı testi başarılı oldu",
|
||||||
"Connection test failed" => "Bağlantı testi başarısız oldu",
|
"Connection test failed" => "Bağlantı testi başarısız oldu",
|
||||||
|
"Do you really want to delete the current Server Configuration?" => "Hakikatten, Sonuncu Funksyon durmak istiyor mi?",
|
||||||
"Confirm Deletion" => "Silmeyi onayla",
|
"Confirm Deletion" => "Silmeyi onayla",
|
||||||
|
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Uyari </b> Apps kullanici_Idap ve user_webdavauth uyunmayan. Bu belki sik degil. Lutfen sistem yonetici sormak on aktif yapmaya. ",
|
||||||
|
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Ihbar <b> Modulu PHP LDAP yuklemdi degil, backend calismacak. Lutfen sistem yonetici sormak yuklemek icin.",
|
||||||
"Host" => "Sunucu",
|
"Host" => "Sunucu",
|
||||||
|
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokol atlamak edesin, sadece SSL istiyorsaniz. O zaman, idapsile baslamak. ",
|
||||||
"Base DN" => "Ana DN",
|
"Base DN" => "Ana DN",
|
||||||
|
"One Base DN per line" => "Bir Tabani DN herbir dizi. ",
|
||||||
|
"You can specify Base DN for users and groups in the Advanced tab" => "Base DN kullanicileri ve kaynaklari icin tablosu Advanced tayin etmek ederiz. ",
|
||||||
"User DN" => "Kullanıcı DN",
|
"User DN" => "Kullanıcı DN",
|
||||||
|
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN musterinin, kimle baglamaya yapacagiz,meselâ uid=agent.dc mesela, dc=com Gecinme adisiz ici, DN ve Parola bos birakmak. ",
|
||||||
"Password" => "Parola",
|
"Password" => "Parola",
|
||||||
"For anonymous access, leave DN and Password empty." => "Anonim erişim için DN ve Parola alanlarını boş bırakın.",
|
"For anonymous access, leave DN and Password empty." => "Anonim erişim için DN ve Parola alanlarını boş bırakın.",
|
||||||
"User Login Filter" => "Kullanıcı Oturum Filtresi",
|
"User Login Filter" => "Kullanıcı Oturum Filtresi",
|
||||||
|
"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action." => "Filter uyunlamak icin tayin ediyor, ne zaman girişmek isteminiz. % % uid adi kullanici girismeye karsi koymacak. ",
|
||||||
"use %%uid placeholder, e.g. \"uid=%%uid\"" => "%%uid yer tutucusunu kullanın, örneğin \"uid=%%uid\"",
|
"use %%uid placeholder, e.g. \"uid=%%uid\"" => "%%uid yer tutucusunu kullanın, örneğin \"uid=%%uid\"",
|
||||||
"User List Filter" => "Kullanıcı Liste Filtresi",
|
"User List Filter" => "Kullanıcı Liste Filtresi",
|
||||||
|
"Defines the filter to apply, when retrieving users." => "Filter uyunmak icin tayin ediyor, ne zaman adi kullanici geri aliyor. ",
|
||||||
"without any placeholder, e.g. \"objectClass=person\"." => "bir yer tutucusu olmadan, örneğin \"objectClass=person\"",
|
"without any placeholder, e.g. \"objectClass=person\"." => "bir yer tutucusu olmadan, örneğin \"objectClass=person\"",
|
||||||
"Group Filter" => "Grup Süzgeci",
|
"Group Filter" => "Grup Süzgeci",
|
||||||
|
"Defines the filter to apply, when retrieving groups." => "Filter uyunmak icin tayin ediyor, ne zaman grubalari tekrar aliyor. ",
|
||||||
|
"without any placeholder, e.g. \"objectClass=posixGroup\"." => "siz bir yer tutucu, mes. 'objectClass=posixGroup ('posixGrubu''. ",
|
||||||
"Connection Settings" => "Bağlantı ayarları",
|
"Connection Settings" => "Bağlantı ayarları",
|
||||||
"Port" => "Port",
|
"Port" => "Port",
|
||||||
"Disable Main Server" => "Ana sunucuyu devredışı birak",
|
"Disable Main Server" => "Ana sunucuyu devredışı birak",
|
||||||
"Use TLS" => "TLS kullan",
|
"Use TLS" => "TLS kullan",
|
||||||
"Turn off SSL certificate validation." => "SSL sertifika doğrulamasını kapat.",
|
"Turn off SSL certificate validation." => "SSL sertifika doğrulamasını kapat.",
|
||||||
|
"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Bagladiginda, bunla secene sadece calisiyor, sunucu LDAP SSL sunucun ithal etemek, dneyme sizine sunucu ownClouden. ",
|
||||||
"Not recommended, use for testing only." => "Önerilmez, sadece test için kullanın.",
|
"Not recommended, use for testing only." => "Önerilmez, sadece test için kullanın.",
|
||||||
"in seconds. A change empties the cache." => "saniye cinsinden. Bir değişiklik önbelleği temizleyecektir.",
|
"in seconds. A change empties the cache." => "saniye cinsinden. Bir değişiklik önbelleği temizleyecektir.",
|
||||||
|
"User Display Name Field" => "Ekran Adi Kullanici, (Alan Adi Kullanici Ekrane)",
|
||||||
"Base User Tree" => "Temel Kullanıcı Ağacı",
|
"Base User Tree" => "Temel Kullanıcı Ağacı",
|
||||||
|
"Group Display Name Field" => "Grub Ekrane Alani Adi",
|
||||||
|
"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP kullamayin grub adi ownCloud uremek icin. ",
|
||||||
"Base Group Tree" => "Temel Grup Ağacı",
|
"Base Group Tree" => "Temel Grup Ağacı",
|
||||||
|
"One Group Base DN per line" => "Bir Grubu Tabani DN her dizgi. ",
|
||||||
"Group-Member association" => "Grup-Üye işbirliği",
|
"Group-Member association" => "Grup-Üye işbirliği",
|
||||||
"in bytes" => "byte cinsinden",
|
"in bytes" => "byte cinsinden",
|
||||||
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Kullanıcı adı bölümünü boş bırakın (varsayılan). ",
|
"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Kullanıcı adı bölümünü boş bırakın (varsayılan). ",
|
||||||
|
|
|
@ -76,8 +76,15 @@ class User_Proxy extends lib\Proxy implements \OCP\UserInterface {
|
||||||
if(isset($this->backends[$prefix])) {
|
if(isset($this->backends[$prefix])) {
|
||||||
$result = call_user_func_array(array($this->backends[$prefix], $method), $parameters);
|
$result = call_user_func_array(array($this->backends[$prefix], $method), $parameters);
|
||||||
if(!$result) {
|
if(!$result) {
|
||||||
//not found here, reset cache to null
|
//not found here, reset cache to null if user vanished
|
||||||
$this->writeToCache($cacheKey, null);
|
//because sometimes methods return false with a reason
|
||||||
|
$userExists = call_user_func_array(
|
||||||
|
array($this->backends[$prefix], 'userExists'),
|
||||||
|
array($uid)
|
||||||
|
);
|
||||||
|
if(!$userExists) {
|
||||||
|
$this->writeToCache($cacheKey, null);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
<?php $TRANSLATIONS = array(
|
||||||
|
"WebDAV Authentication" => "WebDAV идентификация",
|
||||||
|
"URL: http://" => "URL: http://",
|
||||||
|
"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud ще изпрати потребителските данни до този URL. "
|
||||||
|
);
|
|
@ -1,4 +1,5 @@
|
||||||
<?php $TRANSLATIONS = array(
|
<?php $TRANSLATIONS = array(
|
||||||
"WebDAV Authentication" => "WebDAV Kimlik doğrulaması",
|
"WebDAV Authentication" => "WebDAV Kimlik doğrulaması",
|
||||||
"URL: http://" => "URL: http://"
|
"URL: http://" => "URL: http://",
|
||||||
|
"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud deneyme kullanicin URLe gonderecek. Bu toplan cepaplama muayene edecek ve status kodeci HTTPden 401 ve 403 deneyi gecerli ve hepsi baska cevaplamari mantekli gibi yorumlacak. "
|
||||||
);
|
);
|
||||||
|
|
|
@ -146,8 +146,12 @@ $CONFIG = array(
|
||||||
"remember_login_cookie_lifetime" => 60*60*24*15,
|
"remember_login_cookie_lifetime" => 60*60*24*15,
|
||||||
|
|
||||||
/* Custom CSP policy, changing this will overwrite the standard policy */
|
/* Custom CSP policy, changing this will overwrite the standard policy */
|
||||||
"custom_csp_policy" => "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; frame-src *; img-src *; font-src 'self' data:",
|
"custom_csp_policy" => "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; frame-src *; img-src *; font-src 'self' data:; media-src *",
|
||||||
|
|
||||||
|
/* Enable/disable X-Frame-Restriction */
|
||||||
|
/* HIGH SECURITY RISK IF DISABLED*/
|
||||||
|
"xframe_restriction" => true,
|
||||||
|
|
||||||
/* The directory where the user data is stored, default to data in the owncloud
|
/* The directory where the user data is stored, default to data in the owncloud
|
||||||
* directory. The sqlite database is also stored here, when sqlite is used.
|
* directory. The sqlite database is also stored here, when sqlite is used.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -29,6 +29,12 @@
|
||||||
white-space:nowrap;
|
white-space:nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul.multiselectoptions>li>input[type="checkbox"] {
|
||||||
|
margin-top: 3px;
|
||||||
|
margin-right: 5px;
|
||||||
|
margin-left: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
div.multiselect {
|
div.multiselect {
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
max-width:400px;
|
max-width:400px;
|
||||||
|
@ -75,4 +81,4 @@
|
||||||
padding-bottom:.2em;
|
padding-bottom:.2em;
|
||||||
padding-top:.2em;
|
padding-top:.2em;
|
||||||
margin:0;
|
margin:0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,13 +23,13 @@ body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Ari
|
||||||
#body-login #header { margin: -2em auto 0; text-align:center; height:10em; padding:1em 0 .5em;
|
#body-login #header { margin: -2em auto 0; text-align:center; height:10em; padding:1em 0 .5em;
|
||||||
-moz-box-shadow:0 0 1em rgba(0, 0, 0, .5); -webkit-box-shadow:0 0 1em rgba(0, 0, 0, .5); box-shadow:0 0 1em rgba(0, 0, 0, .5);
|
-moz-box-shadow:0 0 1em rgba(0, 0, 0, .5); -webkit-box-shadow:0 0 1em rgba(0, 0, 0, .5); box-shadow:0 0 1em rgba(0, 0, 0, .5);
|
||||||
background:#1d2d44; /* Old browsers */
|
background:#1d2d44; /* Old browsers */
|
||||||
background:-moz-linear-gradient(top, #35537a 0%, #1d2d42 100%); /* FF3.6+ */
|
background:-moz-linear-gradient(top, #35537a 0%, #1d2d44 100%); /* FF3.6+ */
|
||||||
background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#35537a), color-stop(100%,#1d2d42)); /* Chrome,Safari4+ */
|
background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#35537a), color-stop(100%,#1d2d44)); /* Chrome,Safari4+ */
|
||||||
background:-webkit-linear-gradient(top, #35537a 0%,#1d2d42 100%); /* Chrome10+,Safari5.1+ */
|
background:-webkit-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Chrome10+,Safari5.1+ */
|
||||||
background:-o-linear-gradient(top, #35537a 0%,#1d2d42 100%); /* Opera11.10+ */
|
background:-o-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Opera11.10+ */
|
||||||
background:-ms-linear-gradient(top, #35537a 0%,#1d2d42 100%); /* IE10+ */
|
background:-ms-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* IE10+ */
|
||||||
background:linear-gradient(top, #35537a 0%,#1d2d42 100%); /* W3C */
|
background:linear-gradient(top, #35537a 0%,#1d2d44 100%); /* W3C */
|
||||||
filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endColorstr='#1d2d42',GradientType=0 ); /* IE6-9 */ }
|
filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endColorstr='#1d2d44',GradientType=0 ); /* IE6-9 */ }
|
||||||
|
|
||||||
#owncloud { position:absolute; top:0; left:0; padding:6px; padding-bottom:0; }
|
#owncloud { position:absolute; top:0; left:0; padding:6px; padding-bottom:0; }
|
||||||
.header-right { float:right; vertical-align:middle; padding:0.5em; }
|
.header-right { float:right; vertical-align:middle; padding:0.5em; }
|
||||||
|
@ -50,6 +50,7 @@ button, .button,
|
||||||
input[type="hidden"] { height:0; width:0; }
|
input[type="hidden"] { height:0; width:0; }
|
||||||
input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], textarea {
|
input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], textarea {
|
||||||
background:#f8f8f8; color:#555; cursor:text;
|
background:#f8f8f8; color:#555; cursor:text;
|
||||||
|
font-family: inherit; /* use default ownCloud font instead of default textarea monospace */
|
||||||
}
|
}
|
||||||
input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"] {
|
input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"] {
|
||||||
-webkit-appearance:textfield; -moz-appearance:textfield;
|
-webkit-appearance:textfield; -moz-appearance:textfield;
|
||||||
|
@ -119,7 +120,7 @@ a.disabled, a.disabled:hover, a.disabled:focus {
|
||||||
}
|
}
|
||||||
.primary:active, input[type="submit"].primary:active, input[type="button"].primary:active, button.primary:active, .button.primary:active {
|
.primary:active, input[type="submit"].primary:active, input[type="button"].primary:active, button.primary:active, .button.primary:active {
|
||||||
border:1px solid #1d2d44;
|
border:1px solid #1d2d44;
|
||||||
background:#1d2d42; color:#bbb; text-shadow:#000 0 -1px 0;
|
background:#1d2d44; color:#bbb; text-shadow:#000 0 -1px 0;
|
||||||
-moz-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; -webkit-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset;
|
-moz-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; -webkit-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -219,7 +220,6 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; }
|
||||||
}
|
}
|
||||||
#login #databaseField .infield { padding-left:0; }
|
#login #databaseField .infield { padding-left:0; }
|
||||||
#login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; }
|
#login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; }
|
||||||
#login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; }
|
|
||||||
|
|
||||||
/* Show password toggle */
|
/* Show password toggle */
|
||||||
#show, #dbpassword { position:absolute; right:1em; top:.8em; float:right; }
|
#show, #dbpassword { position:absolute; right:1em; top:.8em; float:right; }
|
||||||
|
@ -245,14 +245,24 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; }
|
||||||
}
|
}
|
||||||
#login form #selectDbType label.ui-state-hover, #login form #selectDbType label.ui-state-active { color:#000; background-color:#e8e8e8; }
|
#login form #selectDbType label.ui-state-hover, #login form #selectDbType label.ui-state-active { color:#000; background-color:#e8e8e8; }
|
||||||
|
|
||||||
/* Warnings */
|
/* Warnings, for information */
|
||||||
fieldset.warning {
|
.warning {
|
||||||
padding:8px;
|
display: block;
|
||||||
color:#b94a48; background-color:#f2dede; border:1px solid #eed3d7;
|
background-color: #f2dede;
|
||||||
border-radius:5px;
|
color: #b94a48;
|
||||||
|
padding: 8px;
|
||||||
|
margin: 0 7px 5px;
|
||||||
|
border: 1px solid #eed3d7;
|
||||||
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
fieldset.warning legend { color:#b94a48 !important; }
|
.warning legend,
|
||||||
fieldset.warning a { color:#b94a48 !important; font-weight:bold; }
|
.warning a {
|
||||||
|
color: #b94a48 !important;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
/* Errors, for grave states */
|
||||||
|
li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; cursor:default; }
|
||||||
|
.error { color:#FF3B3B; }
|
||||||
|
|
||||||
/* Alternative Logins */
|
/* Alternative Logins */
|
||||||
#alternative-logins legend { margin-bottom:10px; }
|
#alternative-logins legend { margin-bottom:10px; }
|
||||||
|
@ -262,7 +272,7 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; }
|
||||||
/* NAVIGATION ------------------------------------------------------------- */
|
/* NAVIGATION ------------------------------------------------------------- */
|
||||||
#navigation {
|
#navigation {
|
||||||
position:fixed; float:left; width:64px; padding-top:3.5em; z-index:75; height:100%;
|
position:fixed; float:left; width:64px; padding-top:3.5em; z-index:75; height:100%;
|
||||||
background:#383c43 url('../img/noise.png') repeat; border-right:1px #333 solid;
|
background:#383c43 url('../img/noise.png') repeat;
|
||||||
-moz-box-shadow:0 0 7px #000; -webkit-box-shadow:0 0 7px #000; box-shadow:0 0 7px #000;
|
-moz-box-shadow:0 0 7px #000; -webkit-box-shadow:0 0 7px #000; box-shadow:0 0 7px #000;
|
||||||
overflow:hidden; box-sizing:border-box; -moz-box-sizing:border-box;
|
overflow:hidden; box-sizing:border-box; -moz-box-sizing:border-box;
|
||||||
}
|
}
|
||||||
|
@ -356,8 +366,6 @@ div.jp-play-bar, div.jp-seek-bar { padding:0; }
|
||||||
.pager { list-style:none; float:right; display:inline; margin:.7em 13em 0 0; }
|
.pager { list-style:none; float:right; display:inline; margin:.7em 13em 0 0; }
|
||||||
.pager li { display:inline-block; }
|
.pager li { display:inline-block; }
|
||||||
|
|
||||||
li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; cursor:default; }
|
|
||||||
.error { color:#FF3B3B; }
|
|
||||||
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { overflow:hidden; text-overflow:ellipsis; }
|
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { overflow:hidden; text-overflow:ellipsis; }
|
||||||
.hint { background-image:url('../img/actions/info.png'); background-repeat:no-repeat; color:#777; padding-left:25px; background-position:0 0.3em;}
|
.hint { background-image:url('../img/actions/info.png'); background-repeat:no-repeat; color:#777; padding-left:25px; background-position:0 0.3em;}
|
||||||
.separator { display:inline; border-left:1px solid #d3d3d3; border-right:1px solid #fff; height:10px; width:0px; margin:4px; }
|
.separator { display:inline; border-left:1px solid #d3d3d3; border-right:1px solid #fff; height:10px; width:0px; margin:4px; }
|
||||||
|
|
|
@ -35,7 +35,8 @@
|
||||||
'style' : $element.attr('style'),
|
'style' : $element.attr('style'),
|
||||||
'size' : $element.attr('size'),
|
'size' : $element.attr('size'),
|
||||||
'name' : $element.attr('name')+'-clone',
|
'name' : $element.attr('name')+'-clone',
|
||||||
'tabindex' : $element.attr('tabindex')
|
'tabindex' : $element.attr('tabindex'),
|
||||||
|
'autocomplete' : 'off'
|
||||||
});
|
});
|
||||||
|
|
||||||
return $clone;
|
return $clone;
|
||||||
|
@ -102,7 +103,16 @@
|
||||||
$clone.bind('blur', function() { $input.trigger('focusout'); });
|
$clone.bind('blur', function() { $input.trigger('focusout'); });
|
||||||
|
|
||||||
setState( $checkbox, $input, $clone );
|
setState( $checkbox, $input, $clone );
|
||||||
|
|
||||||
|
// set type of password field clone (type=text) to password right on submit
|
||||||
|
// to prevent browser save the value of this field
|
||||||
|
$clone.closest('form').submit(function(e) {
|
||||||
|
// .prop has to be used, because .attr throws
|
||||||
|
// an error while changing a type of an input
|
||||||
|
// element
|
||||||
|
$clone.prop('type', 'password');
|
||||||
|
});
|
||||||
|
|
||||||
if( callback.fn ){
|
if( callback.fn ){
|
||||||
callback.fn( callback.args );
|
callback.fn( callback.args );
|
||||||
}
|
}
|
||||||
|
|
|
@ -316,4 +316,4 @@
|
||||||
|
|
||||||
return span;
|
return span;
|
||||||
};
|
};
|
||||||
})( jQuery );
|
})( jQuery );
|
||||||
|
|
|
@ -11,7 +11,10 @@
|
||||||
"Cancel" => "Отказ",
|
"Cancel" => "Отказ",
|
||||||
"Error" => "Грешка",
|
"Error" => "Грешка",
|
||||||
"Share" => "Споделяне",
|
"Share" => "Споделяне",
|
||||||
|
"Share with" => "Споделено с",
|
||||||
"Password" => "Парола",
|
"Password" => "Парола",
|
||||||
|
"create" => "създаване",
|
||||||
|
"Username" => "Потребител",
|
||||||
"New password" => "Нова парола",
|
"New password" => "Нова парола",
|
||||||
"Personal" => "Лични",
|
"Personal" => "Лични",
|
||||||
"Users" => "Потребители",
|
"Users" => "Потребители",
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
"today" => "dnes",
|
"today" => "dnes",
|
||||||
"yesterday" => "včera",
|
"yesterday" => "včera",
|
||||||
"{days} days ago" => "před {days} dny",
|
"{days} days ago" => "před {days} dny",
|
||||||
"last month" => "minulý mesíc",
|
"last month" => "minulý měsíc",
|
||||||
"{months} months ago" => "před {months} měsíci",
|
"{months} months ago" => "před {months} měsíci",
|
||||||
"months ago" => "před měsíci",
|
"months ago" => "před měsíci",
|
||||||
"last year" => "minulý rok",
|
"last year" => "minulý rok",
|
||||||
|
@ -82,7 +82,7 @@
|
||||||
"Password protected" => "Chráněno heslem",
|
"Password protected" => "Chráněno heslem",
|
||||||
"Error unsetting expiration date" => "Chyba při odstraňování data vypršení platnosti",
|
"Error unsetting expiration date" => "Chyba při odstraňování data vypršení platnosti",
|
||||||
"Error setting expiration date" => "Chyba při nastavení data vypršení platnosti",
|
"Error setting expiration date" => "Chyba při nastavení data vypršení platnosti",
|
||||||
"Sending ..." => "Odesílám...",
|
"Sending ..." => "Odesílám ...",
|
||||||
"Email sent" => "E-mail odeslán",
|
"Email sent" => "E-mail odeslán",
|
||||||
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">evidence chyb ownCloud</a>",
|
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">evidence chyb ownCloud</a>",
|
||||||
"The update was successful. Redirecting you to ownCloud now." => "Aktualizace byla úspěšná. Přesměrovávám na ownCloud.",
|
"The update was successful. Redirecting you to ownCloud now." => "Aktualizace byla úspěšná. Přesměrovávám na ownCloud.",
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Utilizatorul %s a partajat dosarul \"%s\" cu tine. Îl poți descărca de aici: %s ",
|
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Utilizatorul %s a partajat dosarul \"%s\" cu tine. Îl poți descărca de aici: %s ",
|
||||||
"Category type not provided." => "Tipul de categorie nu este prevazut",
|
"Category type not provided." => "Tipul de categorie nu este prevazut",
|
||||||
"No category to add?" => "Nici o categorie de adăugat?",
|
"No category to add?" => "Nici o categorie de adăugat?",
|
||||||
|
"This category already exists: %s" => "Această categorie deja există: %s",
|
||||||
"Object type not provided." => "Tipul obiectului nu este prevazut",
|
"Object type not provided." => "Tipul obiectului nu este prevazut",
|
||||||
"%s ID not provided." => "ID-ul %s nu a fost introdus",
|
"%s ID not provided." => "ID-ul %s nu a fost introdus",
|
||||||
"Error adding %s to favorites." => "Eroare la adăugarea %s la favorite",
|
"Error adding %s to favorites." => "Eroare la adăugarea %s la favorite",
|
||||||
|
@ -52,6 +53,7 @@
|
||||||
"Error" => "Eroare",
|
"Error" => "Eroare",
|
||||||
"The app name is not specified." => "Numele aplicației nu a fost specificat",
|
"The app name is not specified." => "Numele aplicației nu a fost specificat",
|
||||||
"The required file {file} is not installed!" => "Fișierul obligatoriu {file} nu este instalat!",
|
"The required file {file} is not installed!" => "Fișierul obligatoriu {file} nu este instalat!",
|
||||||
|
"Shared" => "Partajat",
|
||||||
"Share" => "Partajează",
|
"Share" => "Partajează",
|
||||||
"Error while sharing" => "Eroare la partajare",
|
"Error while sharing" => "Eroare la partajare",
|
||||||
"Error while unsharing" => "Eroare la anularea partajării",
|
"Error while unsharing" => "Eroare la anularea partajării",
|
||||||
|
@ -82,6 +84,8 @@
|
||||||
"Error setting expiration date" => "Eroare la specificarea datei de expirare",
|
"Error setting expiration date" => "Eroare la specificarea datei de expirare",
|
||||||
"Sending ..." => "Se expediază...",
|
"Sending ..." => "Se expediază...",
|
||||||
"Email sent" => "Mesajul a fost expediat",
|
"Email sent" => "Mesajul a fost expediat",
|
||||||
|
"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Modernizarea a eșuat! <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">Te rugam sa raportezi problema aici.</a>.",
|
||||||
|
"The update was successful. Redirecting you to ownCloud now." => "Modernizare reusita! Vei fii redirectionat!",
|
||||||
"ownCloud password reset" => "Resetarea parolei ownCloud ",
|
"ownCloud password reset" => "Resetarea parolei ownCloud ",
|
||||||
"Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}",
|
"Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}",
|
||||||
"You will receive a link to reset your password via Email." => "Vei primi un mesaj prin care vei putea reseta parola via email",
|
"You will receive a link to reset your password via Email." => "Vei primi un mesaj prin care vei putea reseta parola via email",
|
||||||
|
@ -103,8 +107,12 @@
|
||||||
"Edit categories" => "Editează categoriile",
|
"Edit categories" => "Editează categoriile",
|
||||||
"Add" => "Adaugă",
|
"Add" => "Adaugă",
|
||||||
"Security Warning" => "Avertisment de securitate",
|
"Security Warning" => "Avertisment de securitate",
|
||||||
|
"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Versiunea dvs. PHP este vulnerabil la acest atac un octet null (CVE-2006-7243)",
|
||||||
|
"Please update your PHP installation to use ownCloud securely." => "Vă rugăm să actualizați instalarea dvs. PHP pentru a utiliza ownCloud in siguranță.",
|
||||||
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Generatorul de numere pentru securitate nu este disponibil, va rog activati extensia PHP OpenSSL",
|
"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Generatorul de numere pentru securitate nu este disponibil, va rog activati extensia PHP OpenSSL",
|
||||||
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Fara generatorul pentru numere de securitate , un atacator poate afla parola si reseta contul tau",
|
"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Fara generatorul pentru numere de securitate , un atacator poate afla parola si reseta contul tau",
|
||||||
|
"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Directorul de date și fișiere sunt, probabil, accesibile de pe Internet, deoarece .htaccess nu funcționează.",
|
||||||
|
"For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "Pentru informatii despre configurarea corecta a serverului accesati pagina <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">Documentare</a>.",
|
||||||
"Create an <strong>admin account</strong>" => "Crează un <strong>cont de administrator</strong>",
|
"Create an <strong>admin account</strong>" => "Crează un <strong>cont de administrator</strong>",
|
||||||
"Advanced" => "Avansat",
|
"Advanced" => "Avansat",
|
||||||
"Data folder" => "Director date",
|
"Data folder" => "Director date",
|
||||||
|
@ -124,6 +132,7 @@
|
||||||
"Lost your password?" => "Ai uitat parola?",
|
"Lost your password?" => "Ai uitat parola?",
|
||||||
"remember" => "amintește",
|
"remember" => "amintește",
|
||||||
"Log in" => "Autentificare",
|
"Log in" => "Autentificare",
|
||||||
|
"Alternative Logins" => "Conectări alternative",
|
||||||
"prev" => "precedentul",
|
"prev" => "precedentul",
|
||||||
"next" => "următorul",
|
"next" => "următorul",
|
||||||
"Updating ownCloud to version %s, this may take a while." => "Actualizăm ownCloud la versiunea %s, aceasta poate dura câteva momente."
|
"Updating ownCloud to version %s, this may take a while." => "Actualizăm ownCloud la versiunea %s, aceasta poate dura câteva momente."
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue