diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index dde5d3c50a..1d03cd89f8 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -105,16 +105,20 @@ if (strpos($dir, '..') === false) { $meta = \OC\Files\Filesystem::getFileInfo($target); // updated max file size after upload $storageStats = \OCA\files\lib\Helper::buildFileStorageStatistics($dir); - - $result[] = array('status' => 'success', - 'mime' => $meta['mimetype'], - 'size' => $meta['size'], - 'id' => $meta['fileid'], - 'name' => basename($target), - 'originalname' => $files['name'][$i], - 'uploadMaxFilesize' => $maxUploadFileSize, - 'maxHumanFilesize' => $maxHumanFileSize - ); + if ($meta === false) { + OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Upload failed')), $storageStats))); + exit(); + } else { + $result[] = array('status' => 'success', + 'mime' => $meta['mimetype'], + 'size' => $meta['size'], + 'id' => $meta['fileid'], + 'name' => basename($target), + 'originalname' => $files['name'][$i], + 'uploadMaxFilesize' => $maxUploadFileSize, + 'maxHumanFilesize' => $maxHumanFileSize + ); + } } } OCP\JSON::encodedPrint($result); diff --git a/apps/files/css/files.css b/apps/files/css/files.css index a2cf8398c2..7d5fe6445b 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -94,7 +94,7 @@ table th#headerDate, table td.date { min-width:11em; padding:0 .1em 0 1em; text- /* Multiselect bar */ #filestable.multiselect { top:63px; } -table.multiselect thead { position:fixed; top:82px; z-index:1; -moz-box-sizing: border-box; box-sizing: border-box; left: 0; padding-left: 64px; width:100%; } +table.multiselect thead { position:fixed; top:82px; z-index:1; -moz-box-sizing: border-box; box-sizing: border-box; left: 0; padding-left: 80px; width:100%; } table.multiselect thead th { background-color: rgba(210,210,210,.7); color: #000; diff --git a/apps/files/index.php b/apps/files/index.php index 94c792303d..e4d8e35385 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -119,7 +119,7 @@ if ($needUpgrade) { $tmpl->printPage(); } else { // information about storage capacities - $storageInfo=OC_Helper::getStorageInfo(); + $storageInfo=OC_Helper::getStorageInfo($dir); $maxUploadFilesize=OCP\Util::maxUploadFilesize($dir); $publicUploadEnabled = \OC_Appconfig::getValue('core', 'shareapi_allow_public_upload', 'yes'); if (OC_App::isEnabled('files_encryption')) { diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 49e464b810..1e6ab74fb6 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -102,6 +102,18 @@ $(document).ready(function() { var result=$.parseJSON(response); if(typeof result[0] !== 'undefined' && result[0].status === 'success') { + var filename = result[0].originalname; + + // delete jqXHR reference + if (typeof data.context !== 'undefined' && data.context.data('type') === 'dir') { + var dirName = data.context.data('file'); + delete uploadingFiles[dirName][filename]; + if ($.assocArraySize(uploadingFiles[dirName]) == 0) { + delete uploadingFiles[dirName]; + } + } else { + delete uploadingFiles[filename]; + } var file = result[0]; } else { data.textStatus = 'servererror'; @@ -109,20 +121,6 @@ $(document).ready(function() { var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); fu._trigger('fail', e, data); } - - var filename = result[0].originalname; - - // delete jqXHR reference - if (typeof data.context !== 'undefined' && data.context.data('type') === 'dir') { - var dirName = data.context.data('file'); - delete uploadingFiles[dirName][filename]; - if ($.assocArraySize(uploadingFiles[dirName]) == 0) { - delete uploadingFiles[dirName]; - } - } else { - delete uploadingFiles[filename]; - } - }, /** * called after last upload @@ -205,6 +203,13 @@ $(document).ready(function() { } }); }); + $('#new').click(function(event){ + event.stopPropagation(); + }); + $('#new>a').click(function(){ + $('#new>ul').toggle(); + $('#new').toggleClass('active'); + }); $('#new li').click(function(){ if($(this).children('p').length==0){ return; diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 4eb949c2ee..87311237e3 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -265,204 +265,6 @@ $(document).ready(function() { e.preventDefault(); // prevent browser from doing anything, if file isn't dropped in dropZone }); - $.assocArraySize = function(obj) { - // http://stackoverflow.com/a/6700/11236 - var size = 0, key; - for (key in obj) { - if (obj.hasOwnProperty(key)) size++; - } - return size; - }; - - // warn user not to leave the page while upload is in progress - $(window).bind('beforeunload', function(e) { - if ($.assocArraySize(uploadingFiles) > 0) - return t('files','File upload is in progress. Leaving the page now will cancel the upload.'); - }); - - //add multiply file upload attribute to all browsers except konqueror (which crashes when it's used) - if(navigator.userAgent.search(/konqueror/i)==-1){ - $('#file_upload_start').attr('multiple','multiple') - } - - //if the breadcrumb is to long, start by replacing foldernames with '...' except for the current folder - var crumb=$('div.crumb').first(); - while($('div.controls').height()>40 && crumb.next('div.crumb').length>0){ - crumb.children('a').text('...'); - crumb=crumb.next('div.crumb'); - } - //if that isn't enough, start removing items from the breacrumb except for the current folder and it's parent - var crumb=$('div.crumb').first(); - var next=crumb.next('div.crumb'); - while($('div.controls').height()>40 && next.next('div.crumb').length>0){ - crumb.remove(); - crumb=next; - next=crumb.next('div.crumb'); - } - //still not enough, start shorting down the current folder name - var crumb=$('div.crumb>a').last(); - while($('div.controls').height()>40 && crumb.text().length>6){ - var text=crumb.text() - text=text.substr(0,text.length-6)+'...'; - crumb.text(text); - } - - $(document).click(function(){ - $('#new>ul').hide(); - $('#new').removeClass('active'); - $('#new li').each(function(i,element){ - if($(element).children('p').length==0){ - $(element).children('form').remove(); - $(element).append('

'+$(element).data('text')+'

'); - } - }); - }); - $('#new').click(function(event){ - event.stopPropagation(); - }); - $('#new>a').click(function(){ - $('#new>ul').toggle(); - $('#new').toggleClass('active'); - }); - $('#new li').click(function(){ - if($(this).children('p').length==0){ - return; - } - - $('#new li').each(function(i,element){ - if($(element).children('p').length==0){ - $(element).children('form').remove(); - $(element).append('

'+$(element).data('text')+'

'); - } - }); - - var type=$(this).data('type'); - var text=$(this).children('p').text(); - $(this).data('text',text); - $(this).children('p').remove(); - var form=$('
'); - var input=$(''); - form.append(input); - $(this).append(form); - input.focus(); - form.submit(function(event){ - event.stopPropagation(); - event.preventDefault(); - var newname=input.val(); - if(type == 'web' && newname.length == 0) { - OC.Notification.show(t('files', 'URL cannot be empty.')); - return false; - } else if (type != 'web' && !Files.isFileNameValid(newname)) { - return false; - } else if( type == 'folder' && $('#dir').val() == '/' && newname == 'Shared') { - OC.Notification.show(t('files','Invalid folder name. Usage of \'Shared\' is reserved by Owncloud')); - return false; - } - if (FileList.lastAction) { - FileList.lastAction(); - } - var name = getUniqueName(newname); - if (newname != name) { - FileList.checkName(name, newname, true); - var hidden = true; - } else { - var hidden = false; - } - switch(type){ - case 'file': - $.post( - OC.filePath('files','ajax','newfile.php'), - {dir:$('#dir').val(),filename:name}, - function(result){ - if (result.status == 'success') { - var date=new Date(); - FileList.addFile(name,0,date,false,hidden); - var tr=$('tr').filterAttr('data-file',name); - tr.attr('data-mime',result.data.mime); - tr.attr('data-size',result.data.size); - tr.attr('data-id', result.data.id); - tr.find('.filesize').text(humanFileSize(result.data.size)); - getMimeIcon(result.data.mime,function(path){ - tr.find('td.filename').attr('style','background-image:url('+path+')'); - }); - } else { - OC.dialogs.alert(result.data.message, t('core', 'Error')); - } - } - ); - break; - case 'folder': - $.post( - OC.filePath('files','ajax','newfolder.php'), - {dir:$('#dir').val(),foldername:name}, - function(result){ - if (result.status == 'success') { - var date=new Date(); - FileList.addDir(name,0,date,hidden); - var tr=$('tr').filterAttr('data-file',name); - tr.attr('data-id', result.data.id); - } else { - OC.dialogs.alert(result.data.message, t('core', 'Error')); - } - } - ); - break; - case 'web': - if(name.substr(0,8)!='https://' && name.substr(0,7)!='http://'){ - name='http://'+name; - } - var localName=name; - if(localName.substr(localName.length-1,1)=='/'){//strip / - localName=localName.substr(0,localName.length-1) - } - if(localName.indexOf('/')){//use last part of url - localName=localName.split('/').pop(); - }else{//or the domain - localName=(localName.match(/:\/\/(.[^/]+)/)[1]).replace('www.',''); - } - localName = getUniqueName(localName); - //IE < 10 does not fire the necessary events for the progress bar. - if($('html.lte9').length > 0) { - } else { - $('#uploadprogressbar').progressbar({value:0}); - $('#uploadprogressbar').fadeIn(); - } - - var eventSource=new OC.EventSource(OC.filePath('files','ajax','newfile.php'),{dir:$('#dir').val(),source:name,filename:localName}); - eventSource.listen('progress',function(progress){ - //IE < 10 does not fire the necessary events for the progress bar. - if($('html.lte9').length > 0) { - } else { - $('#uploadprogressbar').progressbar('value',progress); - } - }); - eventSource.listen('success',function(data){ - var mime=data.mime; - var size=data.size; - var id=data.id; - $('#uploadprogressbar').fadeOut(); - var date=new Date(); - FileList.addFile(localName,size,date,false,hidden); - var tr=$('tr').filterAttr('data-file',localName); - tr.data('mime',mime).data('id',id); - tr.attr('data-id', id); - getMimeIcon(mime,function(path){ - tr.find('td.filename').attr('style','background-image:url('+path+')'); - }); - }); - eventSource.listen('error',function(error){ - $('#uploadprogressbar').fadeOut(); - alert(error); - }); - break; - } - var li=form.parent(); - form.remove(); - li.append('

'+li.data('text')+'

'); - $('#new>a').click(); - }); - }); - //do a background scan if needed scanFiles(); diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index 7161e49a96..a6c4e65530 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "مساحتك التخزينية ممتلئة, لا يمكم تحديث ملفاتك أو مزامنتها بعد الآن !", "Your storage is almost full ({usedSpacePercent}%)" => "مساحتك التخزينية امتلأت تقريبا ", "Your download is being prepared. This might take some time if the files are big." => "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "إسم مجلد غير صحيح. استخدام مصطلح \"Shared\" محجوز للنظام", "Name" => "اسم", "Size" => "حجم", "Modified" => "معدل", diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 2f05a3eccf..9efde85f0c 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "'.' is an invalid file name." => "টি একটি অননুমোদিত নাম।", "File name cannot be empty." => "ফাইলের নামটি ফাঁকা রাখা যাবে না।", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।", "Name" => "রাম", "Size" => "আকার", "Modified" => "পরিবর্তিত", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 3429f572fd..f7d0069217 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -41,7 +41,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "El vostre espai d'emmagatzemament és gairebé ple ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "L'encriptació s'ha desactivat però els vostres fitxers segueixen encriptats. Aneu a la vostra configuració personal per desencriptar els vostres fitxers.", "Your download is being prepared. This might take some time if the files are big." => "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud", "Name" => "Nom", "Size" => "Mida", "Modified" => "Modificat", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 1f766de7cf..dd243eb576 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -41,7 +41,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložiště je téměř plné ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifrování bylo zrušeno, soubory jsou však stále zašifrované. Běžte prosím do osobního nastavení, kde si složky odšifrujete.", "Your download is being prepared. This might take some time if the files are big." => "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatný název složky. Pojmenování 'Shared' je rezervováno pro vnitřní potřeby ownCloud", "Name" => "Název", "Size" => "Velikost", "Modified" => "Upraveno", diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index 01c4613a8c..f614fbee47 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -37,7 +37,6 @@ $TRANSLATIONS = array( "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.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Owncloud", "Name" => "Enw", "Size" => "Maint", "Modified" => "Addaswyd", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 22ca4b0d7b..a891bcfb37 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -41,7 +41,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krypteringen blev deaktiveret, men dine filer er stadig krypteret. Gå venligst til dine personlige indstillinger for at dekryptere dine 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.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud", "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Ændret", @@ -53,7 +52,7 @@ $TRANSLATIONS = array( "Maximum upload size" => "Maksimal upload-størrelse", "max. possible: " => "max. mulige: ", "Needed for multi-file and folder downloads." => "Nødvendigt for at kunne downloade mapper og flere filer ad gangen.", -"Enable ZIP-download" => "Muliggør ZIP-download", +"Enable ZIP-download" => "Tillad ZIP-download", "0 is unlimited" => "0 er ubegrænset", "Maximum input size for ZIP files" => "Maksimal størrelse på ZIP filer", "Save" => "Gem", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index c41d2fb5c1..53f9b1a236 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -41,7 +41,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Dein Speicher ist fast voll ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Die Verschlüsselung wurde deaktiviert, jedoch sind deine Dateien nach wie vor verschlüsselt. Bitte gehe zu deinen persönlichen Einstellungen, um deine Dateien zu entschlüsseln.", "Your download is being prepared. This might take some time if the files are big." => "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten.", "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 6d4bf8a4e7..8ea824c9c1 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -41,7 +41,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Ihr Speicher ist fast voll ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln.", "Your download is being prepared. This might take some time if the files are big." => "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten", "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index e1d0052bc0..41645acb52 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Ο αποθηκευτικός σας χώρος είναι γεμάτος, τα αρχεία δεν μπορούν να ενημερωθούν ή να συγχρονιστούν πια!", "Your storage is almost full ({usedSpacePercent}%)" => "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud", "Name" => "Όνομα", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 0f404fa29f..59ac4e1c39 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Via memoro plenas, ne plu eblas ĝisdatigi aŭ sinkronigi dosierojn!", "Your storage is almost full ({usedSpacePercent}%)" => "Via memoro preskaŭ plenas ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nevalida dosierujnomo. Uzo de “Shared” rezervatas de Owncloud.", "Name" => "Nomo", "Size" => "Grando", "Modified" => "Modifita", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 2672b16954..415d23ae89 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento está lleno, ¡no se pueden actualizar o sincronizar más!", "Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento está casi lleno ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Su descarga está siendo preparada. Esto puede tardar algún tiempo si los archivos son grandes.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nombre de carpeta no es válido. El uso de \"Shared\" está reservado por Owncloud", "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 5e94da3c43..4c0eb691f6 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "El almacenamiento está lleno, los archivos no se pueden seguir actualizando ni sincronizando", "Your storage is almost full ({usedSpacePercent}%)" => "El almacenamiento está casi lleno ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud", "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 2a5016f380..13198a9f88 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -41,7 +41,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Su andmemaht on peaaegu täis ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks.", "Your download is being prepared. This might take some time if the files are big." => "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. ", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Vigane kataloogi nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt.", "Name" => "Nimi", "Size" => "Suurus", "Modified" => "Muudetud", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index fe6e117a93..359b40ddef 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -32,20 +32,20 @@ $TRANSLATIONS = array( "cancel" => "ezeztatu", "replaced {new_name} with {old_name}" => " {new_name}-k {old_name} ordezkatu du", "undo" => "desegin", -"_Uploading %n file_::_Uploading %n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("Fitxategi %n igotzen","%n fitxategi igotzen"), "files uploading" => "fitxategiak igotzen", "'.' is an invalid file name." => "'.' ez da fitxategi izen baliogarria.", "File name cannot be empty." => "Fitxategi izena ezin da hutsa izan.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta.", "Your storage is full, files can not be updated or synced anymore!" => "Zure biltegiratzea beterik dago, ezingo duzu aurrerantzean fitxategirik igo edo sinkronizatu!", "Your storage is almost full ({usedSpacePercent}%)" => "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Enkriptazioa desgaitua izan da baina zure fitxategiak oraindik enkriptatuta daude. Mesedez jo zure ezarpen pertsonaletara zure fitxategiak dekodifikatzeko.", "Your download is being prepared. This might take some time if the files are big." => "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. ", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du", "Name" => "Izena", "Size" => "Tamaina", "Modified" => "Aldatuta", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), +"_%n folder_::_%n folders_" => array("karpeta %n","%n karpeta"), +"_%n file_::_%n files_" => array("fitxategi %n","%n fitxategi"), "%s could not be renamed" => "%s ezin da berrizendatu", "Upload" => "Igo", "File handling" => "Fitxategien kudeaketa", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 96332921cf..e0b9fe0281 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!", "Your storage is almost full ({usedSpacePercent}%)" => "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "نام پوشه نامعتبر است. استفاده از \" به اشتراک گذاشته شده \" متعلق به سایت Owncloud است.", "Name" => "نام", "Size" => "اندازه", "Modified" => "تاریخ", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 6006413449..44895eab28 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Votre espage de stockage est plein, les fichiers ne peuvent plus être téléversés ou synchronisés !", "Your storage is almost full ({usedSpacePercent}%)" => "Votre espace de stockage est presque plein ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud", "Name" => "Nom", "Size" => "Taille", "Modified" => "Modifié", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 98274ed751..c98263c08f 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -41,7 +41,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "O seu espazo de almacenamento está case cheo ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "O cifrado foi desactivado, mais os ficheiros están cifrados. Vaia á configuración persoal para descifrar os ficheiros.", "Your download is being prepared. This might take some time if the files are big." => "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome de cartafol incorrecto. O uso de «Shared» está reservado por Owncloud", "Name" => "Nome", "Size" => "Tamaño", "Modified" => "Modificado", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 63efe031da..e8d3b8c867 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "A tároló tele van, a fájlok nem frissíthetőek vagy szinkronizálhatóak a jövőben.", "Your storage is almost full ({usedSpacePercent}%)" => "A tároló majdnem tele van ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Érvénytelen mappanév. A név használata csak a Owncloud számára lehetséges.", "Name" => "Név", "Size" => "Méret", "Modified" => "Módosítva", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 0f7aac5a22..84d9ba2020 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -37,7 +37,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Ruang penyimpanan Anda penuh, berkas tidak dapat diperbarui atau disinkronkan lagi!", "Your storage is almost full ({usedSpacePercent}%)" => "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nama folder salah. Nama 'Shared' telah digunakan oleh Owncloud.", "Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index aee213691e..36116001bc 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "'.' is an invalid file name." => "'.' er ekki leyfilegt nafn.", "File name cannot be empty." => "Nafn skráar má ekki vera tómt", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud", "Name" => "Nafn", "Size" => "Stærð", "Modified" => "Breytt", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 3220a3efb6..9be317fba9 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -32,20 +32,20 @@ $TRANSLATIONS = array( "cancel" => "annulla", "replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}", "undo" => "annulla", -"_Uploading %n file_::_Uploading %n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("Caricamento di %n file in corso","Caricamento di %n file in corso"), "files uploading" => "caricamento file", "'.' is an invalid file name." => "'.' non è un nome file valido.", "File name cannot be empty." => "Il nome del file non può essere vuoto.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.", "Your storage is full, files can not be updated or synced anymore!" => "Lo spazio di archiviazione è pieno, i file non possono essere più aggiornati o sincronizzati!", "Your storage is almost full ({usedSpacePercent}%)" => "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "La cifratura è stata disabilitata ma i tuoi file sono ancora cifrati. Vai nelle impostazioni personali per decifrare i file.", "Your download is being prepared. This might take some time if the files are big." => "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud", "Name" => "Nome", "Size" => "Dimensione", "Modified" => "Modificato", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), +"_%n folder_::_%n folders_" => array("%n cartella","%n cartelle"), +"_%n file_::_%n files_" => array("%n file","%n file"), "%s could not be renamed" => "%s non può essere rinominato", "Upload" => "Carica", "File handling" => "Gestione file", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 2d64212a5f..902cc82e03 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -41,7 +41,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "あなたのストレージはほぼ一杯です({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。", "Your download is being prepared. This might take some time if the files are big." => "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。", "Name" => "名前", "Size" => "サイズ", "Modified" => "変更", diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index 3205255e39..3e70d3294c 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -37,7 +37,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "თქვენი საცავი გადაივსო. ფაილების განახლება და სინქრონიზირება ვერ მოხერხდება!", "Your storage is almost full ({usedSpacePercent}%)" => "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "დაუშვებელი ფოლდერის სახელი. 'Shared'–ის გამოყენება რეზერვირებულია Owncloud–ის მიერ", "Name" => "სახელი", "Size" => "ზომა", "Modified" => "შეცვლილია", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 7839ad3bd9..f53c9e8e38 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -37,7 +37,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "저장 공간이 가득 찼습니다. 파일을 업데이트하거나 동기화할 수 없습니다!", "Your storage is almost full ({usedSpacePercent}%)" => "저장 공간이 거의 가득 찼습니다 ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "다운로드가 준비 중입니다. 파일 크기가 크다면 시간이 오래 걸릴 수도 있습니다.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "폴더 이름이 유효하지 않습니다. ", "Name" => "이름", "Size" => "크기", "Modified" => "수정됨", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index cae9660ab6..a4dd5008af 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Jūsų visa vieta serveryje užimta", "Your storage is almost full ({usedSpacePercent}%)" => "Jūsų vieta serveryje beveik visa užimta ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunčiamas didelis failas.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Negalimas aplanko pavadinimas. 'Shared' pavadinimas yra rezervuotas ownCloud", "Name" => "Pavadinimas", "Size" => "Dydis", "Modified" => "Pakeista", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 9367b0f5a6..b1435b4609 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -41,7 +41,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifrēšana tika atslēgta, tomēr jūsu faili joprojām ir šifrēti. Atšifrēt failus var Personiskajos uzstādījumos.", "Your download is being prepared. This might take some time if the files are big." => "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nederīgs mapes nosaukums. “Koplietots” izmantojums ir rezervēts ownCloud servisam.", "Name" => "Nosaukums", "Size" => "Izmērs", "Modified" => "Mainīts", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index d76255f522..72c4153c6e 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Lagringsplass er oppbrukt, filer kan ikke lenger oppdateres eller synkroniseres!", "Your storage is almost full ({usedSpacePercent}%)" => "Lagringsplass er nesten brukt opp ([usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud.", "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Endret", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 6e9ff605f5..422fa8ba13 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -41,7 +41,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Encryptie is uitgeschakeld maar uw bestanden zijn nog steeds versleuteld. Ga naar uw persoonlijke instellingen om uw bestanden te decoderen.", "Your download is being prepared. This might take some time if the files are big." => "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud", "Name" => "Naam", "Size" => "Grootte", "Modified" => "Aangepast", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index 0f0ad31874..abaaa5ffe8 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Lagringa di er full, kan ikkje lenger oppdatera eller synkronisera!", "Your storage is almost full ({usedSpacePercent}%)" => "Lagringa di er nesten full ({usedSpacePercent} %)", "Your download is being prepared. This might take some time if the files are big." => "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ugyldig mappenamn. Mappa «Shared» er reservert av ownCloud", "Name" => "Namn", "Size" => "Storleik", "Modified" => "Endra", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 813d2ee8e7..d858248f29 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Magazyn jest pełny. Pliki nie mogą zostać zaktualizowane lub zsynchronizowane!", "Your storage is almost full ({usedSpacePercent}%)" => "Twój magazyn jest prawie pełny ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nieprawidłowa nazwa folderu. Korzystanie z nazwy „Shared” jest zarezerwowane dla ownCloud", "Name" => "Nazwa", "Size" => "Rozmiar", "Modified" => "Modyfikacja", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 575df89111..b42b81d040 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Seu armazenamento está cheio, arquivos não podem mais ser atualizados ou sincronizados!", "Your storage is almost full ({usedSpacePercent}%)" => "Seu armazenamento está quase cheio ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome de pasta inválido. O uso de 'Shared' é reservado para o Owncloud", "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 64110f6704..50a33de6db 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "O seu armazenamento está cheio, os ficheiros não podem ser sincronizados.", "Your storage is almost full ({usedSpacePercent}%)" => "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud", "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 85805cf562..7c78c6f076 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Spatiul de stocare este plin, nu mai puteti incarca s-au sincroniza alte fisiere.", "Your storage is almost full ({usedSpacePercent}%)" => "Spatiul de stocare este aproape plin ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Se pregătește descărcarea. Aceasta poate să dureze ceva timp dacă fișierele sunt mari.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Invalid folder name. Usage of 'Shared' is reserved by Ownclou", "Name" => "Nume", "Size" => "Dimensiune", "Modified" => "Modificat", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index fe771d2b57..782817be0a 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Ваше дисковое пространство полностью заполнено, произведите очистку перед загрузкой новых файлов.", "Your storage is almost full ({usedSpacePercent}%)" => "Ваше хранилище почти заполнено ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Загрузка началась. Это может потребовать много времени, если файл большого размера.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Неправильное имя каталога. Имя 'Shared' зарезервировано.", "Name" => "Имя", "Size" => "Размер", "Modified" => "Изменён", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 41ff4fe25d..9c84579448 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -41,7 +41,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložisko je takmer plné ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifrovanie bolo zakázané, ale vaše súbory sú stále zašifrované. Prosím, choďte do osobného nastavenia pre dešifrovanie súborov.", "Your download is being prepared. This might take some time if the files are big." => "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatné meno priečinka. Používanie mena 'Shared' je vyhradené len pre Owncloud", "Name" => "Názov", "Size" => "Veľkosť", "Modified" => "Upravené", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 9922a0be7e..79296c8049 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Shramba je povsem napolnjena. Datotek ni več mogoče posodabljati in usklajevati!", "Your storage is almost full ({usedSpacePercent}%)" => "Mesto za shranjevanje je skoraj polno ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datoteka zelo velika.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neveljavno ime mape. Uporaba oznake \"Souporaba\" je zadržan za sistem ownCloud.", "Name" => "Ime", "Size" => "Velikost", "Modified" => "Spremenjeno", diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index 34250b56c3..838bcc5ef2 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -37,7 +37,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Hapësira juaj e memorizimit është plot, nuk mund të ngarkoni apo sinkronizoni më skedarët.", "Your storage is almost full ({usedSpacePercent}%)" => "Hapësira juaj e memorizimit është gati plot ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Shkarkimi juaj po përgatitet. Mund të duhet pak kohë nqse skedarët janë të mëdhenj.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i rezervuar nga Owncloud-i.", "Name" => "Emri", "Size" => "Dimensioni", "Modified" => "Modifikuar", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index d73188d483..d4dcbd14ee 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -37,7 +37,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване.", "Your storage is almost full ({usedSpacePercent}%)" => "Ваше складиште је скоро па пуно ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Припремам преузимање. Ово може да потраје ако су датотеке велике.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Неисправно име фасцикле. Фасцикла „Shared“ је резервисана за ownCloud.", "Name" => "Име", "Size" => "Величина", "Modified" => "Измењено", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index d9010bc0f5..0f72443a5f 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -41,7 +41,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Kryptering inaktiverades men dina filer är fortfarande krypterade. Vänligen gå till sidan för dina personliga inställningar för att dekryptera dina filer.", "Your download is being prepared. This might take some time if the files are big." => "Din nedladdning förbereds. Det kan ta tid om det är stora filer.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud", "Name" => "Namn", "Size" => "Storlek", "Modified" => "Ändrad", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index c101398918..ac2da6aed9 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -36,7 +36,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "พื้นที่จัดเก็บข้อมูลของคุณเต็มแล้ว ไม่สามารถอัพเดทหรือผสานไฟล์ต่างๆได้อีกต่อไป", "Your storage is almost full ({usedSpacePercent}%)" => "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "ชื่อโฟลเดอร์ไม่ถูกต้อง การใช้งาน 'แชร์' สงวนไว้สำหรับ Owncloud เท่านั้น", "Name" => "ชื่อ", "Size" => "ขนาด", "Modified" => "แก้ไขแล้ว", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 661e8572e8..650e4ead88 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -41,7 +41,6 @@ $TRANSLATIONS = array( "Your storage is almost full ({usedSpacePercent}%)" => "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçiniz.", "Your download is being prepared. This might take some time if the files are big." => "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Geçersiz dizin adı. Shared isminin kullanımı Owncloud tarafından rezerver edilmiştir.", "Name" => "İsim", "Size" => "Boyut", "Modified" => "Değiştirilme", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index f34383d969..49747caef1 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -37,7 +37,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Ваше сховище переповнене, файли більше не можуть бути оновлені або синхронізовані !", "Your storage is almost full ({usedSpacePercent}%)" => "Ваше сховище майже повне ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Невірне ім'я теки. Використання \"Shared\" зарезервовано Owncloud", "Name" => "Ім'я", "Size" => "Розмір", "Modified" => "Змінено", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index ae5b152ed0..9c6e1c2a57 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -37,7 +37,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "Your storage is full, files can not be updated or synced anymore!", "Your storage is almost full ({usedSpacePercent}%)" => "Your storage is almost full ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Your download is being prepared. This might take some time if the files are big.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Invalid folder name. Usage of 'Shared' is reserved by Owncloud", "Name" => "Tên", "Size" => "Kích cỡ", "Modified" => "Thay đổi", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php deleted file mode 100644 index d031a1e5a5..0000000000 --- a/apps/files/l10n/zh_CN.GB2312.php +++ /dev/null @@ -1,80 +0,0 @@ - "无法移动 %s - 存在同名文件", -"Could not move %s" => "无法移动 %s", -"Unable to set upload directory." => "无法设置上传文件夹", -"Invalid Token" => "非法Token", -"No file was uploaded. Unknown error" => "没有上传文件。未知错误", -"There is no error, the file uploaded with success" => "文件上传成功", -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上传的文件超过了php.ini指定的upload_max_filesize", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了 HTML 表格中指定的 MAX_FILE_SIZE 选项", -"The uploaded file was only partially uploaded" => "文件部分上传", -"No file was uploaded" => "没有上传文件", -"Missing a temporary folder" => "缺失临时文件夹", -"Failed to write to disk" => "写磁盘失败", -"Not enough storage available" => "容量不足", -"Invalid directory." => "无效文件夹", -"Files" => "文件", -"Unable to upload your file as it is a directory or has 0 bytes" => "不能上传您的文件,由于它是文件夹或者为空文件", -"Not enough space available" => "容量不足", -"Upload cancelled." => "上传取消了", -"File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。", -"URL cannot be empty." => "网址不能为空。", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "无效文件夹名。“Shared”已经被系统保留。", -"Error" => "出错", -"Share" => "分享", -"Delete permanently" => "永久删除", -"Rename" => "重命名", -"Pending" => "等待中", -"{new_name} already exists" => "{new_name} 已存在", -"replace" => "替换", -"suggest name" => "推荐名称", -"cancel" => "取消", -"replaced {new_name} with {old_name}" => "已用 {old_name} 替换 {new_name}", -"undo" => "撤销", -"_Uploading %n file_::_Uploading %n files_" => array("正在上传 %n 个文件"), -"files uploading" => "个文件正在上传", -"'.' is an invalid file name." => "'.' 文件名不正确", -"File name cannot be empty." => "文件名不能为空", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "文件名内不能包含以下符号:\\ / < > : \" | ?和 *", -"Your storage is full, files can not be updated or synced anymore!" => "容量已满,不能再同步/上传文件了!", -"Your storage is almost full ({usedSpacePercent}%)" => "你的空间快用满了 ({usedSpacePercent}%)", -"Your download is being prepared. This might take some time if the files are big." => "正在下载,可能会花点时间,跟文件大小有关", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "不正确文件夹名。Shared是保留名,不能使用。", -"Name" => "名称", -"Size" => "大小", -"Modified" => "修改日期", -"_%n folder_::_%n folders_" => array("%n 个文件夹"), -"_%n file_::_%n files_" => array("%n 个文件"), -"%s could not be renamed" => "不能重命名 %s", -"Upload" => "上传", -"File handling" => "文件处理中", -"Maximum upload size" => "最大上传大小", -"max. possible: " => "最大可能", -"Needed for multi-file and folder downloads." => "需要多文件和文件夹下载.", -"Enable ZIP-download" => "支持ZIP下载", -"0 is unlimited" => "0是无限的", -"Maximum input size for ZIP files" => "最大的ZIP文件输入大小", -"Save" => "保存", -"New" => "新建", -"Text file" => "文本文档", -"Folder" => "文件夹", -"From link" => "来自链接", -"Deleted files" => "已删除的文件", -"Cancel upload" => "取消上传", -"You don’t have write permissions here." => "您没有写入权限。", -"Nothing in here. Upload something!" => "这里没有东西.上传点什么!", -"Download" => "下载", -"Unshare" => "取消分享", -"Delete" => "删除", -"Upload too large" => "上传过大", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "你正在试图上传的文件超过了此服务器支持的最大的文件大小.", -"Files are being scanned, please wait." => "正在扫描文件,请稍候.", -"Current scanning" => "正在扫描", -"directory" => "文件夹", -"directories" => "文件夹", -"file" => "文件", -"files" => "文件", -"Upgrading filesystem cache..." => "升级系统缓存..." -); -$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 495e9d9d9d..ad9733f059 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Your storage is full, files can not be updated or synced anymore!" => "您的存储空间已满,文件将无法更新或同步!", "Your storage is almost full ({usedSpacePercent}%)" => "您的存储空间即将用完 ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "下载正在准备中。如果文件较大可能会花费一些时间。", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。", "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index b96b02e5d9..5cca3e0fd8 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -32,20 +32,20 @@ $TRANSLATIONS = array( "cancel" => "取消", "replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}", "undo" => "復原", -"_Uploading %n file_::_Uploading %n files_" => array(""), +"_Uploading %n file_::_Uploading %n files_" => array("%n 個檔案正在上傳"), "files uploading" => "檔案正在上傳中", "'.' is an invalid file name." => "'.' 是不合法的檔名。", "File name cannot be empty." => "檔名不能為空。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。", "Your storage is full, files can not be updated or synced anymore!" => "您的儲存空間已滿,沒有辦法再更新或是同步檔案!", "Your storage is almost full ({usedSpacePercent}%)" => "您的儲存空間快要滿了 ({usedSpacePercent}%)", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "加密已經被停用,但是您的舊檔案還是處於已加密的狀態,請前往個人設定以解密這些檔案。", "Your download is being prepared. This might take some time if the files are big." => "正在準備您的下載,若您的檔案較大,將會需要更多時間。", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留", "Name" => "名稱", "Size" => "大小", "Modified" => "修改", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), +"_%n folder_::_%n folders_" => array("%n 個資料夾"), +"_%n file_::_%n files_" => array("%n 個檔案"), "%s could not be renamed" => "無法重新命名 %s", "Upload" => "上傳", "File handling" => "檔案處理", diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php index f2b1f142e9..7135ef9f65 100644 --- a/apps/files/lib/helper.php +++ b/apps/files/lib/helper.php @@ -11,7 +11,7 @@ class Helper $maxHumanFilesize = $l->t('Upload') . ' max. ' . $maxHumanFilesize; // information about storage capacities - $storageInfo = \OC_Helper::getStorageInfo(); + $storageInfo = \OC_Helper::getStorageInfo($dir); return array('uploadMaxFilesize' => $maxUploadFilesize, 'maxHumanFilesize' => $maxHumanFilesize, diff --git a/apps/files_encryption/l10n/zh_CN.GB2312.php b/apps/files_encryption/l10n/zh_CN.GB2312.php deleted file mode 100644 index 0f9f459c77..0000000000 --- a/apps/files_encryption/l10n/zh_CN.GB2312.php +++ /dev/null @@ -1,6 +0,0 @@ - "保存中...", -"Encryption" => "加密" -); -$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/3rdparty/Dropbox/API.php b/apps/files_external/3rdparty/Dropbox/API.php new file mode 100644 index 0000000000..8cdce678e1 --- /dev/null +++ b/apps/files_external/3rdparty/Dropbox/API.php @@ -0,0 +1,380 @@ +oauth = $oauth; + $this->root = $root; + $this->useSSL = $useSSL; + if (!$this->useSSL) + { + throw new Dropbox_Exception('Dropbox REST API now requires that all requests use SSL'); + } + + } + + /** + * Returns information about the current dropbox account + * + * @return stdclass + */ + public function getAccountInfo() { + + $data = $this->oauth->fetch($this->api_url . 'account/info'); + return json_decode($data['body'],true); + + } + + /** + * Returns a file's contents + * + * @param string $path path + * @param string $root Use this to override the default root path (sandbox/dropbox) + * @return string + */ + public function getFile($path = '', $root = null) { + + if (is_null($root)) $root = $this->root; + $path = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($path)); + $result = $this->oauth->fetch($this->api_content_url . 'files/' . $root . '/' . ltrim($path,'/')); + return $result['body']; + + } + + /** + * Uploads a new file + * + * @param string $path Target path (including filename) + * @param string $file Either a path to a file or a stream resource + * @param string $root Use this to override the default root path (sandbox/dropbox) + * @return bool + */ + public function putFile($path, $file, $root = null) { + + $directory = dirname($path); + $filename = basename($path); + + if($directory==='.') $directory = ''; + $directory = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($directory)); +// $filename = str_replace('~', '%7E', rawurlencode($filename)); + if (is_null($root)) $root = $this->root; + + if (is_string($file)) { + + $file = fopen($file,'rb'); + + } elseif (!is_resource($file)) { + throw new Dropbox_Exception('File must be a file-resource or a string'); + } + $result=$this->multipartFetch($this->api_content_url . 'files/' . + $root . '/' . trim($directory,'/'), $file, $filename); + + if(!isset($result["httpStatus"]) || $result["httpStatus"] != 200) + throw new Dropbox_Exception("Uploading file to Dropbox failed"); + + return true; + } + + + /** + * Copies a file or directory from one location to another + * + * This method returns the file information of the newly created file. + * + * @param string $from source path + * @param string $to destination path + * @param string $root Use this to override the default root path (sandbox/dropbox) + * @return stdclass + */ + public function copy($from, $to, $root = null) { + + if (is_null($root)) $root = $this->root; + $response = $this->oauth->fetch($this->api_url . 'fileops/copy', array('from_path' => $from, 'to_path' => $to, 'root' => $root), 'POST'); + + return json_decode($response['body'],true); + + } + + /** + * Creates a new folder + * + * This method returns the information from the newly created directory + * + * @param string $path + * @param string $root Use this to override the default root path (sandbox/dropbox) + * @return stdclass + */ + public function createFolder($path, $root = null) { + + if (is_null($root)) $root = $this->root; + + // Making sure the path starts with a / +// $path = '/' . ltrim($path,'/'); + + $response = $this->oauth->fetch($this->api_url . 'fileops/create_folder', array('path' => $path, 'root' => $root),'POST'); + return json_decode($response['body'],true); + + } + + /** + * Deletes a file or folder. + * + * This method will return the metadata information from the deleted file or folder, if successful. + * + * @param string $path Path to new folder + * @param string $root Use this to override the default root path (sandbox/dropbox) + * @return array + */ + public function delete($path, $root = null) { + + if (is_null($root)) $root = $this->root; + $response = $this->oauth->fetch($this->api_url . 'fileops/delete', array('path' => $path, 'root' => $root), 'POST'); + return json_decode($response['body']); + + } + + /** + * Moves a file or directory to a new location + * + * This method returns the information from the newly created directory + * + * @param mixed $from Source path + * @param mixed $to destination path + * @param string $root Use this to override the default root path (sandbox/dropbox) + * @return stdclass + */ + public function move($from, $to, $root = null) { + + if (is_null($root)) $root = $this->root; + $response = $this->oauth->fetch($this->api_url . 'fileops/move', array('from_path' => rawurldecode($from), 'to_path' => rawurldecode($to), 'root' => $root), 'POST'); + + return json_decode($response['body'],true); + + } + + /** + * Returns file and directory information + * + * @param string $path Path to receive information from + * @param bool $list When set to true, this method returns information from all files in a directory. When set to false it will only return infromation from the specified directory. + * @param string $hash If a hash is supplied, this method simply returns true if nothing has changed since the last request. Good for caching. + * @param int $fileLimit Maximum number of file-information to receive + * @param string $root Use this to override the default root path (sandbox/dropbox) + * @return array|true + */ + public function getMetaData($path, $list = true, $hash = null, $fileLimit = null, $root = null) { + + if (is_null($root)) $root = $this->root; + + $args = array( + 'list' => $list, + ); + + if (!is_null($hash)) $args['hash'] = $hash; + if (!is_null($fileLimit)) $args['file_limit'] = $fileLimit; + + $path = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($path)); + $response = $this->oauth->fetch($this->api_url . 'metadata/' . $root . '/' . ltrim($path,'/'), $args); + + /* 304 is not modified */ + if ($response['httpStatus']==304) { + return true; + } else { + return json_decode($response['body'],true); + } + + } + + /** + * A way of letting you keep up with changes to files and folders in a user's Dropbox. You can periodically call /delta to get a list of "delta entries", which are instructions on how to update your local state to match the server's state. + * + * This method returns the information from the newly created directory + * + * @param string $cursor A string that is used to keep track of your current state. On the next call pass in this value to return delta entries that have been recorded since the cursor was returned. + * @return stdclass + */ + public function delta($cursor) { + + $arg['cursor'] = $cursor; + + $response = $this->oauth->fetch($this->api_url . 'delta', $arg, 'POST'); + return json_decode($response['body'],true); + + } + + /** + * Returns a thumbnail (as a string) for a file path. + * + * @param string $path Path to file + * @param string $size small, medium or large + * @param string $root Use this to override the default root path (sandbox/dropbox) + * @return string + */ + public function getThumbnail($path, $size = 'small', $root = null) { + + if (is_null($root)) $root = $this->root; + $path = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($path)); + $response = $this->oauth->fetch($this->api_content_url . 'thumbnails/' . $root . '/' . ltrim($path,'/'),array('size' => $size)); + + return $response['body']; + + } + + /** + * This method is used to generate multipart POST requests for file upload + * + * @param string $uri + * @param array $arguments + * @return bool + */ + protected function multipartFetch($uri, $file, $filename) { + + /* random string */ + $boundary = 'R50hrfBj5JYyfR3vF3wR96GPCC9Fd2q2pVMERvEaOE3D8LZTgLLbRpNwXek3'; + + $headers = array( + 'Content-Type' => 'multipart/form-data; boundary=' . $boundary, + ); + + $body="--" . $boundary . "\r\n"; + $body.="Content-Disposition: form-data; name=file; filename=".rawurldecode($filename)."\r\n"; + $body.="Content-type: application/octet-stream\r\n"; + $body.="\r\n"; + $body.=stream_get_contents($file); + $body.="\r\n"; + $body.="--" . $boundary . "--"; + + // Dropbox requires the filename to also be part of the regular arguments, so it becomes + // part of the signature. + $uri.='?file=' . $filename; + + return $this->oauth->fetch($uri, $body, 'POST', $headers); + + } + + + /** + * Search + * + * Returns metadata for all files and folders that match the search query. + * + * @added by: diszo.sasil + * + * @param string $query + * @param string $root Use this to override the default root path (sandbox/dropbox) + * @param string $path + * @return array + */ + public function search($query = '', $root = null, $path = ''){ + if (is_null($root)) $root = $this->root; + if(!empty($path)){ + $path = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($path)); + } + $response = $this->oauth->fetch($this->api_url . 'search/' . $root . '/' . ltrim($path,'/'),array('query' => $query)); + return json_decode($response['body'],true); + } + + /** + * Creates and returns a shareable link to files or folders. + * + * Note: Links created by the /shares API call expire after thirty days. + * + * @param type $path + * @param type $root + * @return type + */ + public function share($path, $root = null) { + if (is_null($root)) $root = $this->root; + $path = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($path)); + $response = $this->oauth->fetch($this->api_url. 'shares/'. $root . '/' . ltrim($path, '/'), array(), 'POST'); + return json_decode($response['body'],true); + + } + + /** + * Returns a link directly to a file. + * Similar to /shares. The difference is that this bypasses the Dropbox webserver, used to provide a preview of the file, so that you can effectively stream the contents of your media. + * + * Note: The /media link expires after four hours, allotting enough time to stream files, but not enough to leave a connection open indefinitely. + * + * @param type $path + * @param type $root + * @return type + */ + public function media($path, $root = null) { + + if (is_null($root)) $root = $this->root; + $path = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($path)); + $response = $this->oauth->fetch($this->api_url. 'media/'. $root . '/' . ltrim($path, '/'), array(), 'POST'); + return json_decode($response['body'],true); + + } + + /** + * Creates and returns a copy_ref to a file. This reference string can be used to copy that file to another user's Dropbox by passing it in as the from_copy_ref parameter on /fileops/copy. + * + * @param type $path + * @param type $root + * @return type + */ + public function copy_ref($path, $root = null) { + + if (is_null($root)) $root = $this->root; + $path = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($path)); + $response = $this->oauth->fetch($this->api_url. 'copy_ref/'. $root . '/' . ltrim($path, '/')); + return json_decode($response['body'],true); + + } + + +} diff --git a/apps/files_external/3rdparty/Dropbox/Exception.php b/apps/files_external/3rdparty/Dropbox/Exception.php new file mode 100644 index 0000000000..50cbc4c791 --- /dev/null +++ b/apps/files_external/3rdparty/Dropbox/Exception.php @@ -0,0 +1,15 @@ +oauth_token = $token['token']; + $this->oauth_token_secret = $token['token_secret']; + } else { + $this->oauth_token = $token; + $this->oauth_token_secret = $token_secret; + } + + } + + /** + * Returns the oauth request tokens as an associative array. + * + * The array will contain the elements 'token' and 'token_secret'. + * + * @return array + */ + public function getToken() { + + return array( + 'token' => $this->oauth_token, + 'token_secret' => $this->oauth_token_secret, + ); + + } + + /** + * Returns the authorization url + * + * @param string $callBack Specify a callback url to automatically redirect the user back + * @return string + */ + public function getAuthorizeUrl($callBack = null) { + + // Building the redirect uri + $token = $this->getToken(); + $uri = self::URI_AUTHORIZE . '?oauth_token=' . $token['token']; + if ($callBack) $uri.='&oauth_callback=' . $callBack; + return $uri; + } + + /** + * Fetches a secured oauth url and returns the response body. + * + * @param string $uri + * @param mixed $arguments + * @param string $method + * @param array $httpHeaders + * @return string + */ + public abstract function fetch($uri, $arguments = array(), $method = 'GET', $httpHeaders = array()); + + /** + * Requests the OAuth request token. + * + * @return array + */ + abstract public function getRequestToken(); + + /** + * Requests the OAuth access tokens. + * + * @return array + */ + abstract public function getAccessToken(); + +} diff --git a/apps/files_external/3rdparty/Dropbox/OAuth/Consumer/Dropbox.php b/apps/files_external/3rdparty/Dropbox/OAuth/Consumer/Dropbox.php new file mode 100644 index 0000000000..204a659de0 --- /dev/null +++ b/apps/files_external/3rdparty/Dropbox/OAuth/Consumer/Dropbox.php @@ -0,0 +1,37 @@ +consumerRequest instanceof HTTP_OAuth_Consumer_Request) { + $this->consumerRequest = new HTTP_OAuth_Consumer_Request; + } + + // TODO: Change this and add in code to validate the SSL cert. + // see https://github.com/bagder/curl/blob/master/lib/mk-ca-bundle.pl + $this->consumerRequest->setConfig(array( + 'ssl_verify_peer' => false, + 'ssl_verify_host' => false + )); + + return $this->consumerRequest; + } +} diff --git a/apps/files_external/3rdparty/Dropbox/OAuth/Curl.php b/apps/files_external/3rdparty/Dropbox/OAuth/Curl.php new file mode 100644 index 0000000000..b75b27bb36 --- /dev/null +++ b/apps/files_external/3rdparty/Dropbox/OAuth/Curl.php @@ -0,0 +1,282 @@ +consumerKey = $consumerKey; + $this->consumerSecret = $consumerSecret; + } + + /** + * Fetches a secured oauth url and returns the response body. + * + * @param string $uri + * @param mixed $arguments + * @param string $method + * @param array $httpHeaders + * @return string + */ + public function fetch($uri, $arguments = array(), $method = 'GET', $httpHeaders = array()) { + + $uri=str_replace('http://', 'https://', $uri); // all https, upload makes problems if not + if (is_string($arguments) and strtoupper($method) == 'POST') { + preg_match("/\?file=(.*)$/i", $uri, $matches); + if (isset($matches[1])) { + $uri = str_replace($matches[0], "", $uri); + $filename = $matches[1]; + $httpHeaders=array_merge($httpHeaders,$this->getOAuthHeader($uri, array("file" => $filename), $method)); + } + } else { + $httpHeaders=array_merge($httpHeaders,$this->getOAuthHeader($uri, $arguments, $method)); + } + $ch = curl_init(); + if (strtoupper($method) == 'POST') { + curl_setopt($ch, CURLOPT_URL, $uri); + curl_setopt($ch, CURLOPT_POST, true); +// if (is_array($arguments)) +// $arguments=http_build_query($arguments); + curl_setopt($ch, CURLOPT_POSTFIELDS, $arguments); +// $httpHeaders['Content-Length']=strlen($arguments); + } else { + curl_setopt($ch, CURLOPT_URL, $uri.'?'.http_build_query($arguments)); + curl_setopt($ch, CURLOPT_POST, false); + } + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + curl_setopt($ch, CURLOPT_TIMEOUT, 300); + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true); + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); +// curl_setopt($ch, CURLOPT_CAINFO, "rootca"); + curl_setopt($ch, CURLOPT_FRESH_CONNECT, true); + //Build header + $headers = array(); + foreach ($httpHeaders as $name => $value) { + $headers[] = "{$name}: $value"; + } + curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); + if (!ini_get('safe_mode') && !ini_get('open_basedir')) + curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true ); + if (function_exists($this->ProgressFunction) and defined('CURLOPT_PROGRESSFUNCTION')) { + curl_setopt($ch, CURLOPT_NOPROGRESS, false); + curl_setopt($ch, CURLOPT_PROGRESSFUNCTION, $this->ProgressFunction); + curl_setopt($ch, CURLOPT_BUFFERSIZE, 512); + } + $response=curl_exec($ch); + $errorno=curl_errno($ch); + $error=curl_error($ch); + $status=curl_getinfo($ch,CURLINFO_HTTP_CODE); + curl_close($ch); + + + if (!empty($errorno)) + throw new Dropbox_Exception_NotFound('Curl error: ('.$errorno.') '.$error."\n"); + + if ($status>=300) { + $body = json_decode($response,true); + switch ($status) { + // Not modified + case 304 : + return array( + 'httpStatus' => 304, + 'body' => null, + ); + break; + case 403 : + throw new Dropbox_Exception_Forbidden('Forbidden. + This could mean a bad OAuth request, or a file or folder already existing at the target location. + ' . $body["error"] . "\n"); + case 404 : + throw new Dropbox_Exception_NotFound('Resource at uri: ' . $uri . ' could not be found. ' . + $body["error"] . "\n"); + case 507 : + throw new Dropbox_Exception_OverQuota('This dropbox is full. ' . + $body["error"] . "\n"); + } + if (!empty($body["error"])) + throw new Dropbox_Exception_RequestToken('Error: ('.$status.') '.$body["error"]."\n"); + } + + return array( + 'body' => $response, + 'httpStatus' => $status + ); + } + + /** + * Returns named array with oauth parameters for further use + * @return array Array with oauth_ parameters + */ + private function getOAuthBaseParams() { + $params['oauth_version'] = '1.0'; + $params['oauth_signature_method'] = 'HMAC-SHA1'; + + $params['oauth_consumer_key'] = $this->consumerKey; + $tokens = $this->getToken(); + if (isset($tokens['token']) && $tokens['token']) { + $params['oauth_token'] = $tokens['token']; + } + $params['oauth_timestamp'] = time(); + $params['oauth_nonce'] = md5(microtime() . mt_rand()); + return $params; + } + + /** + * Creates valid Authorization header for OAuth, based on URI and Params + * + * @param string $uri + * @param array $params + * @param string $method GET or POST, standard is GET + * @param array $oAuthParams optional, pass your own oauth_params here + * @return array Array for request's headers section like + * array('Authorization' => 'OAuth ...'); + */ + private function getOAuthHeader($uri, $params, $method = 'GET', $oAuthParams = null) { + $oAuthParams = $oAuthParams ? $oAuthParams : $this->getOAuthBaseParams(); + + // create baseString to encode for the sent parameters + $baseString = $method . '&'; + $baseString .= $this->oauth_urlencode($uri) . "&"; + + // OAuth header does not include GET-Parameters + $signatureParams = array_merge($params, $oAuthParams); + + // sorting the parameters + ksort($signatureParams); + + $encodedParams = array(); + foreach ($signatureParams as $key => $value) { + $encodedParams[] = $this->oauth_urlencode($key) . '=' . $this->oauth_urlencode($value); + } + + $baseString .= $this->oauth_urlencode(implode('&', $encodedParams)); + + // encode the signature + $tokens = $this->getToken(); + $hash = $this->hash_hmac_sha1($this->consumerSecret.'&'.$tokens['token_secret'], $baseString); + $signature = base64_encode($hash); + + // add signature to oAuthParams + $oAuthParams['oauth_signature'] = $signature; + + $oAuthEncoded = array(); + foreach ($oAuthParams as $key => $value) { + $oAuthEncoded[] = $key . '="' . $this->oauth_urlencode($value) . '"'; + } + + return array('Authorization' => 'OAuth ' . implode(', ', $oAuthEncoded)); + } + + /** + * Requests the OAuth request token. + * + * @return void + */ + public function getRequestToken() { + $result = $this->fetch(self::URI_REQUEST_TOKEN, array(), 'POST'); + if ($result['httpStatus'] == "200") { + $tokens = array(); + parse_str($result['body'], $tokens); + $this->setToken($tokens['oauth_token'], $tokens['oauth_token_secret']); + return $this->getToken(); + } else { + throw new Dropbox_Exception_RequestToken('We were unable to fetch request tokens. This likely means that your consumer key and/or secret are incorrect.'); + } + } + + /** + * Requests the OAuth access tokens. + * + * This method requires the 'unauthorized' request tokens + * and, if successful will set the authorized request tokens. + * + * @return void + */ + public function getAccessToken() { + $result = $this->fetch(self::URI_ACCESS_TOKEN, array(), 'POST'); + if ($result['httpStatus'] == "200") { + $tokens = array(); + parse_str($result['body'], $tokens); + $this->setToken($tokens['oauth_token'], $tokens['oauth_token_secret']); + return $this->getToken(); + } else { + throw new Dropbox_Exception_RequestToken('We were unable to fetch request tokens. This likely means that your consumer key and/or secret are incorrect.'); + } + } + + /** + * Helper function to properly urlencode parameters. + * See http://php.net/manual/en/function.oauth-urlencode.php + * + * @param string $string + * @return string + */ + private function oauth_urlencode($string) { + return str_replace('%E7', '~', rawurlencode($string)); + } + + /** + * Hash function for hmac_sha1; uses native function if available. + * + * @param string $key + * @param string $data + * @return string + */ + private function hash_hmac_sha1($key, $data) { + if (function_exists('hash_hmac') && in_array('sha1', hash_algos())) { + return hash_hmac('sha1', $data, $key, true); + } else { + $blocksize = 64; + $hashfunc = 'sha1'; + if (strlen($key) > $blocksize) { + $key = pack('H*', $hashfunc($key)); + } + + $key = str_pad($key, $blocksize, chr(0x00)); + $ipad = str_repeat(chr(0x36), $blocksize); + $opad = str_repeat(chr(0x5c), $blocksize); + $hash = pack('H*', $hashfunc(( $key ^ $opad ) . pack('H*', $hashfunc(($key ^ $ipad) . $data)))); + + return $hash; + } + } + + +} \ No newline at end of file diff --git a/apps/files_external/3rdparty/Dropbox/README.md b/apps/files_external/3rdparty/Dropbox/README.md new file mode 100644 index 0000000000..54e05db762 --- /dev/null +++ b/apps/files_external/3rdparty/Dropbox/README.md @@ -0,0 +1,31 @@ +Dropbox-php +=========== + +This PHP library allows you to easily integrate dropbox with PHP. + +The following PHP extension is required: + +* json + +The library makes use of OAuth. At the moment you can use either of these libraries: + +[PHP OAuth extension](http://pecl.php.net/package/oauth) +[PEAR's HTTP_OAUTH package](http://pear.php.net/package/http_oauth) + +The extension is recommended, but if you can't install php extensions you should go for the pear package. +Installing +---------- + + pear channel-discover pear.dropbox-php.com + pear install dropbox-php/Dropbox-alpha + +Documentation +------------- +Check out the [documentation](http://www.dropbox-php.com/docs). + +Questions? +---------- + +[Dropbox-php Mailing list](http://groups.google.com/group/dropbox-php) +[Official Dropbox developer forum](http://forums.dropbox.com/forum.php?id=5) + diff --git a/apps/files_external/3rdparty/Dropbox/autoload.php b/apps/files_external/3rdparty/Dropbox/autoload.php new file mode 100644 index 0000000000..5388ea6334 --- /dev/null +++ b/apps/files_external/3rdparty/Dropbox/autoload.php @@ -0,0 +1,29 @@ + +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +################################################################### + +define ('SMB4PHP_VERSION', '0.8'); + +################################################################### +# CONFIGURATION SECTION - Change for your needs +################################################################### + +define ('SMB4PHP_SMBCLIENT', 'smbclient'); +define ('SMB4PHP_SMBOPTIONS', 'TCP_NODELAY IPTOS_LOWDELAY SO_KEEPALIVE SO_RCVBUF=8192 SO_SNDBUF=8192'); +define ('SMB4PHP_AUTHMODE', 'arg'); # set to 'env' to use USER enviroment variable + +################################################################### +# SMB - commands that does not need an instance +################################################################### + +$GLOBALS['__smb_cache'] = array ('stat' => array (), 'dir' => array ()); + +class smb { + + function parse_url ($url) { + $pu = parse_url (trim($url)); + foreach (array ('domain', 'user', 'pass', 'host', 'port', 'path') as $i) { + if (! isset($pu[$i])) { + $pu[$i] = ''; + } + } + if (count ($userdomain = explode (';', urldecode ($pu['user']))) > 1) { + @list ($pu['domain'], $pu['user']) = $userdomain; + } + $path = preg_replace (array ('/^\//', '/\/$/'), '', urldecode ($pu['path'])); + list ($pu['share'], $pu['path']) = (preg_match ('/^([^\/]+)\/(.*)/', $path, $regs)) + ? array ($regs[1], preg_replace ('/\//', '\\', $regs[2])) + : array ($path, ''); + $pu['type'] = $pu['path'] ? 'path' : ($pu['share'] ? 'share' : ($pu['host'] ? 'host' : '**error**')); + if (! ($pu['port'] = intval(@$pu['port']))) { + $pu['port'] = 139; + } + + // decode user and password + $pu['user'] = urldecode($pu['user']); + $pu['pass'] = urldecode($pu['pass']); + return $pu; + } + + + function look ($purl) { + return smb::client ('-L ' . escapeshellarg ($purl['host']), $purl); + } + + + function execute ($command, $purl) { + return smb::client ('-d 0 ' + . escapeshellarg ('//' . $purl['host'] . '/' . $purl['share']) + . ' -c ' . escapeshellarg ($command), $purl + ); + } + + function client ($params, $purl) { + + static $regexp = array ( + '^added interface ip=(.*) bcast=(.*) nmask=(.*)$' => 'skip', + 'Anonymous login successful' => 'skip', + '^Domain=\[(.*)\] OS=\[(.*)\] Server=\[(.*)\]$' => 'skip', + '^\tSharename[ ]+Type[ ]+Comment$' => 'shares', + '^\t---------[ ]+----[ ]+-------$' => 'skip', + '^\tServer [ ]+Comment$' => 'servers', + '^\t---------[ ]+-------$' => 'skip', + '^\tWorkgroup[ ]+Master$' => 'workg', + '^\t(.*)[ ]+(Disk|IPC)[ ]+IPC.*$' => 'skip', + '^\tIPC\\\$(.*)[ ]+IPC' => 'skip', + '^\t(.*)[ ]+(Disk)[ ]+(.*)$' => 'share', + '^\t(.*)[ ]+(Printer)[ ]+(.*)$' => 'skip', + '([0-9]+) blocks of size ([0-9]+)\. ([0-9]+) blocks available' => 'skip', + 'Got a positive name query response from ' => 'skip', + '^(session setup failed): (.*)$' => 'error', + '^(.*): ERRSRV - ERRbadpw' => 'error', + '^Error returning browse list: (.*)$' => 'error', + '^tree connect failed: (.*)$' => 'error', + '^(Connection to .* failed)(.*)$' => 'error-connect', + '^NT_STATUS_(.*) ' => 'error', + '^NT_STATUS_(.*)\$' => 'error', + 'ERRDOS - ERRbadpath \((.*).\)' => 'error', + 'cd (.*): (.*)$' => 'error', + '^cd (.*): NT_STATUS_(.*)' => 'error', + '^\t(.*)$' => 'srvorwg', + '^([0-9]+)[ ]+([0-9]+)[ ]+(.*)$' => 'skip', + '^Job ([0-9]+) cancelled' => 'skip', + '^[ ]+(.*)[ ]+([0-9]+)[ ]+(Mon|Tue|Wed|Thu|Fri|Sat|Sun)[ ](Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)[ ]+([0-9]+)[ ]+([0-9]{2}:[0-9]{2}:[0-9]{2})[ ]([0-9]{4})$' => 'files', + '^message start: ERRSRV - (ERRmsgoff)' => 'error' + ); + + if (SMB4PHP_AUTHMODE == 'env') { + putenv("USER={$purl['user']}%{$purl['pass']}"); + $auth = ''; + } else { + $auth = ($purl['user'] <> '' ? (' -U ' . escapeshellarg ($purl['user'] . '%' . $purl['pass'])) : ''); + } + if ($purl['domain'] <> '') { + $auth .= ' -W ' . escapeshellarg ($purl['domain']); + } + $port = ($purl['port'] <> 139 ? ' -p ' . escapeshellarg ($purl['port']) : ''); + $options = '-O ' . escapeshellarg(SMB4PHP_SMBOPTIONS); + + // this put env is necessary to read the output of smbclient correctly + $old_locale = getenv('LC_ALL'); + putenv('LC_ALL=en_US.UTF-8'); + $output = popen (SMB4PHP_SMBCLIENT." -N {$auth} {$options} {$port} {$options} {$params} 2>/dev/null", 'r'); + $info = array (); + $info['info']= array (); + $mode = ''; + while ($line = fgets ($output, 4096)) { + list ($tag, $regs, $i) = array ('skip', array (), array ()); + reset ($regexp); + foreach ($regexp as $r => $t) if (preg_match ('/'.$r.'/', $line, $regs)) { + $tag = $t; + break; + } + switch ($tag) { + case 'skip': continue; + case 'shares': $mode = 'shares'; break; + case 'servers': $mode = 'servers'; break; + case 'workg': $mode = 'workgroups'; break; + case 'share': + list($name, $type) = array ( + trim(substr($line, 1, 15)), + trim(strtolower(substr($line, 17, 10))) + ); + $i = ($type <> 'disk' && preg_match('/^(.*) Disk/', $line, $regs)) + ? array(trim($regs[1]), 'disk') + : array($name, 'disk'); + break; + case 'srvorwg': + list ($name, $master) = array ( + strtolower(trim(substr($line,1,21))), + strtolower(trim(substr($line, 22))) + ); + $i = ($mode == 'servers') ? array ($name, "server") : array ($name, "workgroup", $master); + break; + case 'files': + list ($attr, $name) = preg_match ("/^(.*)[ ]+([D|A|H|S|R]+)$/", trim ($regs[1]), $regs2) + ? array (trim ($regs2[2]), trim ($regs2[1])) + : array ('', trim ($regs[1])); + list ($his, $im) = array ( + explode(':', $regs[6]), 1 + strpos("JanFebMarAprMayJunJulAugSepOctNovDec", $regs[4]) / 3); + $i = ($name <> '.' && $name <> '..') + ? array ( + $name, + (strpos($attr,'D') === FALSE) ? 'file' : 'folder', + 'attr' => $attr, + 'size' => intval($regs[2]), + 'time' => mktime ($his[0], $his[1], $his[2], $im, $regs[5], $regs[7]) + ) + : array(); + break; + case 'error': + if(substr($regs[0],0,22)=='NT_STATUS_NO_SUCH_FILE'){ + return false; + }elseif(substr($regs[0],0,31)=='NT_STATUS_OBJECT_NAME_COLLISION'){ + return false; + }elseif(substr($regs[0],0,31)=='NT_STATUS_OBJECT_PATH_NOT_FOUND'){ + return false; + }elseif(substr($regs[0],0,29)=='NT_STATUS_FILE_IS_A_DIRECTORY'){ + return false; + } + trigger_error($regs[0].' params('.$params.')', E_USER_ERROR); + case 'error-connect': + return false; + } + if ($i) switch ($i[1]) { + case 'file': + case 'folder': $info['info'][$i[0]] = $i; + case 'disk': + case 'server': + case 'workgroup': $info[$i[1]][] = $i[0]; + } + } + pclose($output); + + + // restore previous locale + if ($old_locale===false) { + putenv('LC_ALL'); + } else { + putenv('LC_ALL='.$old_locale); + } + + return $info; + } + + + # stats + + function url_stat ($url, $flags = STREAM_URL_STAT_LINK) { + if ($s = smb::getstatcache($url)) { + return $s; + } + list ($stat, $pu) = array (false, smb::parse_url ($url)); + switch ($pu['type']) { + case 'host': + if ($o = smb::look ($pu)) + $stat = stat ("/tmp"); + else + trigger_error ("url_stat(): list failed for host '{$pu['host']}'", E_USER_WARNING); + break; + case 'share': + if ($o = smb::look ($pu)) { + $found = FALSE; + $lshare = strtolower ($pu['share']); # fix by Eric Leung + foreach ($o['disk'] as $s) if ($lshare == strtolower($s)) { + $found = TRUE; + $stat = stat ("/tmp"); + break; + } + if (! $found) + trigger_error ("url_stat(): disk resource '{$lshare}' not found in '{$pu['host']}'", E_USER_WARNING); + } + break; + case 'path': + if ($o = smb::execute ('dir "'.$pu['path'].'"', $pu)) { + $p = explode('\\', $pu['path']); + $name = $p[count($p)-1]; + if (isset ($o['info'][$name])) { + $stat = smb::addstatcache ($url, $o['info'][$name]); + } else { + trigger_error ("url_stat(): path '{$pu['path']}' not found", E_USER_WARNING); + } + } else { + return false; +// trigger_error ("url_stat(): dir failed for path '{$pu['path']}'", E_USER_WARNING); + } + break; + default: trigger_error ('error in URL', E_USER_ERROR); + } + return $stat; + } + + function addstatcache ($url, $info) { + $url = str_replace('//', '/', $url); + $url = rtrim($url, '/'); + global $__smb_cache; + $is_file = (strpos ($info['attr'],'D') === FALSE); + $s = ($is_file) ? stat ('/etc/passwd') : stat ('/tmp'); + $s[7] = $s['size'] = $info['size']; + $s[8] = $s[9] = $s[10] = $s['atime'] = $s['mtime'] = $s['ctime'] = $info['time']; + return $__smb_cache['stat'][$url] = $s; + } + + function getstatcache ($url) { + $url = str_replace('//', '/', $url); + $url = rtrim($url, '/'); + global $__smb_cache; + return isset ($__smb_cache['stat'][$url]) ? $__smb_cache['stat'][$url] : FALSE; + } + + function clearstatcache ($url='') { + $url = str_replace('//', '/', $url); + $url = rtrim($url, '/'); + global $__smb_cache; + if ($url == '') $__smb_cache['stat'] = array (); else unset ($__smb_cache['stat'][$url]); + } + + + # commands + + function unlink ($url) { + $pu = smb::parse_url($url); + if ($pu['type'] <> 'path') trigger_error('unlink(): error in URL', E_USER_ERROR); + smb::clearstatcache ($url); + smb_stream_wrapper::cleardircache (dirname($url)); + return smb::execute ('del "'.$pu['path'].'"', $pu); + } + + function rename ($url_from, $url_to) { + list ($from, $to) = array (smb::parse_url($url_from), smb::parse_url($url_to)); + if ($from['host'] <> $to['host'] || + $from['share'] <> $to['share'] || + $from['user'] <> $to['user'] || + $from['pass'] <> $to['pass'] || + $from['domain'] <> $to['domain']) { + trigger_error('rename(): FROM & TO must be in same server-share-user-pass-domain', E_USER_ERROR); + } + if ($from['type'] <> 'path' || $to['type'] <> 'path') { + trigger_error('rename(): error in URL', E_USER_ERROR); + } + smb::clearstatcache ($url_from); + return smb::execute ('rename "'.$from['path'].'" "'.$to['path'].'"', $to); + } + + function mkdir ($url, $mode, $options) { + $pu = smb::parse_url($url); + if ($pu['type'] <> 'path') trigger_error('mkdir(): error in URL', E_USER_ERROR); + return smb::execute ('mkdir "'.$pu['path'].'"', $pu)!==false; + } + + function rmdir ($url) { + $pu = smb::parse_url($url); + if ($pu['type'] <> 'path') trigger_error('rmdir(): error in URL', E_USER_ERROR); + smb::clearstatcache ($url); + smb_stream_wrapper::cleardircache (dirname($url)); + return smb::execute ('rmdir "'.$pu['path'].'"', $pu)!==false; + } + +} + +################################################################### +# SMB_STREAM_WRAPPER - class to be registered for smb:// URLs +################################################################### + +class smb_stream_wrapper extends smb { + + # variables + + private $stream, $url, $parsed_url = array (), $mode, $tmpfile; + private $need_flush = FALSE; + private $dir = array (), $dir_index = -1; + + + # directories + + function dir_opendir ($url, $options) { + if ($d = $this->getdircache ($url)) { + $this->dir = $d; + $this->dir_index = 0; + return TRUE; + } + $pu = smb::parse_url ($url); + switch ($pu['type']) { + case 'host': + if ($o = smb::look ($pu)) { + $this->dir = $o['disk']; + $this->dir_index = 0; + } else { + trigger_error ("dir_opendir(): list failed for host '{$pu['host']}'", E_USER_WARNING); + return false; + } + break; + case 'share': + case 'path': + if (is_array($o = smb::execute ('dir "'.$pu['path'].'\*"', $pu))) { + $this->dir = array_keys($o['info']); + $this->dir_index = 0; + $this->adddircache ($url, $this->dir); + if(substr($url,-1,1)=='/'){ + $url=substr($url,0,-1); + } + foreach ($o['info'] as $name => $info) { + smb::addstatcache($url . '/' . $name, $info); + } + } else { + trigger_error ("dir_opendir(): dir failed for path '".$pu['path']."'", E_USER_WARNING); + return false; + } + break; + default: + trigger_error ('dir_opendir(): error in URL', E_USER_ERROR); + return false; + } + return TRUE; + } + + function dir_readdir () { + return ($this->dir_index < count($this->dir)) ? $this->dir[$this->dir_index++] : FALSE; + } + + function dir_rewinddir () { $this->dir_index = 0; } + + function dir_closedir () { $this->dir = array(); $this->dir_index = -1; return TRUE; } + + + # cache + + function adddircache ($url, $content) { + $url = str_replace('//', '/', $url); + $url = rtrim($url, '/'); + global $__smb_cache; + return $__smb_cache['dir'][$url] = $content; + } + + function getdircache ($url) { + $url = str_replace('//', '/', $url); + $url = rtrim($url, '/'); + global $__smb_cache; + return isset ($__smb_cache['dir'][$url]) ? $__smb_cache['dir'][$url] : FALSE; + } + + function cleardircache ($url='') { + $url = str_replace('//', '/', $url); + $url = rtrim($url, '/'); + global $__smb_cache; + if ($url == ''){ + $__smb_cache['dir'] = array (); + }else{ + unset ($__smb_cache['dir'][$url]); + } + } + + + # streams + + function stream_open ($url, $mode, $options, $opened_path) { + $this->url = $url; + $this->mode = $mode; + $this->parsed_url = $pu = smb::parse_url($url); + if ($pu['type'] <> 'path') trigger_error('stream_open(): error in URL', E_USER_ERROR); + switch ($mode) { + case 'r': + case 'r+': + case 'rb': + case 'a': + case 'a+': $this->tmpfile = tempnam('/tmp', 'smb.down.'); + smb::execute ('get "'.$pu['path'].'" "'.$this->tmpfile.'"', $pu); + break; + case 'w': + case 'w+': + case 'wb': + case 'x': + case 'x+': $this->cleardircache(); + $this->tmpfile = tempnam('/tmp', 'smb.up.'); + $this->need_flush=true; + } + $this->stream = fopen ($this->tmpfile, $mode); + return TRUE; + } + + function stream_close () { return fclose($this->stream); } + + function stream_read ($count) { return fread($this->stream, $count); } + + function stream_write ($data) { $this->need_flush = TRUE; return fwrite($this->stream, $data); } + + function stream_eof () { return feof($this->stream); } + + function stream_tell () { return ftell($this->stream); } + + function stream_seek ($offset, $whence=null) { return fseek($this->stream, $offset, $whence); } + + function stream_flush () { + if ($this->mode <> 'r' && $this->need_flush) { + smb::clearstatcache ($this->url); + smb::execute ('put "'.$this->tmpfile.'" "'.$this->parsed_url['path'].'"', $this->parsed_url); + $this->need_flush = FALSE; + } + } + + function stream_stat () { return smb::url_stat ($this->url); } + + function __destruct () { + if ($this->tmpfile <> '') { + if ($this->need_flush) $this->stream_flush (); + unlink ($this->tmpfile); + + } + } + +} + +################################################################### +# Register 'smb' protocol ! +################################################################### + +stream_wrapper_register('smb', 'smb_stream_wrapper') + or die ('Failed to register protocol'); diff --git a/apps/files_external/l10n/zh_CN.GB2312.php b/apps/files_external/l10n/zh_CN.GB2312.php deleted file mode 100644 index 3633de6314..0000000000 --- a/apps/files_external/l10n/zh_CN.GB2312.php +++ /dev/null @@ -1,28 +0,0 @@ - "已授予权限", -"Error configuring Dropbox storage" => "配置 Dropbox 存储出错", -"Grant access" => "授予权限", -"Please provide a valid Dropbox app key and secret." => "请提供一个有效的 Dropbox app key 和 secret。", -"Error configuring Google Drive storage" => "配置 Google Drive 存储失败", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "注意:“SMB客户端”未安装。CIFS/SMB分享不可用。请向您的系统管理员请求安装该客户端。", -"Warning: 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." => "注意:PHP的FTP支持尚未启用或未安装。FTP分享不可用。请向您的系统管理员请求安装。", -"Warning: 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." => "警告: PHP 的 Curl 支持没有安装或打开。挂载 ownCloud、WebDAV 或 Google Drive 的功能将不可用。请询问您的系统管理员去安装它。", -"External Storage" => "外部存储", -"Folder name" => "文件夹名", -"External storage" => "外部存储", -"Configuration" => "配置", -"Options" => "选项", -"Applicable" => "可应用", -"Add storage" => "扩容", -"None set" => "未设置", -"All Users" => "所有用户", -"Groups" => "群组", -"Users" => "用户", -"Delete" => "删除", -"Enable User External Storage" => "启用用户外部存储", -"Allow users to mount their own external storage" => "允许用户挂载他们的外部存储", -"SSL root certificates" => "SSL 根证书", -"Import Root Certificate" => "导入根证书" -); -$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/lib/dropbox.php b/apps/files_external/lib/dropbox.php index 081c547888..b6deab6e5a 100755 --- a/apps/files_external/lib/dropbox.php +++ b/apps/files_external/lib/dropbox.php @@ -22,7 +22,7 @@ namespace OC\Files\Storage; -require_once 'Dropbox/autoload.php'; +require_once __DIR__ . '/../3rdparty/Dropbox/autoload.php'; class Dropbox extends \OC\Files\Storage\Common { diff --git a/apps/files_external/lib/smb.php b/apps/files_external/lib/smb.php index dc4e02731f..8e7a28fba1 100644 --- a/apps/files_external/lib/smb.php +++ b/apps/files_external/lib/smb.php @@ -8,7 +8,7 @@ namespace OC\Files\Storage; -require_once 'smb4php/smb.php'; +require_once __DIR__ . '/../3rdparty/smb4php/smb.php'; class SMB extends \OC\Files\Storage\StreamWrapper{ private $password; diff --git a/apps/files_sharing/l10n/eu.php b/apps/files_sharing/l10n/eu.php index 8e13c24a92..7b6a4b08b3 100644 --- a/apps/files_sharing/l10n/eu.php +++ b/apps/files_sharing/l10n/eu.php @@ -3,6 +3,12 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Pasahitza ez da egokia. Saiatu berriro.", "Password" => "Pasahitza", "Submit" => "Bidali", +"Sorry, this link doesn’t seem to work anymore." => "Barkatu, lotura ez dirudi eskuragarria dagoenik.", +"Reasons might be:" => "Arrazoiak hurrengoak litezke:", +"the item was removed" => "fitxategia ezbatua izan da", +"the link expired" => "lotura iraungi da", +"sharing is disabled" => "elkarbanatzea ez dago gaituta", +"For more info, please ask the person who sent this link." => "Informazio gehiagorako, mesedez eskatu lotura hau bidali zuen pertsonari", "%s shared the folder %s with you" => "%sk zurekin %s karpeta elkarbanatu du", "%s shared the file %s with you" => "%sk zurekin %s fitxategia elkarbanatu du", "Download" => "Deskargatu", diff --git a/apps/files_sharing/l10n/zh_CN.GB2312.php b/apps/files_sharing/l10n/zh_CN.GB2312.php deleted file mode 100644 index 5c426672c8..0000000000 --- a/apps/files_sharing/l10n/zh_CN.GB2312.php +++ /dev/null @@ -1,19 +0,0 @@ - "密码错误。请重试。", -"Password" => "密码", -"Submit" => "提交", -"Sorry, this link doesn’t seem to work anymore." => "对不起,这个链接看起来是错误的。", -"Reasons might be:" => "原因可能是:", -"the item was removed" => "项目已经移除", -"the link expired" => "链接已过期", -"sharing is disabled" => "分享已经被禁用", -"For more info, please ask the person who sent this link." => "欲了解更多信息,请联系将此链接发送给你的人。", -"%s shared the folder %s with you" => "%s 与您分享了文件夹 %s", -"%s shared the file %s with you" => "%s 与您分享了文件 %s", -"Download" => "下载", -"Upload" => "上传", -"Cancel upload" => "取消上传", -"No preview available for" => "没有预览可用于" -); -$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/zh_TW.php b/apps/files_sharing/l10n/zh_TW.php index b950cbf8c9..56d67ea7ce 100644 --- a/apps/files_sharing/l10n/zh_TW.php +++ b/apps/files_sharing/l10n/zh_TW.php @@ -1,7 +1,14 @@ "請檢查您的密碼並再試一次。", "Password" => "密碼", "Submit" => "送出", +"Sorry, this link doesn’t seem to work anymore." => "抱歉,這連結看來已經不能用了。", +"Reasons might be:" => "可能的原因:", +"the item was removed" => "項目已經移除", +"the link expired" => "連結過期", +"sharing is disabled" => "分享功能已停用", +"For more info, please ask the person who sent this link." => "請詢問告訴您此連結的人以瞭解更多", "%s shared the folder %s with you" => "%s 和您分享了資料夾 %s ", "%s shared the file %s with you" => "%s 和您分享了檔案 %s", "Download" => "下載", diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 7384b094cb..d91acbbb2b 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -362,9 +362,13 @@ class Shared extends \OC\Files\Storage\Common { case 'xb': case 'a': case 'ab': - if (!$this->isUpdatable($path)) { - return false; - } + $exists = $this->file_exists($path); + if ($exists && !$this->isUpdatable($path)) { + return false; + } + if (!$exists && !$this->isCreatable(dirname($path))) { + return false; + } } $info = array( 'target' => $this->sharedFolder.$path, diff --git a/apps/files_trashbin/l10n/eu.php b/apps/files_trashbin/l10n/eu.php index b114dc3386..240582a7ea 100644 --- a/apps/files_trashbin/l10n/eu.php +++ b/apps/files_trashbin/l10n/eu.php @@ -8,8 +8,9 @@ $TRANSLATIONS = array( "Delete permanently" => "Ezabatu betirako", "Name" => "Izena", "Deleted" => "Ezabatuta", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), +"_%n folder_::_%n folders_" => array("karpeta %n","%n karpeta"), +"_%n file_::_%n files_" => array("fitxategi %n","%n fitxategi"), +"restored" => "Berrezarrita", "Nothing in here. Your trash bin is empty!" => "Ez dago ezer ez. Zure zakarrontzia hutsik dago!", "Restore" => "Berrezarri", "Delete" => "Ezabatu", diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index 0dc2b938f8..e4b39c4a6d 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -8,8 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Elimina definitivamente", "Name" => "Nome", "Deleted" => "Eliminati", -"_%n folder_::_%n folders_" => array("",""), -"_%n file_::_%n files_" => array("",""), +"_%n folder_::_%n folders_" => array("%n cartella","%n cartelle"), +"_%n file_::_%n files_" => array("%n file","%n file"), "restored" => "ripristinati", "Nothing in here. Your trash bin is empty!" => "Qui non c'è niente. Il tuo cestino è vuoto.", "Restore" => "Ripristina", diff --git a/apps/files_trashbin/l10n/zh_CN.GB2312.php b/apps/files_trashbin/l10n/zh_CN.GB2312.php deleted file mode 100644 index eaa97bb1b6..0000000000 --- a/apps/files_trashbin/l10n/zh_CN.GB2312.php +++ /dev/null @@ -1,12 +0,0 @@ - "出错", -"Delete permanently" => "永久删除", -"Name" => "名称", -"_%n folder_::_%n folders_" => array("%n 个文件夹"), -"_%n file_::_%n files_" => array("%n 个文件"), -"Restore" => "恢复", -"Delete" => "删除", -"Deleted Files" => "删除的文件" -); -$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_TW.php b/apps/files_trashbin/l10n/zh_TW.php index ab6b75c578..2dfc484fc7 100644 --- a/apps/files_trashbin/l10n/zh_TW.php +++ b/apps/files_trashbin/l10n/zh_TW.php @@ -1,17 +1,18 @@ "無法永久刪除 %s", -"Couldn't restore %s" => "無法復原 %s", -"perform restore operation" => "進行復原動作", +"Couldn't restore %s" => "無法還原 %s", +"perform restore operation" => "進行還原動作", "Error" => "錯誤", "delete file permanently" => "永久刪除檔案", "Delete permanently" => "永久刪除", "Name" => "名稱", "Deleted" => "已刪除", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), +"_%n folder_::_%n folders_" => array("%n 個資料夾"), +"_%n file_::_%n files_" => array("%n 個檔案"), +"restored" => "已還原", "Nothing in here. Your trash bin is empty!" => "您的垃圾桶是空的!", -"Restore" => "復原", +"Restore" => "還原", "Delete" => "刪除", "Deleted Files" => "已刪除的檔案" ); diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index 323f25eac2..0dcb2fc82e 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -689,7 +689,7 @@ class Trashbin { } } } - + /** * clean up the trash bin * @param current size of the trash bin @@ -892,16 +892,17 @@ class Trashbin { //Listen to post write hook \OCP\Util::connectHook('OC_Filesystem', 'post_write', "OCA\Files_Trashbin\Hooks", "post_write_hook"); } - + /** * @brief check if trash bin is empty for a given user * @param string $user */ public static function isEmpty($user) { - $trashSize = self::getTrashbinSize($user); + $view = new \OC\Files\View('/' . $user . '/files_trashbin'); + $content = $view->getDirectoryContent('/files'); - if ($trashSize !== false && $trashSize > 0) { + if ($content) { return false; } diff --git a/apps/files_versions/l10n/zh_CN.GB2312.php b/apps/files_versions/l10n/zh_CN.GB2312.php deleted file mode 100644 index de340d6dc9..0000000000 --- a/apps/files_versions/l10n/zh_CN.GB2312.php +++ /dev/null @@ -1,10 +0,0 @@ - "无法恢复:%s", -"Versions" => "版本", -"Failed to revert {file} to revision {timestamp}." => "无法恢复文件 {file} 到 版本 {timestamp}。", -"More versions..." => "更多版本", -"No other versions available" => "没有其他可用版本", -"Restore" => "恢复" -); -$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/zh_TW.php b/apps/files_versions/l10n/zh_TW.php index 55a3dca3c3..9b8900fd8e 100644 --- a/apps/files_versions/l10n/zh_TW.php +++ b/apps/files_versions/l10n/zh_TW.php @@ -2,6 +2,9 @@ $TRANSLATIONS = array( "Could not revert: %s" => "無法還原:%s", "Versions" => "版本", +"Failed to revert {file} to revision {timestamp}." => "無法還原檔案 {file} 至版本 {timestamp}", +"More versions..." => "更多版本…", +"No other versions available" => "沒有其他版本了", "Restore" => "復原" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index 338317baad..455ad62d84 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -30,8 +30,11 @@ $TRANSLATIONS = array( "Password" => "Contrasenya", "For anonymous access, leave DN and Password empty." => "Per un accés anònim, deixeu la DN i la contrasenya en blanc.", "User Login Filter" => "Filtre d'inici de sessió d'usuari", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Defineix el filtre a aplicar quan s'intenta iniciar la sessió. %%uid reemplaça el nom d'usuari en l'acció d'inici de sessió. Per exemple: \"uid=%%uid\"", "User List Filter" => "Llista de filtres d'usuari", +"Defines the filter to apply, when retrieving users (no placeholders). Example: \"objectClass=person\"" => "Defineix el filtre a aplicar quan es mostren usuaris (no textos variables). Per exemple: \"objectClass=person\"", "Group Filter" => "Filtre de grup", +"Defines the filter to apply, when retrieving groups (no placeholders). Example: \"objectClass=posixGroup\"" => "Defineix el filtre a aplicar quan es mostren grups (no textos variables). Per exemple: \"objectClass=posixGroup\"", "Connection Settings" => "Arranjaments de connexió", "Configuration Active" => "Configuració activa", "When unchecked, this configuration will be skipped." => "Si està desmarcat, aquesta configuració s'ometrà.", @@ -45,6 +48,7 @@ $TRANSLATIONS = array( "Do not use it additionally for LDAPS connections, it will fail." => "No ho useu adicionalment per a conexions LDAPS, fallarà.", "Case insensitve LDAP server (Windows)" => "Servidor LDAP sense distinció entre majúscules i minúscules (Windows)", "Turn off SSL certificate validation." => "Desactiva la validació de certificat SSL.", +"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "No es recomana, useu-ho només com a prova! Importeu el certificat SSL del servidor LDAP al servidor %s només si la connexió funciona amb aquesta opció.", "Cache Time-To-Live" => "Memòria de cau Time-To-Live", "in seconds. A change empties the cache." => "en segons. Un canvi buidarà la memòria de cau.", "Directory Settings" => "Arranjaments de carpetes", diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index 82f42ef3be..4b47846f22 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -30,8 +30,11 @@ $TRANSLATIONS = array( "Password" => "Password", "For anonymous access, leave DN and Password empty." => "Per l'accesso anonimo, lasciare vuoti i campi DN e Password", "User Login Filter" => "Filtro per l'accesso utente", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Specifica quale filtro utilizzare quando si tenta l'accesso. %%uid sostituisce il nome utente all'atto dell'accesso. Esempio: \"uid=%%uid\"", "User List Filter" => "Filtro per l'elenco utenti", +"Defines the filter to apply, when retrieving users (no placeholders). Example: \"objectClass=person\"" => "Specifica quale filtro utilizzare durante il recupero degli utenti (nessun segnaposto). Esempio: \"objectClass=person\"", "Group Filter" => "Filtro per il gruppo", +"Defines the filter to apply, when retrieving groups (no placeholders). Example: \"objectClass=posixGroup\"" => "Specifica quale filtro utilizzare durante il recupero dei gruppi (nessun segnaposto). Esempio: \"objectClass=posixGroup\"", "Connection Settings" => "Impostazioni di connessione", "Configuration Active" => "Configurazione attiva", "When unchecked, this configuration will be skipped." => "Se deselezionata, questa configurazione sarà saltata.", @@ -45,6 +48,7 @@ $TRANSLATIONS = array( "Do not use it additionally for LDAPS connections, it will fail." => "Da non utilizzare per le connessioni LDAPS, non funzionerà.", "Case insensitve LDAP server (Windows)" => "Case insensitve LDAP server (Windows)", "Turn off SSL certificate validation." => "Disattiva il controllo del certificato SSL.", +"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Non consigliata, da utilizzare solo per test! Se la connessione funziona solo con questa opzione, importa il certificate SSL del server LDAP sul tuo server %s.", "Cache Time-To-Live" => "Tempo di vita della cache", "in seconds. A change empties the cache." => "in secondi. Il cambio svuota la cache.", "Directory Settings" => "Impostazioni delle cartelle", diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php index 88006e1b5d..9469146d35 100644 --- a/apps/user_ldap/l10n/pt_BR.php +++ b/apps/user_ldap/l10n/pt_BR.php @@ -30,8 +30,11 @@ $TRANSLATIONS = array( "Password" => "Senha", "For anonymous access, leave DN and Password empty." => "Para acesso anônimo, deixe DN e Senha vazios.", "User Login Filter" => "Filtro de Login de Usuário", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Define o filtro a ser aplicado, o login é feito. %%uid substitui o nome do usuário na ação de login. Exemplo: \"uid=%%uid\"", "User List Filter" => "Filtro de Lista de Usuário", +"Defines the filter to apply, when retrieving users (no placeholders). Example: \"objectClass=person\"" => "Define o filtro a ser aplicado, ao recuperar usuários (sem espaços reservados). Exemplo: \"objectClass=person\"", "Group Filter" => "Filtro de Grupo", +"Defines the filter to apply, when retrieving groups (no placeholders). Example: \"objectClass=posixGroup\"" => "Define o filtro a ser aplicado, ao recuperar grupos (sem espaços reservados). Exemplo: \"objectClass=posixGroup\"", "Connection Settings" => "Configurações de Conexão", "Configuration Active" => "Configuração ativa", "When unchecked, this configuration will be skipped." => "Quando não marcada, esta configuração será ignorada.", @@ -45,6 +48,7 @@ $TRANSLATIONS = array( "Do not use it additionally for LDAPS connections, it will fail." => "Não use adicionalmente para conexões LDAPS, pois falhará.", "Case insensitve LDAP server (Windows)" => "Servidor LDAP sensível à caixa alta (Windows)", "Turn off SSL certificate validation." => "Desligar validação de certificado SSL.", +"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Não recomendado, use-o somente para teste! Se a conexão só funciona com esta opção, importar o certificado SSL do servidor LDAP em seu servidor %s.", "Cache Time-To-Live" => "Cache Time-To-Live", "in seconds. A change empties the cache." => "em segundos. Uma mudança esvaziará o cache.", "Directory Settings" => "Configurações de Diretório", diff --git a/apps/user_ldap/l10n/zh_CN.GB2312.php b/apps/user_ldap/l10n/zh_CN.GB2312.php deleted file mode 100644 index 306b84a588..0000000000 --- a/apps/user_ldap/l10n/zh_CN.GB2312.php +++ /dev/null @@ -1,31 +0,0 @@ - "删除失败", -"Success" => "成功", -"Error" => "出错", -"Host" => "主机", -"You can omit the protocol, except you require SSL. Then start with ldaps://" => "您可以忽略协议,除非您需要 SSL。然后用 ldaps:// 开头", -"Base DN" => "基本判别名", -"You can specify Base DN for users and groups in the Advanced tab" => "您可以在高级选项卡中为用户和群组指定基本判别名", -"User 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." => "客户机用户的判别名,将用于绑定,例如 uid=agent, dc=example, dc=com。匿名访问请留空判别名和密码。", -"Password" => "密码", -"For anonymous access, leave DN and Password empty." => "匿名访问请留空判别名和密码。", -"User Login Filter" => "用户登录过滤器", -"User List Filter" => "用户列表过滤器", -"Group Filter" => "群组过滤器", -"Port" => "端口", -"Use TLS" => "使用 TLS", -"Case insensitve LDAP server (Windows)" => "大小写不敏感的 LDAP 服务器 (Windows)", -"Turn off SSL certificate validation." => "关闭 SSL 证书校验。", -"in seconds. A change empties the cache." => "以秒计。修改会清空缓存。", -"User Display Name Field" => "用户显示名称字段", -"Base User Tree" => "基本用户树", -"Group Display Name Field" => "群组显示名称字段", -"Base Group Tree" => "基本群组树", -"Group-Member association" => "群组-成员组合", -"in bytes" => "以字节计", -"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "用户名请留空 (默认)。否则,请指定一个 LDAP/AD 属性。", -"Help" => "帮助" -); -$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/zh_TW.php b/apps/user_ldap/l10n/zh_TW.php index 38bed89574..2cc1ac9933 100644 --- a/apps/user_ldap/l10n/zh_TW.php +++ b/apps/user_ldap/l10n/zh_TW.php @@ -3,56 +3,59 @@ $TRANSLATIONS = array( "Failed to clear the mappings." => "清除映射失敗", "Failed to delete the server configuration" => "刪除伺服器設定時失敗", "The configuration is valid and the connection could be established!" => "設定有效且連線可建立", -"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "設定有效但連線無法建立。請檢查伺服器的設定與認證資料。", -"The configuration is invalid. Please look in the ownCloud log for further details." => "設定無效。更多細節請參閱ownCloud的記錄檔。", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "設定有效但連線無法建立,請檢查伺服器設定與認證資料。", +"The configuration is invalid. Please look in the ownCloud log for further details." => "設定無效,更多細節請參閱 ownCloud 的記錄檔。", "Deletion failed" => "移除失敗", -"Take over settings from recent server configuration?" => "要使用最近一次的伺服器設定嗎?", -"Keep settings?" => "維持設定嗎?", +"Take over settings from recent server configuration?" => "要使用最近一次的伺服器設定嗎?", +"Keep settings?" => "維持設定嗎?", "Cannot add server configuration" => "無法新增伺服器設定", "mappings cleared" => "映射已清除", "Success" => "成功", "Error" => "錯誤", "Connection test succeeded" => "連線測試成功", "Connection test failed" => "連線測試失敗", -"Do you really want to delete the current Server Configuration?" => "您真的確定要刪除現在的伺服器設定嗎?", -"Confirm Deletion" => "確認已刪除", -"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "警告:沒有安裝 PHP LDAP 模組,後端系統將無法運作。請要求您的系統管理員安裝模組。", +"Do you really want to delete the current Server Configuration?" => "您真的要刪除現在的伺服器設定嗎?", +"Confirm Deletion" => "確認刪除", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "警告:沒有安裝 PHP LDAP 模組,後端系統將無法運作,請要求您的系統管理員安裝模組。", "Server configuration" => "伺服器設定", "Add Server Configuration" => "新增伺服器設定", "Host" => "主機", -"You can omit the protocol, except you require SSL. Then start with ldaps://" => "若您不需要SSL加密傳輸則可忽略通訊協定。若非如此請從ldaps://開始", -"One Base DN per line" => "一行一個Base DN", -"You can specify Base DN for users and groups in the Advanced tab" => "您可以在進階標籤頁裡面指定使用者及群組的Base DN", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "若您不需要 SSL 加密連線則不需輸入通訊協定,反之請輸入 ldaps://", +"Base DN" => "Base DN", +"One Base DN per line" => "一行一個 Base DN", +"You can specify Base DN for users and groups in the Advanced tab" => "您可以在進階標籤頁裡面指定使用者及群組的 Base DN", +"User DN" => "User 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與特定字詞的連結需要完善,例如:uid=agent,dc=example,dc=com。若是匿名連接,則將DN與密碼欄位留白。", "Password" => "密碼", -"For anonymous access, leave DN and Password empty." => "匿名連接時請將DN與密碼欄位留白", -"User Login Filter" => "使用者登入過濾器", -"User List Filter" => "使用者名單篩選器", -"Group Filter" => "群組篩選器", +"For anonymous access, leave DN and Password empty." => "匿名連接時請將 DN 與密碼欄位留白", +"User Login Filter" => "User Login Filter", +"User List Filter" => "User List Filter", +"Group Filter" => "Group Filter", "Connection Settings" => "連線設定", -"Configuration Active" => "設定為主動模式", +"Configuration Active" => "設定使用中", "When unchecked, this configuration will be skipped." => "沒有被勾選時,此設定會被略過。", -"Port" => "連接阜", +"Port" => "連接埠", "Backup (Replica) Host" => "備用主機", -"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "請給定一個可選的備用主機。必須是LDAP/AD中央伺服器的複本。", -"Backup (Replica) Port" => "備用(複本)連接阜", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "可以選擇性設定備用主機,必須是 LDAP/AD 中央伺服器的複本。", +"Backup (Replica) Port" => "備用(複本)連接埠", "Disable Main Server" => "停用主伺服器", -"Use TLS" => "使用TLS", -"Case insensitve LDAP server (Windows)" => "不區分大小寫的LDAP伺服器(Windows)", -"Turn off SSL certificate validation." => "關閉 SSL 憑證驗證", +"Use TLS" => "使用 TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "不要同時與 LDAPS 使用,會有問題。", +"Case insensitve LDAP server (Windows)" => "不區分大小寫的 LDAP 伺服器 (Windows)", +"Turn off SSL certificate validation." => "關閉 SSL 憑證檢查", "Cache Time-To-Live" => "快取的存活時間", -"in seconds. A change empties the cache." => "以秒為單位。更變後會清空快取。", -"Directory Settings" => "目錄選項", -"User Display Name Field" => "使用者名稱欄位", -"Base User Tree" => "Base使用者數", -"One User Base DN per line" => "一行一個使用者Base DN", -"User Search Attributes" => "使用者搜索屬性", -"Optional; one attribute per line" => "可選的; 一行一項屬性", +"in seconds. A change empties the cache." => "以秒為單位。變更後會清空快取。", +"Directory Settings" => "目錄設定", +"User Display Name Field" => "使用者顯示名稱欄位", +"Base User Tree" => "Base User Tree", +"One User Base DN per line" => "一行一個使用者 Base DN", +"User Search Attributes" => "User Search Attributes", +"Optional; one attribute per line" => "非必要,一行一項屬性", "Group Display Name Field" => "群組顯示名稱欄位", -"Base Group Tree" => "Base群組樹", -"One Group Base DN per line" => "一行一個群組Base DN", -"Group Search Attributes" => "群組搜索屬性", -"Group-Member association" => "群組成員的關係", +"Base Group Tree" => "Base Group Tree", +"One Group Base DN per line" => "一行一個 Group Base DN", +"Group Search Attributes" => "Group Search Attributes", +"Group-Member association" => "Group-Member association", "Special Attributes" => "特殊屬性", "Quota Field" => "配額欄位", "Quota Default" => "預設配額", diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 6f6b8d0f01..52aa39012f 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -991,7 +991,7 @@ abstract class Access { * internally we store them for usage in LDAP filters */ private function DNasBaseParameter($dn) { - return str_replace('\\5c', '\\', $dn); + return str_ireplace('\\5c', '\\', $dn); } /** diff --git a/apps/user_webdavauth/l10n/nb_NO.php b/apps/user_webdavauth/l10n/nb_NO.php index 245a510134..e7ee8ae56b 100644 --- a/apps/user_webdavauth/l10n/nb_NO.php +++ b/apps/user_webdavauth/l10n/nb_NO.php @@ -1,3 +1,5 @@ - "URL: http://" + "Adresse:" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/zh_CN.php b/apps/user_webdavauth/l10n/zh_CN.php index 6904604216..a225ea7f57 100644 --- a/apps/user_webdavauth/l10n/zh_CN.php +++ b/apps/user_webdavauth/l10n/zh_CN.php @@ -1,5 +1,7 @@ "WebDAV 认证" +"WebDAV Authentication" => "WebDAV 认证", +"Address: " => "地址:", +"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "用户的身份将会被发送到此 URL。这个插件检查返回值并且将 HTTP 状态编码 401 和 403 解释为非法身份,其他所有返回值为合法身份。" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/ajax/update.php b/core/ajax/update.php index 43ed75b07f..d6af84e95b 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -4,25 +4,26 @@ $RUNTIME_NOAPPS = true; require_once '../../lib/base.php'; if (OC::checkUpgrade(false)) { + $l = new \OC_L10N('core'); $eventSource = new OC_EventSource(); $updater = new \OC\Updater(\OC_Log::$object); - $updater->listen('\OC\Updater', 'maintenanceStart', function () use ($eventSource) { - $eventSource->send('success', 'Turned on maintenance mode'); + $updater->listen('\OC\Updater', 'maintenanceStart', function () use ($eventSource, $l) { + $eventSource->send('success', (string)$l->t('Turned on maintenance mode')); }); - $updater->listen('\OC\Updater', 'maintenanceEnd', function () use ($eventSource) { - $eventSource->send('success', 'Turned off maintenance mode'); + $updater->listen('\OC\Updater', 'maintenanceEnd', function () use ($eventSource, $l) { + $eventSource->send('success', (string)$l->t('Turned off maintenance mode')); }); - $updater->listen('\OC\Updater', 'dbUpgrade', function () use ($eventSource) { - $eventSource->send('success', 'Updated database'); + $updater->listen('\OC\Updater', 'dbUpgrade', function () use ($eventSource, $l) { + $eventSource->send('success', (string)$l->t('Updated database')); }); - $updater->listen('\OC\Updater', 'filecacheStart', function () use ($eventSource) { - $eventSource->send('success', 'Updating filecache, this may take really long...'); + $updater->listen('\OC\Updater', 'filecacheStart', function () use ($eventSource, $l) { + $eventSource->send('success', (string)$l->t('Updating filecache, this may take really long...')); }); - $updater->listen('\OC\Updater', 'filecacheDone', function () use ($eventSource) { - $eventSource->send('success', 'Updated filecache'); + $updater->listen('\OC\Updater', 'filecacheDone', function () use ($eventSource, $l) { + $eventSource->send('success', (string)$l->t('Updated filecache')); }); - $updater->listen('\OC\Updater', 'filecacheProgress', function ($out) use ($eventSource) { - $eventSource->send('success', '... ' . $out . '% done ...'); + $updater->listen('\OC\Updater', 'filecacheProgress', function ($out) use ($eventSource, $l) { + $eventSource->send('success', (string)$l->t('... %d%% done ...', array('percent' => $out))); }); $updater->listen('\OC\Updater', 'failure', function ($message) use ($eventSource) { $eventSource->send('failure', $message); diff --git a/core/css/multiselect.css b/core/css/multiselect.css index a2d1b20d3a..c25446808e 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -103,3 +103,10 @@ ul.multiselectoptions > li.creator > input { padding: 5px; margin: -5px; } + +.ie8 div.multiselect span:first-child { + display:block; + position:relative; + width: 90%; + margin-right:-1px; +} diff --git a/core/css/styles.css b/core/css/styles.css index 792ccb0832..363d36294b 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -260,9 +260,9 @@ input[name="adminpass-clone"] { padding-left:1.8em; width:11.7em !important; } #body-login input[type="password"], #body-login input[type="email"] { border: 1px solid #323233; - -moz-box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 3px rgba(0,0,0,.25) inset; - -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 3px rgba(0,0,0,.25) inset; - box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 3px rgba(0,0,0,.25) inset; + -moz-box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.25) inset; + -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.25) inset; + box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.25) inset; } /* Nicely grouping input field sets */ @@ -755,7 +755,7 @@ div.crumb:active { /* special rules for first-level entries and folders */ #app-navigation > ul > li { - background-color: #eee; + background-color: #f8f8f8; } #app-navigation .with-icon a { @@ -876,6 +876,10 @@ div.crumb:active { color: #dd1144; } +#app-navigation .app-navigation-separator { + border-bottom: 1px solid #ddd; +} + /* Part where the content will be loaded into */ diff --git a/core/js/js.js b/core/js/js.js index d580b6113e..a456da8cb8 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -709,7 +709,6 @@ $(document).ready(function(){ }); label.hide(); }; - setShowPassword($('#password'), $('label[for=show]')); setShowPassword($('#adminpass'), $('label[for=show]')); setShowPassword($('#pass2'), $('label[for=personal-show]')); setShowPassword($('#dbpass'), $('label[for=dbpassword]')); diff --git a/core/js/octemplate.js b/core/js/octemplate.js index e69c6cc56e..46ffa97657 100644 --- a/core/js/octemplate.js +++ b/core/js/octemplate.js @@ -60,9 +60,10 @@ var self = this; if(typeof this.options.escapeFunction === 'function') { - for (var key = 0; key < this.vars.length; key++) { - if(typeof this.vars[key] === 'string') { - this.vars[key] = self.options.escapeFunction(this.vars[key]); + var keys = Object.keys(this.vars); + for (var key = 0; key < keys.length; key++) { + if(typeof this.vars[keys[key]] === 'string') { + this.vars[keys[key]] = self.options.escapeFunction(this.vars[keys[key]]); } } } @@ -85,7 +86,7 @@ } }, options: { - escapeFunction: function(str) {return $('').text(str).html();} + escapeFunction: escapeHTML } }; diff --git a/core/l10n/da.php b/core/l10n/da.php index 79ccc20d49..916975393b 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -1,6 +1,12 @@ "%s delte »%s« med sig", +"Turned on maintenance mode" => "Startede vedligeholdelsestilstand", +"Turned off maintenance mode" => "standsede vedligeholdelsestilstand", +"Updated database" => "Opdaterede database", +"Updating filecache, this may take really long..." => "Opdatere filcache, dette kan tage rigtigt lang tid...", +"Updated filecache" => "Opdaterede filcache", +"... %d%% done ..." => "... %d%% færdig ...", "Category type not provided." => "Kategori typen ikke er fastsat.", "No category to add?" => "Ingen kategori at tilføje?", "This category already exists: %s" => "Kategorien eksisterer allerede: %s", diff --git a/core/l10n/de.php b/core/l10n/de.php index 2fe2f56412..300edb9141 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,6 +1,12 @@ "%s teilte »%s« mit Ihnen", +"Turned on maintenance mode" => "Wartungsmodus eingeschaltet", +"Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", +"Updated database" => "Datenbank aktualisiert", +"Updating filecache, this may take really long..." => "Aktualisiere Dateicache, dies könnte eine Weile dauern...", +"Updated filecache" => "Dateicache aktualisiert", +"... %d%% done ..." => "... %d%% erledigt ...", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: %s" => "Die Kategorie '%s' existiert bereits.", diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php index 3e622ace6f..d93158c62d 100644 --- a/core/l10n/de_CH.php +++ b/core/l10n/de_CH.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezember", "Settings" => "Einstellungen", "seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), +"_%n hour ago_::_%n hours ago_" => array("Vor %n Stunde","Vor %n Stunden"), "today" => "Heute", "yesterday" => "Gestern", -"_%n day ago_::_%n days ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", @@ -83,6 +83,7 @@ $TRANSLATIONS = array( "Email sent" => "Email gesendet", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.", +"%s password reset" => "%s-Passwort zurücksetzen", "Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
Wenn Sie ihn nicht innerhalb einer vernünftigen Zeitspanne erhalten, prüfen Sie bitte Ihre Spam-Verzeichnisse.
Wenn er nicht dort ist, fragen Sie Ihren lokalen Administrator.", "Request failed!
Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 60f5418727..d70dd6e99d 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -1,6 +1,12 @@ "%s geteilt »%s« mit Ihnen", +"Turned on maintenance mode" => "Wartungsmodus eingeschaltet ", +"Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", +"Updated database" => "Datenbank aktualisiert", +"Updating filecache, this may take really long..." => "Aktualisiere Dateicache, dies könnte eine Weile dauern...", +"Updated filecache" => "Dateicache aktualisiert", +"... %d%% done ..." => "... %d%% erledigt ...", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: %s" => "Die nachfolgende Kategorie existiert bereits: %s", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index a13ed03222..d9e5750381 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -1,6 +1,12 @@ "%s jagas sinuga »%s«", +"Turned on maintenance mode" => "Haldusreziimis", +"Turned off maintenance mode" => "Haldusreziim lõpetatud", +"Updated database" => "Uuendatud andmebaas", +"Updating filecache, this may take really long..." => "Uuendan failipuhvrit, see võib kesta väga kaua...", +"Updated filecache" => "Uuendatud failipuhver", +"... %d%% done ..." => "... %d%% tehtud ...", "Category type not provided." => "Kategooria tüüp puudub.", "No category to add?" => "Pole kategooriat, mida lisada?", "This category already exists: %s" => "See kategooria on juba olemas: %s", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 280c5a94b6..83b8fca1ea 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Abendua", "Settings" => "Ezarpenak", "seconds ago" => "segundu", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("orain dela minutu %n","orain dela %n minutu"), +"_%n hour ago_::_%n hours ago_" => array("orain dela ordu %n","orain dela %n ordu"), "today" => "gaur", "yesterday" => "atzo", -"_%n day ago_::_%n days ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("orain dela egun %n","orain dela %n egun"), "last month" => "joan den hilabetean", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("orain dela hilabete %n","orain dela %n hilabete"), "months ago" => "hilabete", "last year" => "joan den urtean", "years ago" => "urte", @@ -83,6 +83,7 @@ $TRANSLATIONS = array( "Email sent" => "Eposta bidalia", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat ownCloud komunitatearentzako.", "The update was successful. Redirecting you to ownCloud now." => "Eguneraketa ongi egin da. Orain zure ownClouderea berbideratua izango zara.", +"%s password reset" => "%s pasahitza berrezarri", "Use the following link to reset your password: {link}" => "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Zure pasahitza berrezartzeko lotura zure postara bidalia izan da.
Ez baduzu arrazoizko denbora \nepe batean jasotzen begiratu zure zabor-posta karpetan.
Hor ere ez badago kudeatzailearekin harremanetan ipini.", "Request failed!
Did you make sure your email/username was right?" => "Eskaerak huts egin du!
Ziur zaude posta/pasahitza zuzenak direla?", @@ -125,6 +126,7 @@ $TRANSLATIONS = array( "Finish setup" => "Bukatu konfigurazioa", "%s is available. Get more information on how to update." => "%s erabilgarri dago. Eguneratzeaz argibide gehiago eskuratu.", "Log out" => "Saioa bukatu", +"More apps" => "App gehiago", "Automatic logon rejected!" => "Saio hasiera automatikoa ez onartuta!", "If you did not change your password recently, your account may be compromised!" => "Zure pasahitza orain dela gutxi ez baduzu aldatu, zure kontua arriskuan egon daiteke!", "Please change your password to secure your account again." => "Mesedez aldatu zure pasahitza zure kontua berriz segurtatzeko.", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index d3cfe01293..dc603cf41d 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -1,6 +1,12 @@ "%s jakoi kohteen »%s« kanssasi", +"Turned on maintenance mode" => "Siirrytty ylläpitotilaan", +"Turned off maintenance mode" => "Ylläpitotila laitettu pois päältä", +"Updated database" => "Tietokanta ajan tasalla", +"Updating filecache, this may take really long..." => "Päivitetään tiedostojen välimuistia, tämä saattaa kestää todella kauan...", +"Updated filecache" => "Tiedostojen välimuisti päivitetty", +"... %d%% done ..." => "... %d%% valmis ...", "Category type not provided." => "Luokan tyyppiä ei määritelty.", "No category to add?" => "Ei lisättävää luokkaa?", "This category already exists: %s" => "Luokka on jo olemassa: %s", @@ -64,6 +70,7 @@ $TRANSLATIONS = array( "Share via email:" => "Jaa sähköpostilla:", "No people found" => "Henkilöitä ei löytynyt", "Resharing is not allowed" => "Jakaminen uudelleen ei ole salittu", +"Shared in {item} with {user}" => "{item} on jaettu {user} kanssa", "Unshare" => "Peru jakaminen", "can edit" => "voi muokata", "access control" => "Pääsyn hallinta", @@ -78,6 +85,7 @@ $TRANSLATIONS = array( "Email sent" => "Sähköposti lähetetty", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Päivitys epäonnistui. Ilmoita ongelmasta ownCloud-yhteisölle.", "The update was successful. Redirecting you to ownCloud now." => "Päivitys onnistui. Selain ohjautuu nyt ownCloudiisi.", +"%s password reset" => "%s salasanan nollaus", "Use the following link to reset your password: {link}" => "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Linkki salasanan nollaamiseen on lähetetty sähköpostiisi.
Jos et saa viestiä pian, tarkista roskapostikansiosi.
Jos et löydä viestiä roskapostinkaan seasta, ota yhteys ylläpitäjään.", "Request failed!
Did you make sure your email/username was right?" => "Pyyntö epäonnistui!
Olihan sähköpostiosoitteesi/käyttäjätunnuksesi oikein?", diff --git a/core/l10n/it.php b/core/l10n/it.php index 7a0af92070..8c09b4e90f 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Dicembre", "Settings" => "Impostazioni", "seconds ago" => "secondi fa", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("%n minuto fa","%n minuti fa"), +"_%n hour ago_::_%n hours ago_" => array("%n ora fa","%n ore fa"), "today" => "oggi", "yesterday" => "ieri", -"_%n day ago_::_%n days ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("%n giorno fa","%n giorni fa"), "last month" => "mese scorso", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("%n mese fa","%n mesi fa"), "months ago" => "mesi fa", "last year" => "anno scorso", "years ago" => "anni fa", @@ -83,6 +83,7 @@ $TRANSLATIONS = array( "Email sent" => "Messaggio inviato", "The update was unsuccessful. Please report this issue to the ownCloud community." => "L'aggiornamento non è riuscito. Segnala il problema alla comunità di ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "L'aggiornamento è stato effettuato correttamente. Stai per essere reindirizzato a ownCloud.", +"%s password reset" => "Ripristino password di %s", "Use the following link to reset your password: {link}" => "Usa il collegamento seguente per ripristinare la password: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Il collegamento per ripristinare la password è stato inviato al tuo indirizzo di posta.
Se non lo ricevi in tempi ragionevoli, controlla le cartelle della posta indesiderata.
Se non dovesse essere nemmeno lì, contatta il tuo amministratore locale.", "Request failed!
Did you make sure your email/username was right?" => "Richiesta non riuscita!
Sei sicuro che l'indirizzo di posta/nome utente fosse corretto?", @@ -125,6 +126,7 @@ $TRANSLATIONS = array( "Finish setup" => "Termina la configurazione", "%s is available. Get more information on how to update." => "%s è disponibile. Ottieni ulteriori informazioni sull'aggiornamento.", "Log out" => "Esci", +"More apps" => "Altre applicazioni", "Automatic logon rejected!" => "Accesso automatico rifiutato.", "If you did not change your password recently, your account may be compromised!" => "Se non hai cambiato la password recentemente, il tuo account potrebbe essere compromesso.", "Please change your password to secure your account again." => "Cambia la password per rendere nuovamente sicuro il tuo account.", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 4c2d33e301..c4b6b9f091 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -29,13 +29,13 @@ $TRANSLATIONS = array( "December" => "12월", "Settings" => "설정", "seconds ago" => "초 전", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), +"_%n minute ago_::_%n minutes ago_" => array("%n분 전 "), +"_%n hour ago_::_%n hours ago_" => array("%n시간 전 "), "today" => "오늘", "yesterday" => "어제", -"_%n day ago_::_%n days ago_" => array(""), +"_%n day ago_::_%n days ago_" => array("%n일 전 "), "last month" => "지난 달", -"_%n month ago_::_%n months ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("%n달 전 "), "months ago" => "개월 전", "last year" => "작년", "years ago" => "년 전", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 00e4748853..84678c1c20 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -1,5 +1,6 @@ "%s pasidalino »%s« su tavimi", "Category type not provided." => "Kategorija nenurodyta.", "No category to add?" => "Nepridėsite jokios kategorijos?", "This category already exists: %s" => "Ši kategorija jau egzistuoja: %s", @@ -29,13 +30,13 @@ $TRANSLATIONS = array( "December" => "Gruodis", "Settings" => "Nustatymai", "seconds ago" => "prieš sekundę", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), +"_%n minute ago_::_%n minutes ago_" => array(" prieš %n minutę"," prieš %n minučių"," prieš %n minučių"), +"_%n hour ago_::_%n hours ago_" => array("prieš %n valandą","prieš %n valandų","prieš %n valandų"), "today" => "šiandien", "yesterday" => "vakar", "_%n day ago_::_%n days ago_" => array("","",""), "last month" => "praeitą mėnesį", -"_%n month ago_::_%n months ago_" => array("","",""), +"_%n month ago_::_%n months ago_" => array("prieš %n mėnesį","prieš %n mėnesius","prieš %n mėnesių"), "months ago" => "prieš mėnesį", "last year" => "praeitais metais", "years ago" => "prieš metus", @@ -81,11 +82,13 @@ $TRANSLATIONS = array( "Email sent" => "Laiškas išsiųstas", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the ownCloud bendruomenei.", "The update was successful. Redirecting you to ownCloud now." => "Atnaujinimas buvo sėkmingas. Nukreipiame į jūsų ownCloud.", +"%s password reset" => "%s slaptažodžio atnaujinimas", "Use the following link to reset your password: {link}" => "Slaptažodio atkūrimui naudokite šią nuorodą: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Nuorodą su jūsų slaptažodžio atkūrimu buvo nusiųsta jums į paštą.
Jei jo negausite per atitinkamą laiką, pasižiūrėkite brukalo aplankale.
Jei jo ir ten nėra, teiraukitės administratoriaus.", "Request failed!
Did you make sure your email/username was right?" => "Klaida!
Ar tikrai jūsų el paštas/vartotojo vardas buvo teisingi?", "You will receive a link to reset your password via Email." => "Elektroniniu paštu gausite nuorodą, su kuria galėsite iš naujo nustatyti slaptažodį.", "Username" => "Prisijungimo vardas", +"Yes, I really want to reset my password now" => "Taip, aš tikrai noriu atnaujinti slaptažodį", "Request reset" => "Prašyti nustatymo iš najo", "Your password was reset" => "Jūsų slaptažodis buvo nustatytas iš naujo", "To login page" => "Į prisijungimo puslapį", @@ -118,6 +121,7 @@ $TRANSLATIONS = array( "Finish setup" => "Baigti diegimą", "%s is available. Get more information on how to update." => "%s yra prieinama. Gaukite daugiau informacijos apie atnaujinimą.", "Log out" => "Atsijungti", +"More apps" => "Daugiau programų", "Automatic logon rejected!" => "Automatinis prisijungimas atmestas!", "If you did not change your password recently, your account may be compromised!" => "Jei paskutinių metu nekeitėte savo slaptažodžio, Jūsų paskyra gali būti pavojuje!", "Please change your password to secure your account again." => "Prašome pasikeisti slaptažodį dar kartą, dėl paskyros saugumo.", diff --git a/core/l10n/ug.php b/core/l10n/ug.php index 5cbb90d15f..eb16e841c6 100644 --- a/core/l10n/ug.php +++ b/core/l10n/ug.php @@ -45,6 +45,7 @@ $TRANSLATIONS = array( "Help" => "ياردەم", "Edit categories" => "تۈر تەھرىر", "Add" => "قوش", +"Security Warning" => "بىخەتەرلىك ئاگاھلاندۇرۇش", "Advanced" => "ئالىي", "Finish setup" => "تەڭشەك تامام", "Log out" => "تىزىمدىن چىق" diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php deleted file mode 100644 index 92f1aef885..0000000000 --- a/core/l10n/zh_CN.GB2312.php +++ /dev/null @@ -1,140 +0,0 @@ - "%s 与您共享了 »%s« ", -"Category type not provided." => "未选择分类类型。", -"No category to add?" => "没有分类添加了?", -"This category already exists: %s" => "此分类已存在:%s", -"Object type not provided." => "未选择对象类型。", -"%s ID not provided." => "%s 没有提供 ID", -"Error adding %s to favorites." => "在添加 %s 到收藏夹时发生错误。", -"No categories selected for deletion." => "没有选中要删除的分类。", -"Error removing %s from favorites." => "在移除收藏夹中的 %s 时发生错误。", -"Sunday" => "星期天", -"Monday" => "星期一", -"Tuesday" => "星期二", -"Wednesday" => "星期三", -"Thursday" => "星期四", -"Friday" => "星期五", -"Saturday" => "星期六", -"January" => "一月", -"February" => "二月", -"March" => "三月", -"April" => "四月", -"May" => "五月", -"June" => "六月", -"July" => "七月", -"August" => "八月", -"September" => "九月", -"October" => "十月", -"November" => "十一月", -"December" => "十二月", -"Settings" => "设置", -"seconds ago" => "秒前", -"_%n minute ago_::_%n minutes ago_" => array("%n 分钟以前"), -"_%n hour ago_::_%n hours ago_" => array("%n 小时以前"), -"today" => "今天", -"yesterday" => "昨天", -"_%n day ago_::_%n days ago_" => array("%n 天以前"), -"last month" => "上个月", -"_%n month ago_::_%n months ago_" => array("%n 个月以前"), -"months ago" => "月前", -"last year" => "去年", -"years ago" => "年前", -"Choose" => "选择", -"Error loading file picker template" => "加载文件选取模板出错", -"Yes" => "是", -"No" => "否", -"Ok" => "好的", -"The object type is not specified." => "未指定对象类型。", -"Error" => "出错", -"The app name is not specified." => "未指定应用名称。", -"The required file {file} is not installed!" => "未安装所需要的文件 {file} !", -"Shared" => "已分享", -"Share" => "分享", -"Error while sharing" => "分享出错", -"Error while unsharing" => "取消分享出错", -"Error while changing permissions" => "变更权限出错", -"Shared with you and the group {group} by {owner}" => "由 {owner} 与您和 {group} 群组分享", -"Shared with you by {owner}" => "由 {owner} 与您分享", -"Share with" => "分享", -"Share with link" => "分享链接", -"Password protect" => "密码保护", -"Password" => "密码", -"Allow Public Upload" => "允许公众上传", -"Email link to person" => "面向个人的电子邮件链接", -"Send" => "发送", -"Set expiration date" => "设置失效日期", -"Expiration date" => "失效日期", -"Share via email:" => "通过电子邮件分享:", -"No people found" => "查无此人", -"Resharing is not allowed" => "不允许重复分享", -"Shared in {item} with {user}" => "已经与 {user} 在 {item} 中分享", -"Unshare" => "取消分享", -"can edit" => "可编辑", -"access control" => "访问控制", -"create" => "创建", -"update" => "更新", -"delete" => "删除", -"share" => "分享", -"Password protected" => "密码保护", -"Error unsetting expiration date" => "取消设置失效日期出错", -"Error setting expiration date" => "设置失效日期出错", -"Sending ..." => "发送中……", -"Email sent" => "电子邮件已发送", -"The update was unsuccessful. Please report this issue to the ownCloud community." => "升级失败。请向ownCloud社区报告此问题。", -"The update was successful. Redirecting you to ownCloud now." => "升级成功。现在为您跳转到ownCloud。", -"%s password reset" => "%s 密码重置", -"Use the following link to reset your password: {link}" => "使用下面的链接来重置你的密码:{link}", -"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "重置密码的连接已经通过邮件到您的邮箱。
如果你没有收到邮件,可能是由于要再等一下,或者检查一下您的垃圾邮件夹。
如果还是没有收到,请联系您的系统管理员。", -"Request failed!
Did you make sure your email/username was right?" => "请求失败!
你确定你的邮件地址/用户名是正确的?", -"You will receive a link to reset your password via Email." => "你将会收到一个重置密码的链接", -"Username" => "用户名", -"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "您的文件是加密的。如果您还没有启用恢复密钥,在重置了密码后,您的数据讲无法恢复回来。如果您不确定是否这么做,请联系您的管理员在继续这个操作。你却是想继续么?", -"Yes, I really want to reset my password now" => "是的,我想现在重置密码。", -"Request reset" => "要求重置", -"Your password was reset" => "你的密码已经被重置了", -"To login page" => "转至登陆页面", -"New password" => "新密码", -"Reset password" => "重置密码", -"Personal" => "私人", -"Users" => "用户", -"Apps" => "程序", -"Admin" => "管理员", -"Help" => "帮助", -"Access forbidden" => "禁止访问", -"Cloud not found" => "云 没有被找到", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "你好!⏎\n⏎\n温馨提示: %s 与您共享了 %s 。⏎\n查看: %s⏎\n⏎\n祝顺利!", -"Edit categories" => "编辑分类", -"Add" => "添加", -"Security Warning" => "安全警告", -"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "您的PHP版本是会受到NULL字节漏洞攻击的(CVE-2006-7243)", -"Please update your PHP installation to use %s securely." => "请安全地升级您的PHP版本到 %s 。", -"No secure random number generator is available, please enable the PHP OpenSSL extension." => "没有安全随机码生成器,请启用 PHP OpenSSL 扩展。", -"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "没有安全随机码生成器,黑客可以预测密码重置令牌并接管你的账户。", -"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "因为.htaccess文件无效,您的数据文件夹及文件可能可以在互联网上访问。", -"For information how to properly configure your server, please see the documentation." => "有关如何正确地配置您的服务器,请查看 文档。", -"Create an admin account" => "建立一个 管理帐户", -"Advanced" => "进阶", -"Data folder" => "数据存放文件夹", -"Configure the database" => "配置数据库", -"will be used" => "将会使用", -"Database user" => "数据库用户", -"Database password" => "数据库密码", -"Database name" => "数据库用户名", -"Database tablespace" => "数据库表格空间", -"Database host" => "数据库主机", -"Finish setup" => "完成安装", -"%s is available. Get more information on how to update." => "%s 是可用的。获取更多关于升级的信息。", -"Log out" => "注销", -"More apps" => "更多应用", -"Automatic logon rejected!" => "自动登录被拒绝!", -"If you did not change your password recently, your account may be compromised!" => "如果您最近没有修改您的密码,那您的帐号可能被攻击了!", -"Please change your password to secure your account again." => "请修改您的密码以保护账户。", -"Lost your password?" => "忘记密码?", -"remember" => "记住登录", -"Log in" => "登陆", -"Alternative Logins" => "备选登录", -"Hey there,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" => "你好!

温馨提示: %s 与您共享了 %s 。

\n查看: %s

祝顺利!", -"Updating ownCloud to version %s, this may take a while." => "ownCloud正在升级至 %s 版,这可能需要一点时间。" -); -$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index a5a63e2485..5784d828c1 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -1,6 +1,12 @@ "%s 向您分享了 »%s«", +"Turned on maintenance mode" => "启用维护模式", +"Turned off maintenance mode" => "关闭维护模式", +"Updated database" => "数据库已更新", +"Updating filecache, this may take really long..." => "正在更新文件缓存,这可能需要较长时间...", +"Updated filecache" => "文件缓存已更新", +"... %d%% done ..." => "...已完成 %d%% ...", "Category type not provided." => "未提供分类类型。", "No category to add?" => "没有可添加分类?", "This category already exists: %s" => "此分类已存在:%s", @@ -31,12 +37,12 @@ $TRANSLATIONS = array( "Settings" => "设置", "seconds ago" => "秒前", "_%n minute ago_::_%n minutes ago_" => array("%n 分钟前"), -"_%n hour ago_::_%n hours ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array("%n 小时前"), "today" => "今天", "yesterday" => "昨天", -"_%n day ago_::_%n days ago_" => array(""), +"_%n day ago_::_%n days ago_" => array("%n 天前"), "last month" => "上月", -"_%n month ago_::_%n months ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("%n 月前"), "months ago" => "月前", "last year" => "去年", "years ago" => "年前", @@ -47,7 +53,7 @@ $TRANSLATIONS = array( "Ok" => "好", "The object type is not specified." => "未指定对象类型。", "Error" => "错误", -"The app name is not specified." => "未指定App名称。", +"The app name is not specified." => "未指定应用名称。", "The required file {file} is not installed!" => "所需文件{file}未安装!", "Shared" => "已共享", "Share" => "分享", @@ -83,6 +89,7 @@ $TRANSLATIONS = array( "Email sent" => "邮件已发送", "The update was unsuccessful. Please report this issue to the ownCloud community." => "更新不成功。请汇报将此问题汇报给 ownCloud 社区。", "The update was successful. Redirecting you to ownCloud now." => "更新成功。正在重定向至 ownCloud。", +"%s password reset" => "重置 %s 的密码", "Use the following link to reset your password: {link}" => "使用以下链接重置您的密码:{link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "重置密码的链接已发送到您的邮箱。
如果您觉得在合理的时间内还未收到邮件,请查看 spam/junk 目录。
如果没有在那里,请询问您的本地管理员。", "Request failed!
Did you make sure your email/username was right?" => "请求失败
您确定您的邮箱/用户名是正确的?", @@ -107,9 +114,11 @@ $TRANSLATIONS = array( "Add" => "增加", "Security Warning" => "安全警告", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "你的PHP版本容易受到空字节攻击 (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "为保证安全使用 %s 请更新您的PHP。", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "随机数生成器无效,请启用PHP的OpenSSL扩展", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "没有安全随机码生成器,攻击者可能会猜测密码重置信息从而窃取您的账户", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "您的数据目录和文件可能可以直接被互联网访问,因为 .htaccess 并未正常工作。", +"For information how to properly configure your server, please see the documentation." => "关于如何配置服务器,请参见 此文档。", "Create an admin account" => "创建管理员账号", "Advanced" => "高级", "Data folder" => "数据目录", @@ -123,6 +132,7 @@ $TRANSLATIONS = array( "Finish setup" => "安装完成", "%s is available. Get more information on how to update." => "%s 可用。获取更多关于如何升级的信息。", "Log out" => "注销", +"More apps" => "更多应用", "Automatic logon rejected!" => "自动登录被拒绝!", "If you did not change your password recently, your account may be compromised!" => "如果您没有最近修改您的密码,您的帐户可能会受到影响!", "Please change your password to secure your account again." => "请修改您的密码,以保护您的账户安全。", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index d2cbb7a8fd..e1493452d8 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -30,13 +30,13 @@ $TRANSLATIONS = array( "December" => "十二月", "Settings" => "設定", "seconds ago" => "幾秒前", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), +"_%n minute ago_::_%n minutes ago_" => array("%n 分鐘前"), +"_%n hour ago_::_%n hours ago_" => array("%n 小時前"), "today" => "今天", "yesterday" => "昨天", -"_%n day ago_::_%n days ago_" => array(""), +"_%n day ago_::_%n days ago_" => array("%n 天前"), "last month" => "上個月", -"_%n month ago_::_%n months ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("%n 個月前"), "months ago" => "幾個月前", "last year" => "去年", "years ago" => "幾年前", @@ -83,6 +83,7 @@ $TRANSLATIONS = array( "Email sent" => "Email 已寄出", "The update was unsuccessful. Please report this issue to the ownCloud community." => "升級失敗,請將此問題回報 ownCloud 社群。", "The update was successful. Redirecting you to ownCloud now." => "升級成功,正將您重新導向至 ownCloud 。", +"%s password reset" => "%s 密碼重設", "Use the following link to reset your password: {link}" => "請至以下連結重設您的密碼: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "重設密碼的連結已經寄至您的電子郵件信箱,如果您過了一段時間還是沒有收到它,請檢查看看它是不是被放到垃圾郵件了,如果還是沒有的話,請聯絡您的 ownCloud 系統管理員。", "Request failed!
Did you make sure your email/username was right?" => "請求失敗!
您確定填入的電子郵件地址或是帳號名稱是正確的嗎?", @@ -125,6 +126,7 @@ $TRANSLATIONS = array( "Finish setup" => "完成設定", "%s is available. Get more information on how to update." => "%s 已經釋出,瞭解更多資訊以進行更新。", "Log out" => "登出", +"More apps" => "更多 Apps", "Automatic logon rejected!" => "自動登入被拒!", "If you did not change your password recently, your account may be compromised!" => "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!", "Please change your password to secure your account again." => "請更改您的密碼以再次取得您帳戶的控制權。", diff --git a/core/templates/login.php b/core/templates/login.php index 9143510f75..ee761f0aa5 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -21,12 +21,10 @@

- /> - -

diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 5673ceabd3..aedec21612 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -193,23 +218,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 6ebf523c19..460b687ed7 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index ab198f78ca..7ecb600f30 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Hulp" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Persoonlik" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Instellings" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Gebruikers" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index 2a6cffc209..97f1665f35 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index a89b43a872..6ff2f20122 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "نوع التصنيف لم يدخل" @@ -209,23 +234,23 @@ msgstr "السنةالماضية" msgid "years ago" msgstr "سنة مضت" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "اختيار" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "نعم" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "لا" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "موافق" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index e9f4352110..c814f86a38 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "تم إلغاء عملية رفع الملفات ." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "عنوان ال URL لا يجوز أن يكون فارغا." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "خطأ" @@ -200,23 +199,19 @@ msgid "" "big." msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "إسم مجلد غير صحيح. استخدام مصطلح \"Shared\" محجوز للنظام" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "اسم" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "حجم" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "معدل" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -226,7 +221,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 2e0845e812..849305d0f3 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "المساعدة" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "شخصي" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "إعدادات" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "المستخدمين" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "المدير" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "التطبيق غير مفعّل" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index b0dc71747b..a3d217bb4e 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "المجموعة موجودة مسبقاً" msgid "Unable to add group" msgstr "فشل إضافة المجموعة" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "فشل عملية تفعيل التطبيق" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "تم حفظ البريد الإلكتروني" @@ -92,31 +88,43 @@ msgstr "تعذر تحديث التطبيق." msgid "Update to {appversion}" msgstr "تم التحديث الى " -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "إيقاف" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "تفعيل" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "الرجاء الانتظار ..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "خطأ" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "جاري التحديث ..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "حصل خطأ أثناء تحديث التطبيق" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "خطأ" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "حدث" + +#: js/apps.js:122 msgid "Updated" msgstr "تم التحديث بنجاح" @@ -369,10 +377,6 @@ msgstr "راجع صفحة التطبيق على apps.owncloud.com" msgid "-licensed by " msgstr "-ترخيص من قبل " -#: templates/apps.php:43 -msgid "Update" -msgstr "حدث" - #: templates/help.php:4 msgid "User Documentation" msgstr "كتاب توثيق المستخدم" diff --git a/l10n/be/core.po b/l10n/be/core.po index a0b09af764..c474afadee 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -201,23 +226,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/be/files.po b/l10n/be/files.po index dab1498b5c..69819ec5ac 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -198,23 +197,19 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -222,7 +217,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 62d99ec8df..965d701fc2 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 1f1fe47226..8bb3a339ca 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 0a88faaffc..641f5322a7 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -193,23 +218,23 @@ msgstr "последната година" msgid "years ago" msgstr "последните години" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Не" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Добре" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 9224fb6a32..033c103f0e 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "Качването е спряно." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Грешка" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Променено" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 2d4ada2a9b..234bc905f5 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Помощ" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Лични" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Настройки" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Потребители" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Админ" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Приложението не е включено." diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 204560a4b9..c26480360d 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "Групата вече съществува" msgid "Unable to add group" msgstr "Невъзможно добавяне на група" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email адреса е записан" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "Обновяване до {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Изключено" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Включено" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Моля почакайте...." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Грешка" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Обновява се..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Грешка" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Обновяване" + +#: js/apps.js:122 msgid "Updated" msgstr "Обновено" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "Обновяване" - #: templates/help.php:4 msgid "User Documentation" msgstr "Потребителска документация" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index b4dcaa3e01..2211ac2ee4 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "ক্যাটেগরির ধরণটি প্রদান করা হয় নি।" @@ -193,23 +218,23 @@ msgstr "গত বছর" msgid "years ago" msgstr "বছর পূর্বে" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "বেছে নিন" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "হ্যাঁ" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "না" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "তথাস্তু" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index dfaafb4e10..0422f92b57 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "যথেষ্ঠ পরিমাণ স্থান নেই" msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে।" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL ফাঁকা রাখা যাবে না।" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "সমস্যা" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "রাম" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "আকার" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "পরিবর্তিত" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 367e8955b0..358cea2fd4 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "সহায়িকা" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "ব্যক্তিগত" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "ব্যবহারকারী" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "প্রশাসন" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "অ্যাপ্লিকেসনটি সক্রিয় নয়" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index a03ae46160..1f3fa4e093 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "গোষ্ঠীটি পূর্ব থেকেই বিদ্য msgid "Unable to add group" msgstr "গোষ্ঠী যোগ করা সম্ভব হলো না" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "অ্যপটি সক্রিয় করতে সক্ষম নয়।" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "ই-মেইল সংরক্ষন করা হয়েছে" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "নিষ্ক্রিয়" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "সক্রিয় " -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "সমস্যা" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "সমস্যা" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "পরিবর্ধন" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -369,10 +377,6 @@ msgstr "apps.owncloud.com এ অ্যাপ্লিকেসন পৃষ্ msgid "-licensed by " msgstr "-লাইসেন্সধারী " -#: templates/apps.php:43 -msgid "Update" -msgstr "পরিবর্ধন" - #: templates/help.php:4 msgid "User Documentation" msgstr "ব্যবহারকারী সহায়িকা" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index aaec19afac..4a81d1ca6f 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -197,23 +222,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index bd25245e3a..29f748a5dc 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -197,30 +196,26 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index 7c773af3f9..88246efdb6 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index 62b49ca53d..47c09790f2 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 3d5fb3ae48..6b7141c49c 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-22 10:36-0400\n" -"PO-Revision-Date: 2013-08-21 15:50+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s ha compartit »%s« amb tu" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "No s'ha especificat el tipus de categoria." diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 6912e2cea9..66e2e24f2a 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-22 10:35-0400\n" -"PO-Revision-Date: 2013-08-21 16:01+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -96,21 +96,20 @@ msgstr "No hi ha prou espai disponible" msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/file-upload.js:234 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "La URL no pot ser buida" -#: js/file-upload.js:239 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" -#: js/file-upload.js:270 js/file-upload.js:286 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Error" @@ -198,29 +197,25 @@ msgid "" "big." msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Mida" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetes" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fitxer" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index b2bb669e05..6e9651339a 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-22 10:36-0400\n" -"PO-Revision-Date: 2013-08-21 15:50+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 13:40+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "L'aplicació \"%s\" no es pot instal·lar perquè no és compatible amb aquesta versió d'ownCloud." + +#: app.php:250 +msgid "No app name specified" +msgstr "No heu especificat cap nom d'aplicació" + +#: app.php:361 msgid "Help" msgstr "Ajuda" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personal" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Configuració" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Usuaris" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administració" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ha fallat l'actualització \"%s\"." @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "Baixeu els fitxers en trossos petits, de forma separada, o pregunteu a l'administrador." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "No heu especificat la font en instal·lar l'aplicació" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "No heu especificat href en instal·lar l'aplicació des de http" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "No heu seleccionat el camí en instal·lar una aplicació des d'un fitxer local" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "Els fitxers del tipus %s no són compatibles" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "Ha fallat l'obertura del fitxer en instal·lar l'aplicació" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "L'aplicació no proporciona un fitxer info.xml" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "L'aplicació no es pot instal·lar perquè hi ha codi no autoritzat en l'aplicació" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "L'aplicació no es pot instal·lar perquè no és compatible amb aquesta versió d'ownCloud" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "L'aplicació no es pot instal·lar perquè conté l'etiqueta vertader que no es permet per aplicacions no enviades" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "L'aplicació no es pot instal·lar perquè la versió a info.xml/version no és la mateixa que la versió indicada des de la botiga d'aplicacions" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "La carpeta de l'aplicació ja existeix" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "No es pot crear la carpeta de l'aplicació. Arregleu els permisos. %s" + #: json.php:28 msgid "Application is not enabled" msgstr "L'aplicació no està habilitada" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index c80ac76c2d..00860a8a12 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-22 10:36-0400\n" -"PO-Revision-Date: 2013-08-21 15:40+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 13:31+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -44,10 +44,6 @@ msgstr "El grup ja existeix" msgid "Unable to add group" msgstr "No es pot afegir el grup" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "No s'ha pogut activar l'apliació" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "S'ha desat el correu electrònic" @@ -94,31 +90,43 @@ msgstr "No s'ha pogut actualitzar l'aplicació." msgid "Update to {appversion}" msgstr "Actualitza a {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Desactiva" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Habilita" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Espereu..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "Error en desactivar l'aplicació" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "Error en activar l'aplicació" + +#: js/apps.js:115 msgid "Updating...." msgstr "Actualitzant..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Error en actualitzar l'aplicació" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Error" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Actualitza" + +#: js/apps.js:122 msgid "Updated" msgstr "Actualitzada" @@ -371,10 +379,6 @@ msgstr "Mireu la pàgina d'aplicacions a apps.owncloud.com" msgid "-licensed by " msgstr "-propietat de " -#: templates/apps.php:43 -msgid "Update" -msgstr "Actualitza" - #: templates/help.php:4 msgid "User Documentation" msgstr "Documentació d'usuari" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 8c6b13494d..102b8a3d7b 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 13:31+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -156,7 +156,7 @@ msgstr "Filtre d'inici de sessió d'usuari" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "" +msgstr "Defineix el filtre a aplicar quan s'intenta iniciar la sessió. %%uid reemplaça el nom d'usuari en l'acció d'inici de sessió. Per exemple: \"uid=%%uid\"" #: templates/settings.php:55 msgid "User List Filter" @@ -166,7 +166,7 @@ msgstr "Llista de filtres d'usuari" msgid "" "Defines the filter to apply, when retrieving users (no placeholders). " "Example: \"objectClass=person\"" -msgstr "" +msgstr "Defineix el filtre a aplicar quan es mostren usuaris (no textos variables). Per exemple: \"objectClass=person\"" #: templates/settings.php:59 msgid "Group Filter" @@ -176,7 +176,7 @@ msgstr "Filtre de grup" msgid "" "Defines the filter to apply, when retrieving groups (no placeholders). " "Example: \"objectClass=posixGroup\"" -msgstr "" +msgstr "Defineix el filtre a aplicar quan es mostren grups (no textos variables). Per exemple: \"objectClass=posixGroup\"" #: templates/settings.php:66 msgid "Connection Settings" @@ -237,7 +237,7 @@ msgstr "Desactiva la validació de certificat SSL." msgid "" "Not recommended, use it for testing only! If connection only works with this" " option, import the LDAP server's SSL certificate in your %s server." -msgstr "" +msgstr "No es recomana, useu-ho només com a prova! Importeu el certificat SSL del servidor LDAP al servidor %s només si la connexió funciona amb aquesta opció." #: templates/settings.php:76 msgid "Cache Time-To-Live" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 37ee596b32..976d3cfdb5 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -27,6 +27,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s s vámi sdílí »%s«" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Nezadán typ kategorie." @@ -202,23 +227,23 @@ msgstr "minulý rok" msgid "years ago" msgstr "před lety" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Vybrat" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Chyba při načítání šablony výběru souborů" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Ano" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Ne" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ok" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index a83237e41f..9659af9c1d 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-20 15:51+0000\n" -"Last-Translator: cvanca \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -98,21 +98,20 @@ msgstr "Nedostatek volného místa" msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání." -#: js/file-upload.js:234 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL nemůže být prázdná." -#: js/file-upload.js:239 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Název složky nelze použít. Použití názvu 'Shared' je ownCloudem rezervováno" -#: js/file-upload.js:270 js/file-upload.js:286 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Chyba" @@ -201,30 +200,26 @@ msgid "" "big." msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Neplatný název složky. Pojmenování 'Shared' je rezervováno pro vnitřní potřeby ownCloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Název" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Velikost" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Upraveno" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n složka" msgstr[1] "%n složky" msgstr[2] "%n složek" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n soubor" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 8c710f73a5..d64ce09fe3 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -20,27 +20,38 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Nápověda" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Osobní" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Nastavení" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Uživatelé" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administrace" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Selhala aktualizace verze \"%s\"." @@ -76,6 +87,62 @@ msgid "" "administrator." msgstr "Stáhněte soubory po menších částech, samostatně, nebo se obraťte na správce." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplikace není povolena" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index a514ea6807..9cb3b6446f 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-22 10:36-0400\n" -"PO-Revision-Date: 2013-08-22 14:00+0000\n" -"Last-Translator: cvanca \n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,10 +46,6 @@ msgstr "Skupina již existuje" msgid "Unable to add group" msgstr "Nelze přidat skupinu" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Nelze povolit aplikaci." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail uložen" @@ -96,31 +92,43 @@ msgstr "Nelze aktualizovat aplikaci." msgid "Update to {appversion}" msgstr "Aktualizovat na {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Zakázat" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Povolit" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Čekejte prosím..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Chyba" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Aktualizuji..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Chyba při aktualizaci aplikace" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Chyba" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Aktualizovat" + +#: js/apps.js:122 msgid "Updated" msgstr "Aktualizováno" @@ -373,10 +381,6 @@ msgstr "Více na stránce s aplikacemi na apps.owncloud.com" msgid "-licensed by " msgstr "-licencováno " -#: templates/apps.php:43 -msgid "Update" -msgstr "Aktualizovat" - #: templates/help.php:4 msgid "User Documentation" msgstr "Uživatelská dokumentace" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index f9b74a7649..26b314362f 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Math o gategori heb ei ddarparu." @@ -202,23 +227,23 @@ msgstr "y llynedd" msgid "years ago" msgstr "blwyddyn yn ôl" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Dewisiwch" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Ie" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Na" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Iawn" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index a5c216a535..3d8d0f81fb 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "Dim digon o le ar gael" msgid "Upload cancelled." msgstr "Diddymwyd llwytho i fyny." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "Does dim hawl cael URL gwag." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Gwall" @@ -198,23 +197,19 @@ msgid "" "big." msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Owncloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Enw" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Maint" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Addaswyd" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -222,7 +217,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index e0aa60f01d..0ccf384773 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Cymorth" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personol" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Gosodiadau" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Defnyddwyr" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Gweinyddu" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Nid yw'r pecyn wedi'i alluogi" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index ed67da103c..e74e9a473f 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Gwall" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Gwall" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/da/core.po b/l10n/da/core.po index 4f224cbaca..68c71a9ef2 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" +"Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,6 +26,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s delte »%s« med sig" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "Startede vedligeholdelsestilstand" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "standsede vedligeholdelsestilstand" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "Opdaterede database" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "Opdatere filcache, dette kan tage rigtigt lang tid..." + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "Opdaterede filcache" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "... %d%% færdig ..." + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Kategori typen ikke er fastsat." @@ -197,23 +222,23 @@ msgstr "sidste år" msgid "years ago" msgstr "år siden" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Vælg" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Fejl ved indlæsning af filvælger skabelon" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Nej" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "OK" diff --git a/l10n/da/files.po b/l10n/da/files.po index e043bee154..218518cb6e 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-20 19:40+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -97,21 +97,20 @@ msgstr "ikke nok tilgængelig ledig plads " msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/file-upload.js:234 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URLen kan ikke være tom." -#: js/file-upload.js:239 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ugyldigt mappenavn. Brug af 'Shared' er forbeholdt af ownCloud" -#: js/file-upload.js:270 js/file-upload.js:286 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Fejl" @@ -199,29 +198,25 @@ msgid "" "big." msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Størrelse" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Ændret" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" @@ -254,7 +249,7 @@ msgstr "Nødvendigt for at kunne downloade mapper og flere filer ad gangen." #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Muliggør ZIP-download" +msgstr "Tillad ZIP-download" #: templates/admin.php:20 msgid "0 is unlimited" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 95d0d373d8..7873b58ef5 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -20,27 +20,38 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Hjælp" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personligt" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Indstillinger" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Brugere" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgradering af \"%s\" fejlede" @@ -76,6 +87,62 @@ msgid "" "administrator." msgstr "Download filerne i små bider, seperat, eller kontakt venligst din administrator." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Programmet er ikke aktiveret" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index b43c939dde..5119c9950a 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-20 19:40+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 15:40+0000\n" "Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -45,10 +45,6 @@ msgstr "Gruppen findes allerede" msgid "Unable to add group" msgstr "Gruppen kan ikke oprettes" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Applikationen kunne ikke aktiveres." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email adresse gemt" @@ -95,31 +91,43 @@ msgstr "Kunne ikke opdatere app'en." msgid "Update to {appversion}" msgstr "Opdatér til {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Deaktiver" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Aktiver" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Vent venligst..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Fejl" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "Kunne ikke deaktivere app" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "Kunne ikke aktivere app" + +#: js/apps.js:115 msgid "Updating...." msgstr "Opdaterer...." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Der opstod en fejl under app opgraderingen" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Fejl" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Opdater" + +#: js/apps.js:122 msgid "Updated" msgstr "Opdateret" @@ -372,10 +380,6 @@ msgstr "Se applikationens side på apps.owncloud.com" msgid "-licensed by " msgstr "-licenseret af " -#: templates/apps.php:43 -msgid "Update" -msgstr "Opdater" - #: templates/help.php:4 msgid "User Documentation" msgstr "Brugerdokumentation" diff --git a/l10n/de/core.po b/l10n/de/core.po index 707d01e384..9a2039502c 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-28 08:30+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,6 +30,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s teilte »%s« mit Ihnen" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "Wartungsmodus eingeschaltet" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "Wartungsmodus ausgeschaltet" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "Datenbank aktualisiert" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "Aktualisiere Dateicache, dies könnte eine Weile dauern..." + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "Dateicache aktualisiert" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "... %d%% erledigt ..." + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Kategorie nicht angegeben." @@ -201,23 +226,23 @@ msgstr "Letztes Jahr" msgid "years ago" msgstr "Vor Jahren" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Auswählen" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Dateiauswahltemplate konnte nicht geladen werden" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Nein" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "OK" diff --git a/l10n/de/files.po b/l10n/de/files.po index d1a6526c48..a18eb37b0d 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-20 12:40+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -100,21 +100,20 @@ msgstr "Nicht genug Speicherplatz verfügbar" msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/file-upload.js:234 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein." -#: js/file-upload.js:239 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Der Ordnername ist ungültig. Nur ownCloud kann den Ordner \"Shared\" anlegen" -#: js/file-upload.js:270 js/file-upload.js:286 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Fehler" @@ -202,29 +201,25 @@ msgid "" "big." msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten." - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Größe" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Geändert" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index e166194482..fff88cd0e3 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -5,14 +5,15 @@ # Translators: # Mario Siegmann , 2013 # ninov , 2013 +# noxin , 2013 # Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 10:05+0000\n" +"Last-Translator: noxin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,27 +21,38 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "Applikation \"%s\" kann nicht installiert werden, da sie mit dieser ownCloud Version nicht kompatibel ist." + +#: app.php:250 +msgid "No app name specified" +msgstr "Es wurde kein App-Name angegeben" + +#: app.php:361 msgid "Help" msgstr "Hilfe" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Persönlich" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Einstellungen" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Benutzer" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administration" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -76,6 +88,62 @@ msgid "" "administrator." msgstr "Lade die Dateien in kleineren, separaten, Stücken herunter oder bitte deinen Administrator." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "Für die Installation der Applikation wurde keine Quelle angegeben" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "href wurde nicht angegeben um die Applikation per http zu installieren" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "Archive vom Typ %s werden nicht unterstützt" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "Das Archive konnte bei der Installation der Applikation nicht geöffnet werden" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "Die Applikation enthält keine info,xml Datei" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "Die Applikation kann auf Grund von unerlaubten Code nicht installiert werden" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "Das Applikationsverzeichnis existiert bereits" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "Es kann kein Applikationsordner erstellt werden. Bitte passen sie die Berechtigungen an. %s" + #: json.php:28 msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 2398da2d95..dbf98f0bf8 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-20 12:50+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,10 +47,6 @@ msgstr "Gruppe existiert bereits" msgid "Unable to add group" msgstr "Gruppe konnte nicht angelegt werden" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "App konnte nicht aktiviert werden." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-Mail Adresse gespeichert" @@ -97,31 +93,43 @@ msgstr "Die App konnte nicht aktualisiert werden." msgid "Update to {appversion}" msgstr "Aktualisiere zu {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Aktivieren" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Bitte warten..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Fehler" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Aktualisierung..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Fehler beim Aktualisieren der App" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Fehler" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Aktualisierung durchführen" + +#: js/apps.js:122 msgid "Updated" msgstr "Aktualisiert" @@ -374,10 +382,6 @@ msgstr "Weitere Anwendungen findest Du auf apps.owncloud.com" msgid "-licensed by " msgstr "-lizenziert von " -#: templates/apps.php:43 -msgid "Update" -msgstr "Aktualisierung durchführen" - #: templates/help.php:4 msgid "User Documentation" msgstr "Dokumentation für Benutzer" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index d26af5c3d7..d6a26eb7c4 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -194,23 +219,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 5f0e9fd18a..4476d1f102 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index f4911a0682..7666303833 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index d21b2d2b2b..11e3ea1c60 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index deacb1c3c4..95a01f1ff1 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -5,6 +5,7 @@ # Translators: # arkascha , 2013 # FlorianScholz , 2013 +# FlorianScholz , 2013 # I Robot , 2013 # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 @@ -15,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -30,6 +31,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s teilt »%s« mit Ihnen" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Kategorie nicht angegeben." @@ -156,14 +182,14 @@ msgstr "Gerade eben" #: js/js.js:813 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Vor %n Minute" +msgstr[1] "Vor %n Minuten" #: js/js.js:814 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Vor %n Stunde" +msgstr[1] "Vor %n Stunden" #: js/js.js:815 msgid "today" @@ -176,8 +202,8 @@ msgstr "Gestern" #: js/js.js:817 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Vor %n Tag" +msgstr[1] "Vor %n Tagen" #: js/js.js:818 msgid "last month" @@ -186,8 +212,8 @@ msgstr "Letzten Monat" #: js/js.js:819 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Vor %n Monat" +msgstr[1] "Vor %n Monaten" #: js/js.js:820 msgid "months ago" @@ -201,23 +227,23 @@ msgstr "Letztes Jahr" msgid "years ago" msgstr "Vor Jahren" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Auswählen" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Es ist ein Fehler in der Vorlage des Datei-Auswählers aufgetreten." -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Nein" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "OK" @@ -384,7 +410,7 @@ msgstr "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet." #: lostpassword/controller.php:61 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s-Passwort zurücksetzen" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 8befee513b..fae903c9a3 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -5,6 +5,7 @@ # Translators: # a.tangemann , 2013 # FlorianScholz , 2013 +# FlorianScholz , 2013 # I Robot , 2013 # kabum , 2013 # Marcel Kühlhorn , 2013 @@ -15,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -102,21 +103,20 @@ msgstr "Nicht genügend Speicherplatz verfügbar" msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ungültiger Ordnername. Die Verwendung von «Shared» ist ownCloud vorbehalten." -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Fehler" @@ -163,8 +163,8 @@ msgstr "rückgängig machen" #: js/filelist.js:453 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n Datei wird hochgeladen" +msgstr[1] "%n Dateien werden hochgeladen" #: js/filelist.js:518 msgid "files uploading" @@ -196,7 +196,7 @@ msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." #: js/files.js:245 msgid "" @@ -204,33 +204,29 @@ msgid "" "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei grösseren Dateien etwas dauern." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Ungültiger Verzeichnisname. Die Nutzung von «Shared» ist ownCloud vorbehalten" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Grösse" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Geändert" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n Ordner" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n Dateien" #: lib/app.php:73 #, php-format diff --git a/l10n/de_CH/files_encryption.po b/l10n/de_CH/files_encryption.po index ccf349afd9..774a241051 100644 --- a/l10n/de_CH/files_encryption.po +++ b/l10n/de_CH/files_encryption.po @@ -5,6 +5,7 @@ # Translators: # ako84 , 2013 # FlorianScholz , 2013 +# FlorianScholz , 2013 # JamFX , 2013 # Mario Siegmann , 2013 # traductor , 2013 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 08:20+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,7 +76,7 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." #: hooks/hooks.php:249 msgid "Following users are not set up for encryption:" diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index 1d80e2f437..5061816a4d 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/files_trashbin.po @@ -4,14 +4,15 @@ # # Translators: # FlorianScholz , 2013 +# FlorianScholz , 2013 # Mario Siegmann , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 08:30+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,14 +57,14 @@ msgstr "Gelöscht" #: js/trash.js:191 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n Ordner" +msgstr[1] "%n Ordner" #: js/trash.js:197 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n Datei" +msgstr[1] "%n Dateien" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index f196e68f99..11d2f26f5a 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -4,15 +4,16 @@ # # Translators: # FlorianScholz , 2013 +# FlorianScholz , 2013 # Mario Siegmann , 2013 # traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 06:30+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,27 +21,38 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "Anwendung \"%s\" kann nicht installiert werden, da sie mit dieser Version von ownCloud nicht kompatibel ist." + +#: app.php:250 +msgid "No app name specified" +msgstr "Kein App-Name spezifiziert" + +#: app.php:361 msgid "Help" msgstr "Hilfe" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Persönlich" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Einstellungen" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Benutzer" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administrator" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -76,6 +88,62 @@ msgid "" "administrator." msgstr "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "Anwendung kann wegen nicht erlaubten Codes nicht installiert werden" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "Anwendungsverzeichnis existiert bereits" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" @@ -208,13 +276,13 @@ msgstr "Gerade eben" msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "Vor %n Minuten" #: template/functions.php:82 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "Vor %n Stunden" #: template/functions.php:83 msgid "today" @@ -228,7 +296,7 @@ msgstr "Gestern" msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "Vor %n Tagen" #: template/functions.php:86 msgid "last month" @@ -238,7 +306,7 @@ msgstr "Letzten Monat" msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "Vor %n Monaten" #: template/functions.php:88 msgid "last year" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index 6193f9b28e..5e184ab89b 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -6,6 +6,7 @@ # arkascha , 2013 # a.tangemann , 2013 # FlorianScholz , 2013 +# FlorianScholz , 2013 # kabum , 2013 # Mario Siegmann , 2013 # Mirodin , 2013 @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 06:30+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,10 +50,6 @@ msgstr "Die Gruppe existiert bereits" msgid "Unable to add group" msgstr "Die Gruppe konnte nicht angelegt werden" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Die Anwendung konnte nicht aktiviert werden." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-Mail-Adresse gespeichert" @@ -99,37 +96,49 @@ msgstr "Die App konnte nicht aktualisiert werden." msgid "Update to {appversion}" msgstr "Update zu {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Aktivieren" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Bitte warten...." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Fehler" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "Fehler während der Deaktivierung der Anwendung" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "Fehler während der Aktivierung der Anwendung" + +#: js/apps.js:115 msgid "Updating...." msgstr "Update..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Es ist ein Fehler während des Updates aufgetreten" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Fehler" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Update durchführen" + +#: js/apps.js:122 msgid "Updated" msgstr "Aktualisiert" #: js/personal.js:150 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "Entschlüssel Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen." #: js/personal.js:172 msgid "Saving..." @@ -376,10 +385,6 @@ msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" msgid "-licensed by " msgstr "-lizenziert von " -#: templates/apps.php:43 -msgid "Update" -msgstr "Update durchführen" - #: templates/help.php:4 msgid "User Documentation" msgstr "Dokumentation für Benutzer" @@ -482,15 +487,15 @@ msgstr "Verschlüsselung" #: templates/personal.php:119 msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "" +msgstr "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt. " #: templates/personal.php:125 msgid "Log-in password" -msgstr "" +msgstr "Login-Passwort" #: templates/personal.php:130 msgid "Decrypt all Files" -msgstr "" +msgstr "Alle Dateien entschlüsseln" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index 9081b095a9..0267d804b6 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -5,6 +5,7 @@ # Translators: # a.tangemann , 2013 # FlorianScholz , 2013 +# FlorianScholz , 2013 # JamFX , 2013 # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 06:30+0000\n" +"Last-Translator: FlorianScholz \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -162,7 +163,7 @@ msgstr "Benutzer-Login-Filter" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "" +msgstr "Bestimmt den Filter, welcher bei einer Anmeldung angewandt wird. %%uid ersetzt den Benutzernamen bei der Anmeldung. Beispiel: \"uid=%%uid\"" #: templates/settings.php:55 msgid "User List Filter" @@ -172,7 +173,7 @@ msgstr "Benutzer-Filter-Liste" msgid "" "Defines the filter to apply, when retrieving users (no placeholders). " "Example: \"objectClass=person\"" -msgstr "" +msgstr "Definiert den Filter für die Wiederherstellung eines Benutzers (kein Platzhalter). Beispiel: \"objectClass=person\"" #: templates/settings.php:59 msgid "Group Filter" @@ -182,7 +183,7 @@ msgstr "Gruppen-Filter" msgid "" "Defines the filter to apply, when retrieving groups (no placeholders). " "Example: \"objectClass=posixGroup\"" -msgstr "" +msgstr "Definiert den Filter für die Wiederherstellung einer Gruppe (kein Platzhalter). Beispiel: \"objectClass=posixGroup\"" #: templates/settings.php:66 msgid "Connection Settings" @@ -243,7 +244,7 @@ msgstr "Schalten Sie die SSL-Zertifikatsprüfung aus." msgid "" "Not recommended, use it for testing only! If connection only works with this" " option, import the LDAP server's SSL certificate in your %s server." -msgstr "" +msgstr "Nur für Testzwecke geeignet, sollte Standardmäßig nicht verwendet werden. Falls die Verbindung nur mit dieser Option funktioniert, importieren Sie das SSL-Zertifikat des LDAP-Servers in Ihren %s Server." #: templates/settings.php:76 msgid "Cache Time-To-Live" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index da78f8613c..9ef89b0fc8 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-28 08:30+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,6 +30,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s geteilt »%s« mit Ihnen" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "Wartungsmodus eingeschaltet " + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "Wartungsmodus ausgeschaltet" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "Datenbank aktualisiert" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "Aktualisiere Dateicache, dies könnte eine Weile dauern..." + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "Dateicache aktualisiert" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "... %d%% erledigt ..." + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Kategorie nicht angegeben." @@ -201,23 +226,23 @@ msgstr "Letztes Jahr" msgid "years ago" msgstr "Vor Jahren" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Auswählen" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Es ist ein Fehler in der Vorlage des Datei-Auswählers aufgetreten." -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Nein" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "OK" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 9bab6784cd..03c2d0b576 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-20 06:50+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -102,21 +102,20 @@ msgstr "Nicht genügend Speicherplatz verfügbar" msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/file-upload.js:234 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein." -#: js/file-upload.js:239 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ungültiger Ordnername. Die Verwendung von \"Shared\" ist ownCloud vorbehalten." -#: js/file-upload.js:270 js/file-upload.js:286 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Fehler" @@ -204,29 +203,25 @@ msgid "" "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Größe" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Geändert" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index ff98de66e2..567fcc9a52 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 12:00+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,27 +20,38 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Hilfe" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Persönlich" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Einstellungen" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Benutzer" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administrator" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -76,6 +87,62 @@ msgid "" "administrator." msgstr "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "Archive des Typs %s werden nicht unterstützt." + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "Die Anwendung konnte nicht installiert werden, weil Sie nicht mit dieser Version von ownCloud kompatibel ist." + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "Der Ordner für die Anwendung existiert bereits." + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "Der Ordner für die Anwendung konnte nicht angelegt werden. Bitte überprüfen Sie die Ordner- und Dateirechte und passen Sie diese entsprechend an. %s" + #: json.php:28 msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 92428b183d..0eb0623b9f 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -7,15 +7,16 @@ # arkascha , 2013 # Mario Siegmann , 2013 # traductor , 2013 +# noxin , 2013 # Mirodin , 2013 # kabum , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-20 12:50+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 12:00+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,10 +49,6 @@ msgstr "Die Gruppe existiert bereits" msgid "Unable to add group" msgstr "Die Gruppe konnte nicht angelegt werden" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Die Anwendung konnte nicht aktiviert werden." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-Mail-Adresse gespeichert" @@ -98,31 +95,43 @@ msgstr "Die App konnte nicht aktualisiert werden." msgid "Update to {appversion}" msgstr "Update zu {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Aktivieren" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Bitte warten...." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Fehler" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "Beim deaktivieren der Applikation ist ein Fehler aufgetreten." -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "Beim aktivieren der Applikation ist ein Fehler aufgetreten." + +#: js/apps.js:115 msgid "Updating...." msgstr "Update..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Es ist ein Fehler während des Updates aufgetreten" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Fehler" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Update durchführen" + +#: js/apps.js:122 msgid "Updated" msgstr "Aktualisiert" @@ -190,7 +199,7 @@ msgid "" "configure your webserver in a way that the data directory is no longer " "accessible or you move the data directory outside the webserver document " "root." -msgstr "Ihr Datenverzeichnis und Ihre Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." +msgstr "Ihr Datenverzeichnis und Ihre Dateien sind möglicherweise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." #: templates/admin.php:29 msgid "Setup Warning" @@ -240,7 +249,7 @@ msgid "" "installation of 3rd party apps don´t work. Accessing files from remote and " "sending of notification emails might also not work. We suggest to enable " "internet connection for this server if you want to have all features." -msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." +msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen nutzen wollen." #: templates/admin.php:92 msgid "Cron" @@ -258,7 +267,7 @@ msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich #: templates/admin.php:115 msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "Benutzen Sie den System-Crondienst um die cron.php minütlich aufzurufen." +msgstr "Benutzen Sie den System-Crondienst, um die cron.php minütlich aufzurufen." #: templates/admin.php:120 msgid "Sharing" @@ -282,7 +291,7 @@ msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" #: templates/admin.php:143 msgid "Allow public uploads" -msgstr "Erlaube öffentliches hochladen" +msgstr "Öffentliches Hochladen erlauben" #: templates/admin.php:144 msgid "" @@ -375,10 +384,6 @@ msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" msgid "-licensed by " msgstr "-lizenziert von " -#: templates/apps.php:43 -msgid "Update" -msgstr "Update durchführen" - #: templates/help.php:4 msgid "User Documentation" msgstr "Dokumentation für Benutzer" diff --git a/l10n/el/core.po b/l10n/el/core.po index f44d160184..a91b290a56 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -29,6 +29,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "Ο %s διαμοιράστηκε μαζί σας το »%s«" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Δεν δώθηκε τύπος κατηγορίας." @@ -200,23 +225,23 @@ msgstr "τελευταίο χρόνο" msgid "years ago" msgstr "χρόνια πριν" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Επιλέξτε" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Σφάλμα φόρτωσης αρχείου επιλογέα προτύπου" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Ναι" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Όχι" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Οκ" diff --git a/l10n/el/files.po b/l10n/el/files.po index 33d7469427..2ae026cfed 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -96,21 +96,20 @@ msgstr "Δεν υπάρχει αρκετός διαθέσιμος χώρος" msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "Η URL δεν μπορεί να είναι κενή." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από το ownCloud" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Σφάλμα" @@ -198,29 +197,25 @@ msgid "" "big." msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Όνομα" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 3fbac4a742..5ef8670779 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Βοήθεια" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Προσωπικά" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Ρυθμίσεις" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Χρήστες" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Διαχειριστής" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Αποτυχία αναβάθμισης του \"%s\"." @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "Λήψη των αρχείων σε μικρότερα κομμάτια, χωριστά ή ρωτήστε τον διαχειριστή σας." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Δεν ενεργοποιήθηκε η εφαρμογή" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 518615afaa..c8580902be 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -48,10 +48,6 @@ msgstr "Η ομάδα υπάρχει ήδη" msgid "Unable to add group" msgstr "Αδυναμία προσθήκης ομάδας" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Αδυναμία ενεργοποίησης εφαρμογής " - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Το email αποθηκεύτηκε " @@ -98,31 +94,43 @@ msgstr "Αδυναμία ενημέρωσης εφαρμογής" msgid "Update to {appversion}" msgstr "Ενημέρωση σε {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Απενεργοποίηση" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Ενεργοποίηση" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Παρακαλώ περιμένετε..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Σφάλμα" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Ενημέρωση..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Σφάλμα κατά την ενημέρωση της εφαρμογής" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Σφάλμα" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Ενημέρωση" + +#: js/apps.js:122 msgid "Updated" msgstr "Ενημερώθηκε" @@ -375,10 +383,6 @@ msgstr "Δείτε την σελίδα εφαρμογών στο apps.owncloud.c msgid "-licensed by " msgstr "-άδεια από " -#: templates/apps.php:43 -msgid "Update" -msgstr "Ενημέρωση" - #: templates/help.php:4 msgid "User Documentation" msgstr "Τεκμηρίωση Χρήστη" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index 3def685936..f2ee458fc9 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -194,23 +219,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 8d37893029..c5bb03e57e 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index bd3831f274..6cc0184b83 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index 9c6e9df5d6..95bb346d1a 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 0ce78d871f..a11e637c69 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s kunhavigis “%s” kun vi" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Ne proviziĝis tipon de kategorio." @@ -195,23 +220,23 @@ msgstr "lastajare" msgid "years ago" msgstr "jaroj antaŭe" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Elekti" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Jes" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Ne" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Akcepti" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 418410ebe5..6ca34ebb81 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -95,21 +95,20 @@ msgstr "Ne haveblas sufiĉa spaco" msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL ne povas esti malplena." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nevalida dosierujnomo. La uzo de “Shared” estas rezervita de ownCloud." -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Eraro" @@ -197,29 +196,25 @@ msgid "" "big." msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nevalida dosierujnomo. Uzo de “Shared” rezervatas de Owncloud." - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nomo" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Grando" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Modifita" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 45f14563ca..4f336569e9 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Helpo" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Persona" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Agordo" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Uzantoj" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administranto" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "La aplikaĵo ne estas kapabligita" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 48f4bb536a..e45c1e0d27 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "La grupo jam ekzistas" msgid "Unable to add group" msgstr "Ne eblis aldoni la grupon" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Ne eblis kapabligi la aplikaĵon." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "La retpoŝtadreso konserviĝis" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Malkapabligi" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Kapabligi" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Eraro" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Eraro" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Ĝisdatigi" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -369,10 +377,6 @@ msgstr "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com" msgid "-licensed by " msgstr "-permesilhavigita de " -#: templates/apps.php:43 -msgid "Update" -msgstr "Ĝisdatigi" - #: templates/help.php:4 msgid "User Documentation" msgstr "Dokumentaro por uzantoj" diff --git a/l10n/es/core.po b/l10n/es/core.po index 9baa98366d..ebe8564fa8 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -31,6 +31,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s compatido »%s« contigo" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Tipo de categoría no proporcionado." @@ -202,23 +227,23 @@ msgstr "el año pasado" msgid "years ago" msgstr "hace años" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Seleccionar" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Error cargando la plantilla del seleccionador de archivos" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "No" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Aceptar" diff --git a/l10n/es/files.po b/l10n/es/files.po index a05bd94c82..b396e77081 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -99,21 +99,20 @@ msgstr "No hay suficiente espacio disponible" msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si sale de la página ahora cancelará la subida." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "La URL no puede estar vacía." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nombre de carpeta invalido. El uso de \"Shared\" está reservado por ownCloud" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Error" @@ -201,29 +200,25 @@ msgid "" "big." msgstr "Su descarga está siendo preparada. Esto puede tardar algún tiempo si los archivos son grandes." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nombre de carpeta no es válido. El uso de \"Shared\" está reservado por Owncloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index f66d906b20..45ab92b80c 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,38 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Ayuda" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personal" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Ajustes" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Usuarios" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administración" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falló la actualización \"%s\"." @@ -75,6 +86,62 @@ msgid "" "administrator." msgstr "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente su administrador." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "La aplicación no está habilitada" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 6d6a4b4186..10adfedf50 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -4,6 +4,7 @@ # # Translators: # Art O. Pal , 2013 +# eadeprado , 2013 # ggam , 2013 # pablomillaquen , 2013 # qdneren , 2013 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 08:01+0000\n" +"Last-Translator: eadeprado \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,7 +39,7 @@ msgstr "Su nombre fue cambiado." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "No se pudo cambiar el nombre" +msgstr "No se pudo cambiar el nombre de usuario" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -48,10 +49,6 @@ msgstr "El grupo ya existe" msgid "Unable to add group" msgstr "No se pudo añadir el grupo" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "No puedo habilitar la aplicación." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail guardado" @@ -98,31 +95,43 @@ msgstr "No se pudo actualizar la aplicacion." msgid "Update to {appversion}" msgstr "Actualizado a {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Activar" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Espere, por favor...." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Actualizando...." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Error mientras se actualizaba la aplicación" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Error" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Actualizar" + +#: js/apps.js:122 msgid "Updated" msgstr "Actualizado" @@ -136,7 +145,7 @@ msgstr "Guardando..." #: js/users.js:47 msgid "deleted" -msgstr "borrado" +msgstr "Eliminado" #: js/users.js:47 msgid "undo" @@ -153,7 +162,7 @@ msgstr "Grupos" #: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" -msgstr "Grupo administrador" +msgstr "Administrador del Grupo" #: js/users.js:120 templates/users.php:164 msgid "Delete" @@ -165,7 +174,7 @@ msgstr "añadir Grupo" #: js/users.js:436 msgid "A valid username must be provided" -msgstr "Se debe usar un nombre de usuario válido" +msgstr "Se debe proporcionar un nombre de usuario válido" #: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" @@ -173,7 +182,7 @@ msgstr "Error al crear usuario" #: js/users.js:442 msgid "A valid password must be provided" -msgstr "Se debe usar una contraseña valida" +msgstr "Se debe proporcionar una contraseña valida" #: personal.php:40 personal.php:41 msgid "__language_name__" @@ -200,7 +209,7 @@ msgstr "Advertencia de configuración" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." +msgstr "Su servidor web aún no está configurado adecuadamente para permitir la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." #: templates/admin.php:33 #, php-format @@ -209,7 +218,7 @@ msgstr "Por favor, vuelva a comprobar las guías de instalación-licensed by " msgstr "-licenciado por " -#: templates/apps.php:43 -msgid "Update" -msgstr "Actualizar" - #: templates/help.php:4 msgid "User Documentation" msgstr "Documentación de usuario" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 4bae50605b..06f8c7904d 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s compartió \"%s\" con vos" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Tipo de categoría no provisto. " @@ -194,23 +219,23 @@ msgstr "el año pasado" msgid "years ago" msgstr "años atrás" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Elegir" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Error al cargar la plantilla del seleccionador de archivos" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "No" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Aceptar" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index bc891faa03..013ab1b95d 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -96,21 +96,20 @@ msgstr "No hay suficiente espacio disponible" msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "La URL no puede estar vacía" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nombre de directorio inválido. El uso de \"Shared\" está reservado por ownCloud" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Error" @@ -198,29 +197,25 @@ msgid "" "big." msgstr "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index b557cf5ae7..1ae0a4d355 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Ayuda" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personal" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Configuración" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Usuarios" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administración" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "No se pudo actualizar \"%s\"." @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "Descargá los archivos en partes más chicas, de forma separada, o pedíselos al administrador" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "La aplicación no está habilitada" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 9eaa7d4e7e..94c0ce3af8 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -44,10 +44,6 @@ msgstr "El grupo ya existe" msgid "Unable to add group" msgstr "No fue posible añadir el grupo" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "No se pudo habilitar la App." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "e-mail guardado" @@ -94,31 +90,43 @@ msgstr "No se pudo actualizar la App." msgid "Update to {appversion}" msgstr "Actualizar a {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Activar" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Por favor, esperá...." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Actualizando...." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Error al actualizar App" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Error" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Actualizar" + +#: js/apps.js:122 msgid "Updated" msgstr "Actualizado" @@ -371,10 +379,6 @@ msgstr "Mirá la web de aplicaciones apps.owncloud.com" msgid "-licensed by " msgstr "-licenciado por " -#: templates/apps.php:43 -msgid "Update" -msgstr "Actualizar" - #: templates/help.php:4 msgid "User Documentation" msgstr "Documentación de Usuario" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 57158ce0f0..0af60809ed 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-22 10:36-0400\n" -"PO-Revision-Date: 2013-08-22 09:40+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-28 09:30+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s jagas sinuga »%s«" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "Haldusreziimis" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "Haldusreziim lõpetatud" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "Uuendatud andmebaas" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "Uuendan failipuhvrit, see võib kesta väga kaua..." + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "Uuendatud failipuhver" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "... %d%% tehtud ..." + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Kategooria tüüp puudub." diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 582197b1dc..647475a3a1 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-22 10:35-0400\n" -"PO-Revision-Date: 2013-08-22 09:50+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -96,21 +96,20 @@ msgstr "Pole piisavalt ruumi" msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." -#: js/file-upload.js:234 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL ei saa olla tühi." -#: js/file-upload.js:239 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Vigane kausta nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt." -#: js/file-upload.js:270 js/file-upload.js:286 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Viga" @@ -198,29 +197,25 @@ msgid "" "big." msgstr "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. " -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Vigane kataloogi nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt." - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Suurus" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Muudetud" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kataloog" msgstr[1] "%n kataloogi" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 23ab2c23ea..4e49c86def 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-22 10:36-0400\n" -"PO-Revision-Date: 2013-08-22 09:40+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 05:20+0000\n" +"Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,27 +19,38 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "Rakendit \"%s\" ei saa paigaldada, kuna see pole ühilduv selle ownCloud versiooniga." + +#: app.php:250 +msgid "No app name specified" +msgstr "Ühegi rakendi nime pole määratletud" + +#: app.php:361 msgid "Help" msgstr "Abiinfo" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Isiklik" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Seaded" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Kasutajad" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ebaõnnestunud uuendus \"%s\"." @@ -75,6 +86,62 @@ msgid "" "administrator." msgstr "Laadi failid alla eraldi väiksemate osadena või küsi nõu oma süsteemiadminstraatorilt." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "Ühegi lähteallikat pole rakendi paigalduseks määratletud" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "Ühtegi aadressi pole määratletud rakendi paigalduseks veebist" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "Ühtegi teed pole määratletud paigaldamaks rakendit kohalikust failist" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "%s tüüpi arhiivid pole toetatud" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "Arhiivi avamine ebaõnnestus rakendi paigalduse käigus" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "Rakend ei paku ühtegi info.xml faili" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "Rakendit ei saa paigaldada, kuna sisaldab lubamatud koodi" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "Rakendit ei saa paigaldada, kuna see pole ühilduv selle ownCloud versiooniga." + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "Rakendit ei saa paigaldada, kuna see sisaldab \n\n\ntrue\n\nmärgendit, mis pole lubatud mitte veetud (non shipped) rakendites" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "Rakendit ei saa paigaldada, kuna selle versioon info.xml/version pole sama, mis on märgitud rakendite laos." + +#: installer.php:160 +msgid "App directory already exists" +msgstr "Rakendi kataloog on juba olemas" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "Ei saa luua rakendi kataloogi. Palun korrigeeri õigusi. %s" + #: json.php:28 msgid "Application is not enabled" msgstr "Rakendus pole sisse lülitatud" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index f256080717..26f50de929 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-22 10:36-0400\n" -"PO-Revision-Date: 2013-08-22 09:30+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 05:10+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -44,10 +44,6 @@ msgstr "Grupp on juba olemas" msgid "Unable to add group" msgstr "Keela grupi lisamine" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Rakenduse sisselülitamine ebaõnnestus." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Kiri on salvestatud" @@ -94,31 +90,43 @@ msgstr "Rakenduse uuendamine ebaõnnestus." msgid "Update to {appversion}" msgstr "Uuenda versioonile {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Lülita välja" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Lülita sisse" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Palun oota..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Viga" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "Viga rakendi keelamisel" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "Viga rakendi lubamisel" + +#: js/apps.js:115 msgid "Updating...." msgstr "Uuendamine..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Viga rakenduse uuendamisel" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Viga" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Uuenda" + +#: js/apps.js:122 msgid "Updated" msgstr "Uuendatud" @@ -371,10 +379,6 @@ msgstr "Vaata rakenduste lehte aadressil apps.owncloud.com" msgid "-licensed by " msgstr "-litsenseeritud " -#: templates/apps.php:43 -msgid "Update" -msgstr "Uuenda" - #: templates/help.php:4 msgid "User Documentation" msgstr "Kasutaja dokumentatsioon" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index ffc6f231bf..12ed7b71d2 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s-ek »%s« zurekin partekatu du" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Kategoria mota ez da zehaztu." @@ -150,14 +175,14 @@ msgstr "segundu" #: js/js.js:813 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "orain dela minutu %n" +msgstr[1] "orain dela %n minutu" #: js/js.js:814 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "orain dela ordu %n" +msgstr[1] "orain dela %n ordu" #: js/js.js:815 msgid "today" @@ -170,8 +195,8 @@ msgstr "atzo" #: js/js.js:817 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "orain dela egun %n" +msgstr[1] "orain dela %n egun" #: js/js.js:818 msgid "last month" @@ -180,8 +205,8 @@ msgstr "joan den hilabetean" #: js/js.js:819 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "orain dela hilabete %n" +msgstr[1] "orain dela %n hilabete" #: js/js.js:820 msgid "months ago" @@ -195,23 +220,23 @@ msgstr "joan den urtean" msgid "years ago" msgstr "urte" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Aukeratu" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Errorea fitxategi hautatzaile txantiloiak kargatzerakoan" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Bai" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Ez" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ados" @@ -378,7 +403,7 @@ msgstr "Eguneraketa ongi egin da. Orain zure ownClouderea berbideratua izango za #: lostpassword/controller.php:61 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s pasahitza berrezarri" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -579,7 +604,7 @@ msgstr "Saioa bukatu" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "App gehiago" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index ac39bb9105..878b37729c 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# asieriko , 2013 # Piarres Beobide , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -95,21 +96,20 @@ msgstr "Ez dago leku nahikorik." msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URLa ezin da hutsik egon." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Karpeta izne baliogabea. \"Shared\" karpeta erabilpena OwnCloudentzat erreserbaturik dago." -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Errorea" @@ -156,8 +156,8 @@ msgstr "desegin" #: js/filelist.js:453 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Fitxategi %n igotzen" +msgstr[1] "%n fitxategi igotzen" #: js/filelist.js:518 msgid "files uploading" @@ -189,7 +189,7 @@ msgstr "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})" msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "Enkriptazioa desgaitua izan da baina zure fitxategiak oraindik enkriptatuta daude. Mesedez jo zure ezarpen pertsonaletara zure fitxategiak dekodifikatzeko." #: js/files.js:245 msgid "" @@ -197,33 +197,29 @@ msgid "" "big." msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. " -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Izena" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Tamaina" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "karpeta %n" +msgstr[1] "%n karpeta" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "fitxategi %n" +msgstr[1] "%n fitxategi" #: lib/app.php:73 #, php-format diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index e633bd97d7..36bdac1c07 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 18:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:10+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,27 +32,27 @@ msgstr "Bidali" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Barkatu, lotura ez dirudi eskuragarria dagoenik." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Arrazoiak hurrengoak litezke:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "fitxategia ezbatua izan da" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "lotura iraungi da" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "elkarbanatzea ez dago gaituta" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Informazio gehiagorako, mesedez eskatu lotura hau bidali zuen pertsonari" #: templates/public.php:15 #, php-format diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index ee2efd48c1..bdb27c8c6d 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# asieriko , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:10+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,18 +55,18 @@ msgstr "Ezabatuta" #: js/trash.js:191 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "karpeta %n" +msgstr[1] "%n karpeta" #: js/trash.js:197 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "fitxategi %n" +msgstr[1] "%n fitxategi" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "Berrezarrita" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 2aa6a48b61..cb9bb315d4 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,38 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Laguntza" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Pertsonala" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Ezarpenak" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Erabiltzaileak" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ezin izan da \"%s\" eguneratu." @@ -75,6 +86,62 @@ msgid "" "administrator." msgstr "Deskargatu fitzategiak zati txikiagoetan, banan-banan edo eskatu mesedez zure administradoreari" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplikazioa ez dago gaituta" @@ -206,14 +273,14 @@ msgstr "segundu" #: template/functions.php:81 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "orain dela minutu %n" +msgstr[1] "orain dela %n minutu" #: template/functions.php:82 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "orain dela ordu %n" +msgstr[1] "orain dela %n ordu" #: template/functions.php:83 msgid "today" @@ -226,8 +293,8 @@ msgstr "atzo" #: template/functions.php:85 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "orain dela egun %n" +msgstr[1] "orain dela %n egun" #: template/functions.php:86 msgid "last month" @@ -236,8 +303,8 @@ msgstr "joan den hilabetean" #: template/functions.php:87 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "orain dela hilabete %n" +msgstr[1] "orain dela %n hilabete" #: template/functions.php:88 msgid "last year" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 1d71b7b955..617d57288f 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -44,10 +44,6 @@ msgstr "Taldea dagoeneko existitzenda" msgid "Unable to add group" msgstr "Ezin izan da taldea gehitu" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Ezin izan da aplikazioa gaitu." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Eposta gorde da" @@ -94,31 +90,43 @@ msgstr "Ezin izan da aplikazioa eguneratu." msgid "Update to {appversion}" msgstr "Eguneratu {appversion}-ra" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Ez-gaitu" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Gaitu" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Itxoin mesedez..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Errorea" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Eguneratzen..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Errorea aplikazioa eguneratzen zen bitartean" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Errorea" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Eguneratu" + +#: js/apps.js:122 msgid "Updated" msgstr "Eguneratuta" @@ -371,10 +379,6 @@ msgstr "Ikusi programen orria apps.owncloud.com en" msgid "-licensed by " msgstr "-lizentziatua " -#: templates/apps.php:43 -msgid "Update" -msgstr "Eguneratu" - #: templates/help.php:4 msgid "User Documentation" msgstr "Erabiltzaile dokumentazioa" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 1075ec5c3e..570d7e6c1e 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s به اشتراک گذاشته شده است »%s« توسط شما" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "نوع دسته بندی ارائه نشده است." @@ -190,23 +215,23 @@ msgstr "سال قبل" msgid "years ago" msgstr "سال‌های قبل" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "انتخاب کردن" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "خطا در بارگذاری قالب انتخاب کننده فایل" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "بله" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "نه" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "قبول" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index a5fd2a7adb..4487cf2fcb 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -95,21 +95,20 @@ msgstr "فضای کافی در دسترس نیست" msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. " -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL نمی تواند خالی باشد." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "نام پوشه نامعتبر است. استفاده از 'به اشتراک گذاشته شده' متعلق به ownCloud میباشد." -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "خطا" @@ -196,28 +195,24 @@ msgid "" "big." msgstr "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "نام پوشه نامعتبر است. استفاده از \" به اشتراک گذاشته شده \" متعلق به سایت Owncloud است." - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "نام" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "اندازه" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "تاریخ" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 94d2683d00..565794cd0d 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "راه‌نما" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "شخصی" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "تنظیمات" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "کاربران" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "مدیر" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "برنامه فعال نشده است" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index a81077fb92..015429708d 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -43,10 +43,6 @@ msgstr "این گروه در حال حاضر موجود است" msgid "Unable to add group" msgstr "افزودن گروه امکان پذیر نیست" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "برنامه را نمی توان فعال ساخت." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "ایمیل ذخیره شد" @@ -93,31 +89,43 @@ msgstr "برنامه را نمی توان به هنگام ساخت." msgid "Update to {appversion}" msgstr "بهنگام شده به {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "غیرفعال" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "فعال" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "لطفا صبر کنید ..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "خطا" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "در حال بروز رسانی..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "خطا در هنگام بهنگام سازی برنامه" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "خطا" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "به روز رسانی" + +#: js/apps.js:122 msgid "Updated" msgstr "بروز رسانی انجام شد" @@ -370,10 +378,6 @@ msgstr "صفحه این اٌپ را در apps.owncloud.com ببینید" msgid "-licensed by " msgstr "-مجاز از طرف " -#: templates/apps.php:43 -msgid "Update" -msgstr "به روز رسانی" - #: templates/help.php:4 msgid "User Documentation" msgstr "مستندات کاربر" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 9ca82320bc..aee3205f28 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -4,13 +4,14 @@ # # Translators: # Jiri Grönroos , 2013 +# ioxo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-28 06:40+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s jakoi kohteen »%s« kanssasi" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "Siirrytty ylläpitotilaan" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "Ylläpitotila laitettu pois päältä" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "Tietokanta ajan tasalla" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "Päivitetään tiedostojen välimuistia, tämä saattaa kestää todella kauan..." + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "Tiedostojen välimuisti päivitetty" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "... %d%% valmis ..." + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Luokan tyyppiä ei määritelty." @@ -194,23 +220,23 @@ msgstr "viime vuonna" msgid "years ago" msgstr "vuotta sitten" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Valitse" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Kyllä" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Ei" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ok" @@ -313,7 +339,7 @@ msgstr "Jakaminen uudelleen ei ole salittu" #: js/share.js:317 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "{item} on jaettu {user} kanssa" #: js/share.js:338 msgid "Unshare" @@ -377,7 +403,7 @@ msgstr "Päivitys onnistui. Selain ohjautuu nyt ownCloudiisi." #: lostpassword/controller.php:61 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s salasanan nollaus" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index dcf22e09ae..cd30a9df4b 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -95,21 +95,20 @@ msgstr "Tilaa ei ole riittävästi" msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "Verkko-osoite ei voi olla tyhjä" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Virhe" @@ -197,29 +196,25 @@ msgid "" "big." msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Koko" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Muokattu" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kansio" msgstr[1] "%n kansiota" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tiedosto" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 9a990b0377..fcd9edec0e 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 06:20+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,27 +18,38 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "Sovellusta \"%s\" ei voi asentaa, koska se ei ole yhteensopiva käytössä olevan ownCloud-version kanssa." + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Ohje" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Henkilökohtainen" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Asetukset" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Käyttäjät" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Ylläpitäjä" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "Lähdettä ei määritelty sovellusta asennettaessa" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "Polkua ei määritelty sovellusta asennettaessa paikallisesta tiedostosta" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "Tyypin %s arkistot eivät ole tuettuja" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "Sovellus ei sisällä info.xml-tiedostoa" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "Sovelluskansio on jo olemassa" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "Sovelluskansion luominen ei onnistu. Korjaa käyttöoikeudet. %s" + #: json.php:28 msgid "Application is not enabled" msgstr "Sovellusta ei ole otettu käyttöön" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 3bdd091b22..92f6acfd29 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-22 10:36-0400\n" -"PO-Revision-Date: 2013-08-21 19:00+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 06:20+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -43,10 +43,6 @@ msgstr "Ryhmä on jo olemassa" msgid "Unable to add group" msgstr "Ryhmän lisäys epäonnistui" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Sovelluksen käyttöönotto epäonnistui." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Sähköposti tallennettu" @@ -93,31 +89,43 @@ msgstr "Sovelluksen päivitys epäonnistui." msgid "Update to {appversion}" msgstr "Päivitä versioon {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Poista käytöstä" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Käytä" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Odota hetki..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Virhe" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "Virhe poistaessa sovellusta käytöstä" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "Virhe ottaessa sovellusta käyttöön" + +#: js/apps.js:115 msgid "Updating...." msgstr "Päivitetään..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Virhe sovellusta päivittäessä" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Virhe" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Päivitä" + +#: js/apps.js:122 msgid "Updated" msgstr "Päivitetty" @@ -200,7 +208,7 @@ msgstr "" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Lue asennusohjeet tarkasti." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -311,7 +319,7 @@ msgstr "Pakota HTTPS" #: templates/admin.php:185 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta." #: templates/admin.php:191 #, php-format @@ -370,10 +378,6 @@ msgstr "Katso sovellussivu osoitteessa apps.owncloud.com" msgid "-licensed by " msgstr "-lisensoija " -#: templates/apps.php:43 -msgid "Update" -msgstr "Päivitä" - #: templates/help.php:4 msgid "User Documentation" msgstr "Käyttäjäohjeistus" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index b5e48526b0..21591f1ea3 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -27,6 +27,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s partagé »%s« avec vous" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Type de catégorie non spécifié." @@ -198,23 +223,23 @@ msgstr "l'année dernière" msgid "years ago" msgstr "il y a plusieurs années" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Choisir" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Erreur de chargement du modèle du sélecteur de fichier" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Oui" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Non" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ok" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 175956137d..79cb84b3af 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -97,21 +97,20 @@ msgstr "Espace disponible insuffisant" msgid "Upload cancelled." msgstr "Envoi annulé." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "L'URL ne peut-être vide" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Erreur" @@ -199,29 +198,25 @@ msgid "" "big." msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Taille" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Modifié" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 1c17ec9eea..5bd611ff26 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Aide" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personnel" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Paramètres" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Utilisateurs" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administration" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "L'application n'est pas activée" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 9b43aabef4..bd79bb2891 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -46,10 +46,6 @@ msgstr "Ce groupe existe déjà" msgid "Unable to add group" msgstr "Impossible d'ajouter le groupe" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Impossible d'activer l'Application" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail sauvegardé" @@ -96,31 +92,43 @@ msgstr "Impossible de mettre à jour l'application" msgid "Update to {appversion}" msgstr "Mettre à jour vers {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Désactiver" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Activer" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Veuillez patienter…" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Erreur" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Mise à jour..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Erreur lors de la mise à jour de l'application" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Erreur" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Mettre à jour" + +#: js/apps.js:122 msgid "Updated" msgstr "Mise à jour effectuée avec succès" @@ -373,10 +381,6 @@ msgstr "Voir la page des applications à l'url apps.owncloud.com" msgid "-licensed by " msgstr "Distribué sous licence , par " -#: templates/apps.php:43 -msgid "Update" -msgstr "Mettre à jour" - #: templates/help.php:4 msgid "User Documentation" msgstr "Documentation utilisateur" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 50cf7e0e18..c594c9f86d 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s compartiu «%s» con vostede" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Non se indicou o tipo de categoría" @@ -194,23 +219,23 @@ msgstr "último ano" msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Escoller" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Produciuse un erro ao cargar o modelo do selector de ficheiros" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Si" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Non" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Aceptar" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 70312ce0d9..ddf953cade 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-20 11:10+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,21 +95,20 @@ msgstr "O espazo dispoñíbel é insuficiente" msgid "Upload cancelled." msgstr "Envío cancelado." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío." -#: js/file-upload.js:234 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "O URL non pode quedar baleiro." -#: js/file-upload.js:239 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nome de cartafol incorrecto. O uso de «Compartido» e «Shared» está reservado para o ownClod" -#: js/file-upload.js:270 js/file-upload.js:286 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Erro" @@ -197,29 +196,25 @@ msgid "" "big." msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nome de cartafol incorrecto. O uso de «Shared» está reservado por Owncloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartafol" msgstr[1] "%n cartafoles" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 49881baaaf..08a5c66539 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Axuda" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Persoal" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Axustes" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Usuarios" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administración" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Non foi posíbel anovar «%s»." @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "Descargue os ficheiros en cachos máis pequenos e por separado, ou pídallos amabelmente ao seu administrador." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "O aplicativo non está activado" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index ba4d53c4fa..fda92370b3 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-20 11:10+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,10 +43,6 @@ msgstr "O grupo xa existe" msgid "Unable to add group" msgstr "Non é posíbel engadir o grupo" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Non é posíbel activar o aplicativo." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Correo gardado" @@ -93,31 +89,43 @@ msgstr "Non foi posíbel actualizar o aplicativo." msgid "Update to {appversion}" msgstr "Actualizar á {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Activar" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Agarde..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Erro" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Actualizando..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Produciuse un erro mentres actualizaba o aplicativo" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Erro" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Actualizar" + +#: js/apps.js:122 msgid "Updated" msgstr "Actualizado" @@ -370,10 +378,6 @@ msgstr "Consulte a páxina do aplicativo en apps.owncloud.com" msgid "-licensed by " msgstr "-licenciado por" -#: templates/apps.php:43 -msgid "Update" -msgstr "Actualizar" - #: templates/help.php:4 msgid "User Documentation" msgstr "Documentación do usuario" diff --git a/l10n/he/core.po b/l10n/he/core.po index 53f3aae44a..6ec8af7aaf 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-23 20:16-0400\n" -"PO-Revision-Date: 2013-08-22 15:40+0000\n" -"Last-Translator: gilshwartz\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s שיתף/שיתפה איתך את »%s«" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "סוג הקטגוריה לא סופק." diff --git a/l10n/he/files.po b/l10n/he/files.po index 1b7e785ebf..3d889a5512 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -95,21 +95,20 @@ msgstr "" msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "קישור אינו יכול להיות ריק." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "שגיאה" @@ -197,29 +196,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "שם" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "גודל" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 34b59c0bfc..d344f07c59 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-23 20:16-0400\n" -"PO-Revision-Date: 2013-08-22 15:40+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "עזרה" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "אישי" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "הגדרות" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "משתמשים" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "מנהל" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "יישומים אינם מופעלים" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 29198d3642..767a325270 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -43,10 +43,6 @@ msgstr "הקבוצה כבר קיימת" msgid "Unable to add group" msgstr "לא ניתן להוסיף קבוצה" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "לא ניתן להפעיל את היישום" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "הדוא״ל נשמר" @@ -93,31 +89,43 @@ msgstr "לא ניתן לעדכן את היישום." msgid "Update to {appversion}" msgstr "עדכון לגרסה {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "בטל" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "הפעלה" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "נא להמתין…" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "שגיאה" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "מתבצע עדכון…" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "אירעה שגיאה בעת עדכון היישום" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "שגיאה" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "עדכון" + +#: js/apps.js:122 msgid "Updated" msgstr "מעודכן" @@ -370,10 +378,6 @@ msgstr "צפה בעמוד הישום ב apps.owncloud.com" msgid "-licensed by " msgstr "ברישיון לטובת " -#: templates/apps.php:43 -msgid "Update" -msgstr "עדכון" - #: templates/help.php:4 msgid "User Documentation" msgstr "תיעוד משתמש" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 27c6e564ae..4e3345632b 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -194,23 +219,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index f3bce0ac14..0255297a18 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "त्रुटि" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 28b270f194..60c81ec7b5 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "सहयोग" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "यक्तिगत" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "सेटिंग्स" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "उपयोगकर्ता" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 6c4da2cc6c..dc541066ba 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "त्रुटि" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "त्रुटि" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "अद्यतन" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "अद्यतन" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index fc513b2f68..58b1610541 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -197,23 +222,23 @@ msgstr "prošlu godinu" msgid "years ago" msgstr "godina" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Izaberi" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Ne" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "U redu" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index b15680bcef..ad81139baf 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Greška" @@ -197,30 +196,26 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 32395b8312..5072e42a30 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Pomoć" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Osobno" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Postavke" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Korisnici" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administrator" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 660714684d..a1d1484aab 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email spremljen" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Isključi" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Uključi" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Greška" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Greška" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "Grupe" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Grupa Admin" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "Obriši" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "Pogledajte stranicu s aplikacijama na apps.owncloud.com" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 715adea419..f0a3a78d4f 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s megosztotta Önnel ezt: »%s«" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Nincs megadva a kategória típusa." @@ -195,23 +220,23 @@ msgstr "tavaly" msgid "years ago" msgstr "több éve" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Válasszon" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Nem sikerült betölteni a fájlkiválasztó sablont" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Igen" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Nem" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ok" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index cc2316c691..9ea607c824 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -95,21 +95,20 @@ msgstr "Nincs elég szabad hely" msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "Az URL nem lehet semmi." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Érvénytelen mappanév. A 'Shared' az ownCloud számára fenntartott elnevezés" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Hiba" @@ -197,29 +196,25 @@ msgid "" "big." msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Érvénytelen mappanév. A név használata csak a Owncloud számára lehetséges." - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Név" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Méret" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Módosítva" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index e508505f74..58c1b28f6c 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,38 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Súgó" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Személyes" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Beállítások" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Felhasználók" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Adminsztráció" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Sikertelen Frissítés \"%s\"." @@ -75,6 +86,62 @@ msgid "" "administrator." msgstr "Tölts le a fileokat kisebb chunkokban, kölün vagy kérj segitséget a rendszergazdádtól." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Az alkalmazás nincs engedélyezve" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 464a3c622e..a04fb4488e 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -45,10 +45,6 @@ msgstr "A csoport már létezik" msgid "Unable to add group" msgstr "A csoport nem hozható létre" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "A program nem aktiválható." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email mentve" @@ -95,31 +91,43 @@ msgstr "A program frissítése nem sikerült." msgid "Update to {appversion}" msgstr "Frissítés erre a verzióra: {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Letiltás" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "engedélyezve" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Kérem várjon..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Hiba" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Frissítés folyamatban..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Hiba történt a programfrissítés közben" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Hiba" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Frissítés" + +#: js/apps.js:122 msgid "Updated" msgstr "Frissítve" @@ -372,10 +380,6 @@ msgstr "Lásd apps.owncloud.com, alkalmazások oldal" msgid "-licensed by " msgstr "-a jogtuladonos " -#: templates/apps.php:43 -msgid "Update" -msgstr "Frissítés" - #: templates/help.php:4 msgid "User Documentation" msgstr "Felhasználói leírás" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index e2aceb5731..22460f69dd 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -193,23 +218,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 4769f28713..e645c744ff 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index c4bd9162a8..63acadec4f 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index a4f0a39f2e..fe701e6fee 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "Ջնջել" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 901f047607..72f712753e 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -193,23 +218,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 0ef13b5483..6000c6cf60 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Error" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nomine" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Dimension" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Modificate" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 2d76564c42..5a963a58e2 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Adjuta" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personal" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Configurationes" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Usatores" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administration" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 45bea595cd..d43c46e1de 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Error" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Actualisar" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "Gruppos" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "Deler" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "Actualisar" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index abd8fc9cd4..c42fea70e8 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Tipe kategori tidak diberikan." @@ -189,23 +214,23 @@ msgstr "tahun kemarin" msgid "years ago" msgstr "beberapa tahun lalu" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Pilih" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Ya" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Tidak" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Oke" diff --git a/l10n/id/files.po b/l10n/id/files.po index 2afa951260..467e1dd2a3 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "Ruang penyimpanan tidak mencukupi" msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL tidak boleh kosong" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Galat" @@ -195,28 +194,24 @@ msgid "" "big." msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nama folder salah. Nama 'Shared' telah digunakan oleh Owncloud." - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Ukuran" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index a687ac2f3e..1b7a594f54 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Bantuan" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Pribadi" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Setelan" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Pengguna" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplikasi tidak diaktifkan" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index f4bb62020a..4940f179f8 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "Grup sudah ada" msgid "Unable to add group" msgstr "Tidak dapat menambah grup" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Tidak dapat mengaktifkan aplikasi." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email disimpan" @@ -92,31 +88,43 @@ msgstr "Tidak dapat memperbarui aplikasi." msgid "Update to {appversion}" msgstr "Perbarui ke {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Nonaktifkan" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "aktifkan" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Mohon tunggu...." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Galat" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Memperbarui...." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Gagal ketika memperbarui aplikasi" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Galat" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Perbarui" + +#: js/apps.js:122 msgid "Updated" msgstr "Diperbarui" @@ -369,10 +377,6 @@ msgstr "Lihat halaman aplikasi di apps.owncloud.com" msgid "-licensed by " msgstr "-dilisensikan oleh " -#: templates/apps.php:43 -msgid "Update" -msgstr "Perbarui" - #: templates/help.php:4 msgid "User Documentation" msgstr "Dokumentasi Pengguna" diff --git a/l10n/is/core.po b/l10n/is/core.po index 875e468f20..428ebc7861 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Flokkur ekki gefin" @@ -194,23 +219,23 @@ msgstr "síðasta ári" msgid "years ago" msgstr "einhverjum árum" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Veldu" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Já" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Nei" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Í lagi" diff --git a/l10n/is/files.po b/l10n/is/files.po index 0cc47cc222..64dc57bc97 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "Ekki nægt pláss tiltækt" msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "Vefslóð má ekki vera tóm." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Villa" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nafn" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Stærð" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Breytt" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 426da0a471..a1bfd8deb4 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Hjálp" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Um mig" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Stillingar" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Notendur" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Stjórnun" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Forrit ekki virkt" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index cd72b76be0..5f777e83b7 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -43,10 +43,6 @@ msgstr "Hópur er þegar til" msgid "Unable to add group" msgstr "Ekki tókst að bæta við hóp" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Gat ekki virkjað forrit" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Netfang vistað" @@ -93,31 +89,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Gera óvirkt" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Virkja" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Andartak...." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Villa" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Uppfæri..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Villa" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Uppfæra" + +#: js/apps.js:122 msgid "Updated" msgstr "Uppfært" @@ -370,10 +378,6 @@ msgstr "Skoða síðu forrits hjá apps.owncloud.com" msgid "-licensed by " msgstr "-leyfi skráð af " -#: templates/apps.php:43 -msgid "Update" -msgstr "Uppfæra" - #: templates/help.php:4 msgid "User Documentation" msgstr "Notenda handbók" diff --git a/l10n/it/core.po b/l10n/it/core.po index e2a608899b..154aa4c326 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s ha condiviso «%s» con te" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Tipo di categoria non fornito." @@ -151,14 +176,14 @@ msgstr "secondi fa" #: js/js.js:813 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n minuto fa" +msgstr[1] "%n minuti fa" #: js/js.js:814 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n ora fa" +msgstr[1] "%n ore fa" #: js/js.js:815 msgid "today" @@ -171,8 +196,8 @@ msgstr "ieri" #: js/js.js:817 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n giorno fa" +msgstr[1] "%n giorni fa" #: js/js.js:818 msgid "last month" @@ -181,8 +206,8 @@ msgstr "mese scorso" #: js/js.js:819 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n mese fa" +msgstr[1] "%n mesi fa" #: js/js.js:820 msgid "months ago" @@ -196,23 +221,23 @@ msgstr "anno scorso" msgid "years ago" msgstr "anni fa" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Scegli" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Errore durante il caricamento del modello del selezionatore di file" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Sì" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "No" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ok" @@ -379,7 +404,7 @@ msgstr "L'aggiornamento è stato effettuato correttamente. Stai per essere reind #: lostpassword/controller.php:61 #, php-format msgid "%s password reset" -msgstr "" +msgstr "Ripristino password di %s" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -580,7 +605,7 @@ msgstr "Esci" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "Altre applicazioni" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/it/files.po b/l10n/it/files.po index 5f8c561cb4..465bb80784 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -96,21 +96,20 @@ msgstr "Spazio disponibile insufficiente" msgid "Upload cancelled." msgstr "Invio annullato" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "L'URL non può essere vuoto." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato a ownCloud" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Errore" @@ -157,8 +156,8 @@ msgstr "annulla" #: js/filelist.js:453 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Caricamento di %n file in corso" +msgstr[1] "Caricamento di %n file in corso" #: js/filelist.js:518 msgid "files uploading" @@ -190,7 +189,7 @@ msgstr "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)" msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "La cifratura è stata disabilitata ma i tuoi file sono ancora cifrati. Vai nelle impostazioni personali per decifrare i file." #: js/files.js:245 msgid "" @@ -198,33 +197,29 @@ msgid "" "big." msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Dimensione" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Modificato" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n cartella" +msgstr[1] "%n cartelle" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n file" +msgstr[1] "%n file" #: lib/app.php:73 #, php-format diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 188d8e7e9c..323adf9021 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 06:50+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,14 +55,14 @@ msgstr "Eliminati" #: js/trash.js:191 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n cartella" +msgstr[1] "%n cartelle" #: js/trash.js:197 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n file" +msgstr[1] "%n file" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 0802ffca26..84dacdb52d 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,38 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Aiuto" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personale" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Impostazioni" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Utenti" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Aggiornamento non riuscito \"%s\"." @@ -75,6 +86,62 @@ msgid "" "administrator." msgstr "Scarica i file in blocchi più piccoli, separatamente o chiedi al tuo amministratore." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "L'applicazione non è abilitata" @@ -206,14 +273,14 @@ msgstr "secondi fa" #: template/functions.php:81 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n minuto fa" +msgstr[1] "%n minuti fa" #: template/functions.php:82 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n ora fa" +msgstr[1] "%n ore fa" #: template/functions.php:83 msgid "today" @@ -226,8 +293,8 @@ msgstr "ieri" #: template/functions.php:85 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n giorno fa" +msgstr[1] "%n giorni fa" #: template/functions.php:86 msgid "last month" @@ -236,8 +303,8 @@ msgstr "mese scorso" #: template/functions.php:87 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n mese fa" +msgstr[1] "%n mesi fa" #: template/functions.php:88 msgid "last year" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 8736fd0d1a..57cb219901 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -45,10 +45,6 @@ msgstr "Il gruppo esiste già" msgid "Unable to add group" msgstr "Impossibile aggiungere il gruppo" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Impossibile abilitare l'applicazione." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email salvata" @@ -95,37 +91,49 @@ msgstr "Impossibile aggiornate l'applicazione." msgid "Update to {appversion}" msgstr "Aggiorna a {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Disabilita" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Abilita" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Attendere..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Errore" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Aggiornamento in corso..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Errore durante l'aggiornamento" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Errore" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Aggiorna" + +#: js/apps.js:122 msgid "Updated" msgstr "Aggiornato" #: js/personal.js:150 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "Decifratura dei file in corso... Attendi, potrebbe richiedere del tempo." #: js/personal.js:172 msgid "Saving..." @@ -372,10 +380,6 @@ msgstr "Vedere la pagina dell'applicazione su apps.owncloud.com" msgid "-licensed by " msgstr "-licenziato da " -#: templates/apps.php:43 -msgid "Update" -msgstr "Aggiorna" - #: templates/help.php:4 msgid "User Documentation" msgstr "Documentazione utente" @@ -478,15 +482,15 @@ msgstr "Cifratura" #: templates/personal.php:119 msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "" +msgstr "L'applicazione di cifratura non è più abilitata, decifra tutti i tuoi file" #: templates/personal.php:125 msgid "Log-in password" -msgstr "" +msgstr "Password di accesso" #: templates/personal.php:130 msgid "Decrypt all Files" -msgstr "" +msgstr "Decifra tutti i file" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index c9793a8644..e39ae95e86 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 06:40+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -156,7 +156,7 @@ msgstr "Filtro per l'accesso utente" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "" +msgstr "Specifica quale filtro utilizzare quando si tenta l'accesso. %%uid sostituisce il nome utente all'atto dell'accesso. Esempio: \"uid=%%uid\"" #: templates/settings.php:55 msgid "User List Filter" @@ -166,7 +166,7 @@ msgstr "Filtro per l'elenco utenti" msgid "" "Defines the filter to apply, when retrieving users (no placeholders). " "Example: \"objectClass=person\"" -msgstr "" +msgstr "Specifica quale filtro utilizzare durante il recupero degli utenti (nessun segnaposto). Esempio: \"objectClass=person\"" #: templates/settings.php:59 msgid "Group Filter" @@ -176,7 +176,7 @@ msgstr "Filtro per il gruppo" msgid "" "Defines the filter to apply, when retrieving groups (no placeholders). " "Example: \"objectClass=posixGroup\"" -msgstr "" +msgstr "Specifica quale filtro utilizzare durante il recupero dei gruppi (nessun segnaposto). Esempio: \"objectClass=posixGroup\"" #: templates/settings.php:66 msgid "Connection Settings" @@ -237,7 +237,7 @@ msgstr "Disattiva il controllo del certificato SSL." msgid "" "Not recommended, use it for testing only! If connection only works with this" " option, import the LDAP server's SSL certificate in your %s server." -msgstr "" +msgstr "Non consigliata, da utilizzare solo per test! Se la connessione funziona solo con questa opzione, importa il certificate SSL del server LDAP sul tuo server %s." #: templates/settings.php:76 msgid "Cache Time-To-Live" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 93d6745203..30dbfefeed 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%sが あなたと »%s«を共有しました" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "カテゴリタイプは提供されていません。" @@ -193,23 +218,23 @@ msgstr "一年前" msgid "years ago" msgstr "年前" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "選択" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "ファイルピッカーのテンプレートの読み込みエラー" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "はい" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "いいえ" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "OK" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index e27df447a1..9212428332 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-20 09:00+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -99,21 +99,20 @@ msgstr "利用可能なスペースが十分にありません" msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/file-upload.js:234 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URLは空にできません。" -#: js/file-upload.js:239 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "無効なフォルダ名です。'Shared' の利用はownCloudで予約済みです" -#: js/file-upload.js:270 js/file-upload.js:286 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "エラー" @@ -200,28 +199,24 @@ msgid "" "big." msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "名前" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "サイズ" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "変更" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n個のフォルダ" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n個のファイル" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index d6a42e38c1..3d14cbeb36 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,38 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "ヘルプ" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "個人" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "設定" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "ユーザ" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "管理" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" へのアップグレードに失敗しました。" @@ -75,6 +86,62 @@ msgid "" "administrator." msgstr "ファイルは、小さいファイルに分割されてダウンロードされます。もしくは、管理者にお尋ねください。" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "アプリケーションは無効です" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 913c5d1b9a..f61f73ba22 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-20 09:10+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,10 +45,6 @@ msgstr "グループは既に存在しています" msgid "Unable to add group" msgstr "グループを追加できません" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "アプリを有効にできませんでした。" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "メールアドレスを保存しました" @@ -95,31 +91,43 @@ msgstr "アプリを更新出来ませんでした。" msgid "Update to {appversion}" msgstr "{appversion} に更新" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "無効" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "有効化" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "しばらくお待ちください。" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "エラー" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "更新中...." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "アプリの更新中にエラーが発生" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "エラー" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "更新" + +#: js/apps.js:122 msgid "Updated" msgstr "更新済み" @@ -372,10 +380,6 @@ msgstr "apps.owncloud.com でアプリケーションのページを見てくだ msgid "-licensed by " msgstr "-ライセンス: " -#: templates/apps.php:43 -msgid "Update" -msgstr "更新" - #: templates/help.php:4 msgid "User Documentation" msgstr "ユーザドキュメント" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index 16224d9194..d913c55a78 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -189,23 +214,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 0ba377534e..168581e96b 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -195,28 +194,24 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index cf8cf5f906..d28838e8f0 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "შველა" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "პერსონა" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "მომხმარებლები" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "ადმინისტრატორი" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/ka/settings.po b/l10n/ka/settings.po index e4fb05fac6..079d74339a 100644 --- a/l10n/ka/settings.po +++ b/l10n/ka/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 13d2a8bc98..fc18e19a2f 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "კატეგორიის ტიპი არ არის განხილული." @@ -189,23 +214,23 @@ msgstr "ბოლო წელს" msgid "years ago" msgstr "წლის წინ" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "არჩევა" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "კი" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "არა" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "დიახ" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 1706eb1ccd..a2608f1795 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "საკმარისი ადგილი არ არის" msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL არ შეიძლება იყოს ცარიელი." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "შეცდომა" @@ -195,28 +194,24 @@ msgid "" "big." msgstr "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "დაუშვებელი ფოლდერის სახელი. 'Shared'–ის გამოყენება რეზერვირებულია Owncloud–ის მიერ" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "სახელი" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "ზომა" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 3a98648633..0eda718d06 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "დახმარება" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "პირადი" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "პარამეტრები" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "მომხმარებელი" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "ადმინისტრატორი" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "აპლიკაცია არ არის აქტიური" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 61c4982835..793b41c51a 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -43,10 +43,6 @@ msgstr "ჯგუფი უკვე არსებობს" msgid "Unable to add group" msgstr "ჯგუფის დამატება ვერ მოხერხდა" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "ვერ მოხერხდა აპლიკაციის ჩართვა." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "იმეილი შენახულია" @@ -93,31 +89,43 @@ msgstr "ვერ მოხერხდა აპლიკაციის გა msgid "Update to {appversion}" msgstr "განაახლე {appversion}–მდე" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "გამორთვა" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "ჩართვა" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "დაიცადეთ...." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "შეცდომა" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "მიმდინარეობს განახლება...." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "შეცდომა აპლიკაციის განახლების დროს" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "შეცდომა" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "განახლება" + +#: js/apps.js:122 msgid "Updated" msgstr "განახლებულია" @@ -370,10 +378,6 @@ msgstr "ნახეთ აპლიკაციის გვერდი apps.o msgid "-licensed by " msgstr "-ლიცენსირებულია " -#: templates/apps.php:43 -msgid "Update" -msgstr "განახლება" - #: templates/help.php:4 msgid "User Documentation" msgstr "მომხმარებლის დოკუმენტაცია" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 1ebb511ac3..173c3cebfd 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -189,23 +214,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 810fccb7bf..293b737fe1 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -195,28 +194,24 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 63406f842e..73fe472ef5 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index cc0192feeb..e875108d7c 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index f99e2b89d9..fd2020b36d 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "분류 형식이 제공되지 않았습니다." @@ -150,12 +175,12 @@ msgstr "초 전" #: js/js.js:813 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "%n분 전 " #: js/js.js:814 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n시간 전 " #: js/js.js:815 msgid "today" @@ -168,7 +193,7 @@ msgstr "어제" #: js/js.js:817 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n일 전 " #: js/js.js:818 msgid "last month" @@ -177,7 +202,7 @@ msgstr "지난 달" #: js/js.js:819 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n달 전 " #: js/js.js:820 msgid "months ago" @@ -191,23 +216,23 @@ msgstr "작년" msgid "years ago" msgstr "년 전" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "선택" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "예" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "아니요" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "승락" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index cdab5cceeb..6141204cfa 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -96,21 +96,20 @@ msgstr "여유 공간이 부족합니다" msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL을 입력해야 합니다." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "오류" @@ -197,28 +196,24 @@ msgid "" "big." msgstr "다운로드가 준비 중입니다. 파일 크기가 크다면 시간이 오래 걸릴 수도 있습니다." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "폴더 이름이 유효하지 않습니다. " - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "이름" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "크기" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "수정됨" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 780a12d634..f320d2ae96 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# chohy , 2013 # smallsnail , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 09:30+0000\n" +"Last-Translator: chohy \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,30 +19,41 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "현재 ownCloud 버전과 호환되지 않기 때문에 \"%s\" 앱을 설치할 수 없습니다." + +#: app.php:250 +msgid "No app name specified" +msgstr "앱 이름이 지정되지 않았습니다." + +#: app.php:361 msgid "Help" msgstr "도움말" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "개인" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "설정" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "사용자" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "관리자" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "\"%s\" 업그레이드에 실패했습니다." #: defaults.php:35 msgid "web services under your control" @@ -50,7 +62,7 @@ msgstr "내가 관리하는 웹 서비스" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "\"%s\"을(를) 열 수 없습니다." #: files.php:226 msgid "ZIP download is turned off." @@ -74,6 +86,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "앱을 설치할 때 소스가 지정되지 않았습니다." + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "http에서 앱을 설치할 대 href가 지정되지 않았습니다." + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "로컬 파일에서 앱을 설치할 때 경로가 지정되지 않았습니다." + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "%s 타입 아카이브는 지원되지 않습니다." + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "앱을 설치할 때 아카이브를 열지 못했습니다." + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "앱에서 info.xml 파일이 제공되지 않았습니다." + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다. " + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "현재 ownCloud 버전과 호환되지 않기 때문에 앱을 설치할 수 없습니다." + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "출하되지 않은 앱에 허용되지 않는 true 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다." + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다. " + +#: installer.php:160 +msgid "App directory already exists" +msgstr "앱 디렉토리가 이미 존재합니다. " + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s " + #: json.php:28 msgid "Application is not enabled" msgstr "앱이 활성화되지 않았습니다" @@ -116,16 +184,16 @@ msgstr "%s 에 적으신 데이터베이스 이름에는 점을 사용할수 없 #: setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL 사용자 이름이나 암호가 잘못되었습니다: %s" #: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 #: setup/postgresql.php:24 setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "기존 계정이나 administrator(관리자)를 입력해야 합니다." #: setup/mysql.php:12 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "MySQL 사용자 이름이나 암호가 잘못되었습니다." #: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 #: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 @@ -142,38 +210,38 @@ msgstr "DB 오류: \"%s\"" #: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "잘못된 명령: \"%s\"" #: setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL 사용자 '%s'@'localhost'이(가) 이미 존재합니다." #: setup/mysql.php:86 msgid "Drop this user from MySQL" -msgstr "" +msgstr "이 사용자를 MySQL에서 뺍니다." #: setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다. " #: setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "" +msgstr "이 사용자를 MySQL에서 뺍니다." #: setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Oracle 연결을 수립할 수 없습니다." #: setup/oci.php:41 setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Oracle 사용자 이름이나 암호가 잘못되었습니다." #: setup/oci.php:173 setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "잘못된 명령: \"%s\", 이름: %s, 암호: %s" #: setup/postgresql.php:23 setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" @@ -205,12 +273,12 @@ msgstr "초 전" #: template/functions.php:81 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "%n분 전 " #: template/functions.php:82 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n시간 전 " #: template/functions.php:83 msgid "today" @@ -223,7 +291,7 @@ msgstr "어제" #: template/functions.php:85 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n일 전 " #: template/functions.php:86 msgid "last month" @@ -232,7 +300,7 @@ msgstr "지난 달" #: template/functions.php:87 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n달 전 " #: template/functions.php:88 msgid "last year" @@ -244,7 +312,7 @@ msgstr "년 전" #: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "원인: " #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 3b5fbb866a..9556c8739f 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -43,10 +43,6 @@ msgstr "그룹이 이미 존재함" msgid "Unable to add group" msgstr "그룹을 추가할 수 없음" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "앱을 활성화할 수 없습니다." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "이메일 저장됨" @@ -93,31 +89,43 @@ msgstr "앱을 업데이트할 수 없습니다." msgid "Update to {appversion}" msgstr "버전 {appversion}(으)로 업데이트" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "비활성화" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "사용함" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "기다려 주십시오...." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "오류" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "업데이트 중...." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "앱을 업데이트하는 중 오류 발생" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "오류" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "업데이트" + +#: js/apps.js:122 msgid "Updated" msgstr "업데이트됨" @@ -370,10 +378,6 @@ msgstr "apps.owncloud.com에 있는 앱 페이지를 참고하십시오" msgid "-licensed by " msgstr "-라이선스됨: " -#: templates/apps.php:43 -msgid "Update" -msgstr "업데이트" - #: templates/help.php:4 msgid "User Documentation" msgstr "사용자 문서" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index d258cb5e7f..450c02ae9f 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -193,23 +218,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 6a342f3dfa..b8a21fbbfc 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "هه‌ڵه" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "ناو" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 983e005aa2..06a8f2c010 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "یارمەتی" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "ده‌ستكاری" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "به‌كارهێنه‌ر" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index ba15b44ca9..943ca69040 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "چالاککردن" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "هه‌ڵه" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "هه‌ڵه" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "نوێکردنه‌وه" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "نوێکردنه‌وه" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 998bef3579..90c5408850 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "Den/D' %s huet »%s« mat dir gedeelt" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Typ vun der Kategorie net uginn." @@ -194,23 +219,23 @@ msgstr "Lescht Joer" msgid "years ago" msgstr "Joren hir" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Auswielen" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Feeler beim Luede vun der Virlag fir d'Fichiers-Selektioun" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Jo" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Nee" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "OK" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 2043b2dca2..2b25a70819 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Fehler" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Numm" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Gréisst" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Geännert" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 8ee53d4cf0..e8a02a77cb 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Hëllef" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Perséinlech" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Astellungen" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Benotzer" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index bc5e2c4060..195b886e8d 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-23 20:16-0400\n" -"PO-Revision-Date: 2013-08-23 11:10+0000\n" -"Last-Translator: llaera \n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,10 +43,6 @@ msgstr "Group existeiert schon." msgid "Unable to add group" msgstr "Onmeiglech Grupp beizefügen." -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Kann App net aktiveieren." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail gespäichert" @@ -93,31 +89,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Ofschalten" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Aschalten" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Fehler" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Fehler" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -370,10 +378,6 @@ msgstr "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index bb9ac1fab0..fba54c74e3 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mambuta , 2013 # Roman Deniobe , 2013 # fizikiukas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -22,6 +23,31 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" +msgstr "%s pasidalino »%s« su tavimi" + +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -150,16 +176,16 @@ msgstr "prieš sekundę" #: js/js.js:813 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] " prieš %n minutę" +msgstr[1] " prieš %n minučių" +msgstr[2] " prieš %n minučių" #: js/js.js:814 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "prieš %n valandą" +msgstr[1] "prieš %n valandų" +msgstr[2] "prieš %n valandų" #: js/js.js:815 msgid "today" @@ -183,9 +209,9 @@ msgstr "praeitą mėnesį" #: js/js.js:819 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "prieš %n mėnesį" +msgstr[1] "prieš %n mėnesius" +msgstr[2] "prieš %n mėnesių" #: js/js.js:820 msgid "months ago" @@ -199,23 +225,23 @@ msgstr "praeitais metais" msgid "years ago" msgstr "prieš metus" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Pasirinkite" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Klaida pakraunant failų naršyklę" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Taip" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Ne" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Gerai" @@ -382,7 +408,7 @@ msgstr "Atnaujinimas buvo sėkmingas. Nukreipiame į jūsų ownCloud." #: lostpassword/controller.php:61 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s slaptažodžio atnaujinimas" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -418,7 +444,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Taip, aš tikrai noriu atnaujinti slaptažodį" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -583,7 +609,7 @@ msgstr "Atsijungti" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "Daugiau programų" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index e4819c2b8f..d6f81df72f 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -95,21 +95,20 @@ msgstr "Nepakanka vietos" msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL negali būti tuščias." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Negalimas aplanko pavadinimas. 'Shared' pavadinimas yra rezervuotas ownCloud" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Klaida" @@ -198,30 +197,26 @@ msgid "" "big." msgstr "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunčiamas didelis failas." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Negalimas aplanko pavadinimas. 'Shared' pavadinimas yra rezervuotas ownCloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Dydis" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Pakeista" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 34cc04cbf5..21df78c7b6 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 20:00+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Pagalba" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Asmeniniai" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Nustatymai" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Vartotojai" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administravimas" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Programa neįjungta" @@ -207,14 +274,14 @@ msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -msgstr[2] "" +msgstr[2] " prieš %n minučių" #: template/functions.php:82 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -msgstr[2] "" +msgstr[2] "prieš %n valandų" #: template/functions.php:83 msgid "today" @@ -240,7 +307,7 @@ msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -msgstr[2] "" +msgstr[2] "prieš %n mėnesių" #: template/functions.php:88 msgid "last year" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index a0c8555bbe..9f10ee721e 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -43,10 +43,6 @@ msgstr "Grupė jau egzistuoja" msgid "Unable to add group" msgstr "Nepavyko pridėti grupės" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Nepavyksta įjungti aplikacijos." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "El. paštas išsaugotas" @@ -93,31 +89,43 @@ msgstr "Nepavyko atnaujinti programos." msgid "Update to {appversion}" msgstr "Atnaujinti iki {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Išjungti" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Įjungti" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Prašome palaukti..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Klaida" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Atnaujinama..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Įvyko klaida atnaujinant programą" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Klaida" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Atnaujinti" + +#: js/apps.js:122 msgid "Updated" msgstr "Atnaujinta" @@ -370,10 +378,6 @@ msgstr "" msgid "-licensed by " msgstr "- autorius" -#: templates/apps.php:43 -msgid "Update" -msgstr "Atnaujinti" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index c5a0608398..6d064f72ab 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s kopīgots »%s« ar jums" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Kategorijas tips nav norādīts." @@ -198,23 +223,23 @@ msgstr "gājušajā gadā" msgid "years ago" msgstr "gadus atpakaļ" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Izvēlieties" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Kļūda ielādējot datņu ņēmēja veidni" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Jā" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Nē" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Labi" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index fc8b014e7b..a8d25e9c41 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-23 20:15-0400\n" -"PO-Revision-Date: 2013-08-23 14:10+0000\n" -"Last-Translator: stendec \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,21 +95,20 @@ msgstr "Nepietiek brīvas vietas" msgid "Upload cancelled." msgstr "Augšupielāde ir atcelta." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." -#: js/file-upload.js:234 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL nevar būt tukšs." -#: js/file-upload.js:239 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Kļūdains mapes nosaukums. 'Shared' lietošana ir rezervēta no ownCloud" -#: js/file-upload.js:270 js/file-upload.js:286 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Kļūda" @@ -198,30 +197,26 @@ msgid "" "big." msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nederīgs mapes nosaukums. “Koplietots” izmantojums ir rezervēts ownCloud servisam." - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nosaukums" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Izmērs" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Mainīts" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapes" msgstr[1] "%n mape" msgstr[2] "%n mapes" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n faili" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 36471317d5..4e46610977 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Palīdzība" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personīgi" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Iestatījumi" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Lietotāji" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administratori" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kļūda atjauninot \"%s\"" @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "Lejupielādējiet savus failus mazākās daļās, atsevišķi vai palūdziet tos administratoram." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Lietotne nav aktivēta" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 635999b490..d3122ddf86 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-23 20:16-0400\n" -"PO-Revision-Date: 2013-08-23 14:10+0000\n" -"Last-Translator: stendec \n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,10 +43,6 @@ msgstr "Grupa jau eksistē" msgid "Unable to add group" msgstr "Nevar pievienot grupu" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Nevarēja aktivēt lietotni." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-pasts tika saglabāts" @@ -93,31 +89,43 @@ msgstr "Nevarēja atjaunināt lietotni." msgid "Update to {appversion}" msgstr "Atjaunināt uz {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Deaktivēt" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Aktivēt" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Lūdzu, uzgaidiet...." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Kļūda" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Atjaunina...." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Kļūda, atjauninot lietotni" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Kļūda" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Atjaunināt" + +#: js/apps.js:122 msgid "Updated" msgstr "Atjaunināta" @@ -370,10 +378,6 @@ msgstr "Apskati lietotņu lapu — apps.owncloud.com" msgid "-licensed by " msgstr "-licencēts no " -#: templates/apps.php:43 -msgid "Update" -msgstr "Atjaunināt" - #: templates/help.php:4 msgid "User Documentation" msgstr "Lietotāja dokumentācija" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 701879cd51..16a948973c 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Не беше доставен тип на категорија." @@ -193,23 +218,23 @@ msgstr "минатата година" msgid "years ago" msgstr "пред години" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Избери" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Не" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Во ред" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index a5d3ad3219..32514622d6 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "Адресата неможе да биде празна." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Грешка" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Големина" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Променето" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index e22d5843f5..9ea277ce4a 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Помош" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Лично" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Подесувања" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Корисници" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Админ" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Апликацијата не е овозможена" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 77eea7f21c..f607774bba 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "Групата веќе постои" msgid "Unable to add group" msgstr "Неможе да додадам група" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Неможе да овозможам апликација." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Електронската пошта е снимена" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Оневозможи" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Овозможи" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Грешка" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Грешка" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Ажурирај" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -369,10 +377,6 @@ msgstr "Види ја страницата со апликации на apps.own msgid "-licensed by " msgstr "-лиценцирано од " -#: templates/apps.php:43 -msgid "Update" -msgstr "Ажурирај" - #: templates/help.php:4 msgid "User Documentation" msgstr "Корисничка документација" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index fccd1c57f6..9ad45f5453 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -193,23 +218,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index 83b5a5da14..141b28bd76 100644 --- a/l10n/ml_IN/files.po +++ b/l10n/ml_IN/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index 0e8c35fca6..98bbc764f0 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po index ae59755b18..67536fd94e 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index cfb078e9e2..93497a4ddd 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -189,23 +214,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Ya" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Tidak" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ok" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 83db5d48b5..a199e2b8ac 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Ralat" @@ -195,28 +194,24 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Saiz" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 7f34225a01..637bea9f33 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Bantuan" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Peribadi" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Tetapan" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Pengguna" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index c18b8be698..f809ae9063 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Emel disimpan" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Nyahaktif" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Aktif" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Ralat" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Ralat" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Kemaskini" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "Kumpulan" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "Padam" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "Lihat halaman applikasi di apps.owncloud.com" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "Kemaskini" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index a1e4d46193..9731f51472 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -189,23 +214,23 @@ msgstr "မနှစ်က" msgid "years ago" msgstr "နှစ် အရင်က" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "ရွေးချယ်" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "ဟုတ်" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "မဟုတ်ဘူး" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "အိုကေ" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 84606a993f..b3e7927bbe 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -195,28 +194,24 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index a8a9bc152a..4e6fa87d98 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "အကူအညီ" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "သုံးစွဲသူ" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "အက်ဒမင်" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index f537d21d9e..94670f111b 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 6533a847d2..39afa61d12 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s delte »%s« med deg" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -194,23 +219,23 @@ msgstr "forrige år" msgid "years ago" msgstr "år siden" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Velg" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Nei" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ok" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index ea723ff990..4485c76201 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -97,21 +97,20 @@ msgstr "Ikke nok lagringsplass" msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL-en kan ikke være tom." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Feil" @@ -199,29 +198,25 @@ msgid "" "big." msgstr "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Størrelse" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Endret" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 81cf9faa23..1341b39bae 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Hjelp" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personlig" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Innstillinger" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Brukere" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Applikasjon er ikke påslått" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 7c1c0736cf..98c0ccd925 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -44,10 +44,6 @@ msgstr "Gruppen finnes allerede" msgid "Unable to add group" msgstr "Kan ikke legge til gruppe" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Kan ikke aktivere app." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Epost lagret" @@ -94,31 +90,43 @@ msgstr "Kunne ikke oppdatere app." msgid "Update to {appversion}" msgstr "Oppdater til {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Slå avBehandle " -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Aktiver" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Vennligst vent..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Feil" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Oppdaterer..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Feil ved oppdatering av app" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Feil" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Oppdater" + +#: js/apps.js:122 msgid "Updated" msgstr "Oppdatert" @@ -371,10 +379,6 @@ msgstr "Se applikasjonens side på apps.owncloud.org" msgid "-licensed by " msgstr "-lisensiert av " -#: templates/apps.php:43 -msgid "Update" -msgstr "Oppdater" - #: templates/help.php:4 msgid "User Documentation" msgstr "Brukerdokumentasjon" diff --git a/l10n/nb_NO/user_webdavauth.po b/l10n/nb_NO/user_webdavauth.po index 89f5f3f24e..8be4a5ee62 100644 --- a/l10n/nb_NO/user_webdavauth.po +++ b/l10n/nb_NO/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# espenbye , 2013 # espenbye , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-24 14:10+0000\n" +"Last-Translator: espenbye \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Adresse:" #: templates/settings.php:7 msgid "" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 8278426322..fe95a40004 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -193,23 +218,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index d09313ed51..f5777db036 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 8852f856cc..a938ce906c 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 578a57af94..95b359633e 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 59e41074d6..29c60b93ff 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s deelde »%s« met jou" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Categorie type niet opgegeven." @@ -196,23 +221,23 @@ msgstr "vorig jaar" msgid "years ago" msgstr "jaar geleden" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Kies" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Fout bij laden van bestandsselectie sjabloon" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Nee" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ok" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 154a7551d0..963583df01 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 22:00+0000\n" -"Last-Translator: kwillems \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -96,21 +96,20 @@ msgstr "Niet genoeg ruimte beschikbaar" msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/file-upload.js:234 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL kan niet leeg zijn." -#: js/file-upload.js:239 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ongeldige mapnaam. Gebruik van 'Gedeeld' is voorbehouden aan Owncloud zelf" -#: js/file-upload.js:270 js/file-upload.js:286 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Fout" @@ -198,29 +197,25 @@ msgid "" "big." msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Naam" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Grootte" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Aangepast" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n mappen" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index eba0796878..08fe305989 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -4,14 +4,15 @@ # # Translators: # André Koot , 2013 +# kwillems , 2013 # Len , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:30+0000\n" +"Last-Translator: kwillems \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,27 +20,38 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "De app naam is niet gespecificeerd." + +#: app.php:361 msgid "Help" msgstr "Help" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Persoonlijk" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Instellingen" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Gebruikers" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Beheerder" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgrade \"%s\" mislukt." @@ -75,6 +87,62 @@ msgid "" "administrator." msgstr "Download de bestanden in kleinere brokken, appart of vraag uw administrator." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "De applicatie is niet actief" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 265529a90a..fef0b93014 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-22 10:36-0400\n" -"PO-Revision-Date: 2013-08-21 18:40+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:30+0000\n" "Last-Translator: kwillems \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -46,10 +46,6 @@ msgstr "Groep bestaat al" msgid "Unable to add group" msgstr "Niet in staat om groep toe te voegen" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Kan de app. niet activeren" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail bewaard" @@ -96,31 +92,43 @@ msgstr "Kon de app niet bijwerken." msgid "Update to {appversion}" msgstr "Bijwerken naar {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Uitschakelen" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Activeer" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Even geduld aub...." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Fout" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "Fout tijdens het uitzetten van het programma" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "Fout tijdens het aanzetten van het programma" + +#: js/apps.js:115 msgid "Updating...." msgstr "Bijwerken...." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Fout bij bijwerken app" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Fout" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Bijwerken" + +#: js/apps.js:122 msgid "Updated" msgstr "Bijgewerkt" @@ -373,10 +381,6 @@ msgstr "Zie de applicatiepagina op apps.owncloud.com" msgid "-licensed by " msgstr "-Gelicenseerd door " -#: templates/apps.php:43 -msgid "Update" -msgstr "Bijwerken" - #: templates/help.php:4 msgid "User Documentation" msgstr "Gebruikersdocumentatie" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index d7afc5bf41..8a9fabb4af 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Ingen kategoritype." @@ -195,23 +220,23 @@ msgstr "i fjor" msgid "years ago" msgstr "år sidan" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Vel" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Nei" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Greitt" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index fe27f78268..1a2e3f21ed 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -96,21 +96,20 @@ msgstr "Ikkje nok lagringsplass tilgjengeleg" msgid "Upload cancelled." msgstr "Opplasting avbroten." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fila lastar no opp. Viss du forlèt sida no vil opplastinga verta avbroten." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "Nettadressa kan ikkje vera tom." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ugyldig mappenamn. Mappa «Shared» er reservert av ownCloud" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Feil" @@ -198,29 +197,25 @@ msgid "" "big." msgstr "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Ugyldig mappenamn. Mappa «Shared» er reservert av ownCloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Storleik" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Endra" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index cb71c6e589..5829746af2 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Hjelp" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personleg" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Innstillingar" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Brukarar" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administrer" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index ca6c39e33c..f46da15c6e 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -44,10 +44,6 @@ msgstr "Gruppa finst allereie" msgid "Unable to add group" msgstr "Klarte ikkje leggja til gruppa" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Klarte ikkje slå på programmet." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-postadresse lagra" @@ -94,31 +90,43 @@ msgstr "Klarte ikkje oppdatera programmet." msgid "Update to {appversion}" msgstr "Oppdater til {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Slå av" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Slå på" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Ver venleg og vent …" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Feil" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Oppdaterer …" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Feil ved oppdatering av app" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Feil" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Oppdater" + +#: js/apps.js:122 msgid "Updated" msgstr "Oppdatert" @@ -147,27 +155,27 @@ msgstr "Klarte ikkje fjerna brukaren" msgid "Groups" msgstr "Grupper" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Gruppestyrar" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "Slett" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "legg til gruppe" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "Du må oppgje eit gyldig brukarnamn" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "Feil ved oppretting av brukar" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "Du må oppgje eit gyldig passord" @@ -371,10 +379,6 @@ msgstr "Sjå programsida på apps.owncloud.com" msgid "-licensed by " msgstr "Lisensiert under av " -#: templates/apps.php:43 -msgid "Update" -msgstr "Oppdater" - #: templates/help.php:4 msgid "User Documentation" msgstr "Brukardokumentasjon" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 0fee2d5913..f05370e666 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -193,23 +218,23 @@ msgstr "an passat" msgid "years ago" msgstr "ans a" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Causís" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Òc" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Non" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "D'accòrdi" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 89aa3f3477..457161c53a 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Error" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Talha" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index cfa24f83de..5cbb1c5e01 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Ajuda" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personal" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Configuracion" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Usancièrs" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 39b43f27c7..6a06eef3b9 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "Lo grop existís ja" msgid "Unable to add group" msgstr "Pas capable d'apondre un grop" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Pòt pas activar app. " - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Corrièl enregistrat" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Desactiva" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Activa" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Error" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "Grops" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "Grop Admin" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "Escafa" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "Agacha la pagina d'applications en cò de apps.owncloud.com" msgid "-licensed by " msgstr "-licençiat per " -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 1917f75d11..262ba294d2 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s Współdzielone »%s« z tobą" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Nie podano typu kategorii." @@ -199,23 +224,23 @@ msgstr "w zeszłym roku" msgid "years ago" msgstr "lat temu" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Wybierz" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Błąd podczas ładowania pliku wybranego szablonu" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Tak" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Nie" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "OK" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 4afe550b71..201660307e 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -96,21 +96,20 @@ msgstr "Za mało miejsca" msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL nie może być pusty." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nieprawidłowa nazwa folderu. Wykorzystanie 'Shared' jest zarezerwowane przez ownCloud" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Błąd" @@ -199,30 +198,26 @@ msgid "" "big." msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nieprawidłowa nazwa folderu. Korzystanie z nazwy „Shared” jest zarezerwowane dla ownCloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nazwa" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Rozmiar" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Modyfikacja" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index ea1272f2a8..d44b5a180f 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Pomoc" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Osobiste" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Ustawienia" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Użytkownicy" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administrator" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Błąd przy aktualizacji \"%s\"." @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "Pobierz pliki w mniejszy kawałkach, oddzielnie lub poproś administratora o zwiększenie limitu." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplikacja nie jest włączona" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 6f634a0dc1..13437f51c4 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -44,10 +44,6 @@ msgstr "Grupa już istnieje" msgid "Unable to add group" msgstr "Nie można dodać grupy" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Nie można włączyć aplikacji." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail zapisany" @@ -94,31 +90,43 @@ msgstr "Nie można uaktualnić aplikacji." msgid "Update to {appversion}" msgstr "Aktualizacja do {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Wyłącz" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Włącz" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Proszę czekać..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Błąd" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Aktualizacja w toku..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Błąd podczas aktualizacji aplikacji" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Błąd" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Aktualizuj" + +#: js/apps.js:122 msgid "Updated" msgstr "Zaktualizowano" @@ -371,10 +379,6 @@ msgstr "Zobacz stronę aplikacji na apps.owncloud.com" msgid "-licensed by " msgstr "-licencjonowane przez " -#: templates/apps.php:43 -msgid "Update" -msgstr "Aktualizuj" - #: templates/help.php:4 msgid "User Documentation" msgstr "Dokumentacja użytkownika" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 703b1feb26..f39dcf5386 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s compartilhou »%s« com você" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Tipo de categoria não fornecido." @@ -195,23 +220,23 @@ msgstr "último ano" msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Escolha" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Template selecionador Erro ao carregar arquivo" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Sim" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Não" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ok" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index d9250a024c..1b16070f4e 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -97,21 +97,20 @@ msgstr "Espaço de armazenamento insuficiente" msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL não pode ficar em branco" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nome de pasta inválido. O uso do nome 'Compartilhado' é reservado ao ownCloud" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Erro" @@ -199,29 +198,25 @@ msgid "" "big." msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nome de pasta inválido. O uso de 'Shared' é reservado para o Owncloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Tamanho" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 80a90875c3..d35e68a4ec 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 12:50+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,27 +18,38 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "O aplicativo \"%s\" não pode ser instalado porque não é compatível com esta versão do ownCloud." + +#: app.php:250 +msgid "No app name specified" +msgstr "O nome do aplicativo não foi especificado." + +#: app.php:361 msgid "Help" msgstr "Ajuda" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Pessoal" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Ajustes" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Usuários" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falha na atualização de \"%s\"." @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "Baixe os arquivos em pedaços menores, separadamente ou solicite educadamente ao seu administrador." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "Nenhuma fonte foi especificada enquanto instalava o aplicativo" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "Nenhuma href foi especificada enquanto instalava o aplicativo de httml" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "Nenhum caminho foi especificado enquanto instalava o aplicativo do arquivo local" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "Arquivos do tipo %s não são suportados" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "Falha para abrir o arquivo enquanto instalava o aplicativo" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "O aplicativo não fornece um arquivo info.xml" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "O aplicativo não pode ser instalado por causa do código não permitido no Aplivativo" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "O aplicativo não pode ser instalado porque não é compatível com esta versão do ownCloud" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "O aplicativo não pode ser instalado porque ele contém a marca verdadeiro que não é permitido para aplicações não embarcadas" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "O aplicativo não pode ser instalado porque a versão em info.xml /versão não é a mesma que a versão relatada na App Store" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "Diretório App já existe" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "Não é possível criar pasta app. Corrija as permissões. %s" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplicação não está habilitada" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 674d3237b7..4214958d1a 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-20 00:50+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 12:21+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -44,10 +44,6 @@ msgstr "Grupo já existe" msgid "Unable to add group" msgstr "Não foi possível adicionar grupo" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Não foi possível habilitar aplicativo." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail salvo" @@ -94,31 +90,43 @@ msgstr "Não foi possível atualizar a app." msgid "Update to {appversion}" msgstr "Atualizar para {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Desabilitar" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Habilitar" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Por favor, aguarde..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Erro" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "Erro enquanto desabilitava o aplicativo" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "Erro enquanto habilitava o aplicativo" + +#: js/apps.js:115 msgid "Updating...." msgstr "Atualizando..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Erro ao atualizar aplicativo" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Erro" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Atualizar" + +#: js/apps.js:122 msgid "Updated" msgstr "Atualizado" @@ -371,10 +379,6 @@ msgstr "Ver página do aplicativo em apps.owncloud.com" msgid "-licensed by " msgstr "-licenciado por " -#: templates/apps.php:43 -msgid "Update" -msgstr "Atualizar" - #: templates/help.php:4 msgid "User Documentation" msgstr "Documentação de Usuário" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 8e83ab7e75..b2edb3b335 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 12:30+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -157,7 +157,7 @@ msgstr "Filtro de Login de Usuário" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "" +msgstr "Define o filtro a ser aplicado, o login é feito. %%uid substitui o nome do usuário na ação de login. Exemplo: \"uid=%%uid\"" #: templates/settings.php:55 msgid "User List Filter" @@ -167,7 +167,7 @@ msgstr "Filtro de Lista de Usuário" msgid "" "Defines the filter to apply, when retrieving users (no placeholders). " "Example: \"objectClass=person\"" -msgstr "" +msgstr "Define o filtro a ser aplicado, ao recuperar usuários (sem espaços reservados). Exemplo: \"objectClass=person\"" #: templates/settings.php:59 msgid "Group Filter" @@ -177,7 +177,7 @@ msgstr "Filtro de Grupo" msgid "" "Defines the filter to apply, when retrieving groups (no placeholders). " "Example: \"objectClass=posixGroup\"" -msgstr "" +msgstr "Define o filtro a ser aplicado, ao recuperar grupos (sem espaços reservados). Exemplo: \"objectClass=posixGroup\"" #: templates/settings.php:66 msgid "Connection Settings" @@ -238,7 +238,7 @@ msgstr "Desligar validação de certificado SSL." msgid "" "Not recommended, use it for testing only! If connection only works with this" " option, import the LDAP server's SSL certificate in your %s server." -msgstr "" +msgstr "Não recomendado, use-o somente para teste! Se a conexão só funciona com esta opção, importar o certificado SSL do servidor LDAP em seu servidor %s." #: templates/settings.php:76 msgid "Cache Time-To-Live" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index d1bc08b13f..75b60246ea 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s partilhado »%s« contigo" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Tipo de categoria não fornecido" @@ -197,23 +222,23 @@ msgstr "ano passado" msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Escolha" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Erro ao carregar arquivo do separador modelo" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Sim" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Não" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ok" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 3534f1cc59..8d4a96c779 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -96,21 +96,20 @@ msgstr "Espaço em disco insuficiente!" msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "O URL não pode estar vazio." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nome da pasta inválido. Palavra 'Shared' é reservado pela ownCloud" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Erro" @@ -198,29 +197,25 @@ msgid "" "big." msgstr "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Tamanho" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index c1a7fac6ec..b7393d9b03 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Ajuda" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Pessoal" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Configurações" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Utilizadores" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "A actualização \"%s\" falhou." @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "Descarregue os ficheiros em partes menores, separados ou peça gentilmente ao seu administrador." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "A aplicação não está activada" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index a22e4fc18b..3e43edd894 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -46,10 +46,6 @@ msgstr "O grupo já existe" msgid "Unable to add group" msgstr "Impossível acrescentar o grupo" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Não foi possível activar a app." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email guardado" @@ -96,31 +92,43 @@ msgstr "Não foi possível actualizar a aplicação." msgid "Update to {appversion}" msgstr "Actualizar para a versão {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Activar" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Por favor aguarde..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Erro" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "A Actualizar..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Erro enquanto actualizava a aplicação" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Erro" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Actualizar" + +#: js/apps.js:122 msgid "Updated" msgstr "Actualizado" @@ -373,10 +381,6 @@ msgstr "Ver a página da aplicação em apps.owncloud.com" msgid "-licensed by " msgstr "-licenciado por " -#: templates/apps.php:43 -msgid "Update" -msgstr "Actualizar" - #: templates/help.php:4 msgid "User Documentation" msgstr "Documentação de Utilizador" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 94a85870e9..c59794b27a 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s Partajat »%s« cu tine de" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Tipul de categorie nu a fost specificat." @@ -201,23 +226,23 @@ msgstr "ultimul an" msgid "years ago" msgstr "ani în urmă" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Alege" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Eroare la încărcarea șablonului selectorului de fișiere" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Nu" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ok" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 7f0ae89b77..83791045a8 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -97,21 +97,20 @@ msgstr "Nu este suficient spațiu disponibil" msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "Adresa URL nu poate fi goală." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Nume de dosar invalid. Utilizarea 'Shared' e rezervată de ownCloud" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Eroare" @@ -200,30 +199,26 @@ msgid "" "big." msgstr "Se pregătește descărcarea. Aceasta poate să dureze ceva timp dacă fișierele sunt mari." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Nume" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Dimensiune" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index d09f136544..2a84e7235c 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Ajutor" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personal" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Setări" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Utilizatori" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplicația nu este activată" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 601eba0a05..1e816b50f0 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -43,10 +43,6 @@ msgstr "Grupul există deja" msgid "Unable to add group" msgstr "Nu s-a putut adăuga grupul" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Nu s-a putut activa aplicația." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-mail salvat" @@ -93,31 +89,43 @@ msgstr "Aplicaţia nu s-a putut actualiza." msgid "Update to {appversion}" msgstr "Actualizat la {versiuneaaplicaţiei}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Dezactivați" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Activare" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Aşteptaţi vă rog...." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Eroare" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Actualizare în curs...." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Eroare în timpul actualizării aplicaţiei" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Eroare" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Actualizare" + +#: js/apps.js:122 msgid "Updated" msgstr "Actualizat" @@ -370,10 +378,6 @@ msgstr "Vizualizează pagina applicației pe apps.owncloud.com" msgid "-licensed by " msgstr "-licențiat " -#: templates/apps.php:43 -msgid "Update" -msgstr "Actualizare" - #: templates/help.php:4 msgid "User Documentation" msgstr "Documentație utilizator" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 0eea0c7144..5766701217 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -30,6 +30,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s поделился »%s« с вами" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Тип категории не предоставлен" @@ -205,23 +230,23 @@ msgstr "в прошлом году" msgid "years ago" msgstr "несколько лет назад" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Выбрать" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Ошибка при загрузке файла выбора шаблона" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Нет" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ок" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index a34e9fe5a4..50051315f0 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -99,21 +99,20 @@ msgstr "Недостаточно свободного места" msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "Ссылка не может быть пустой." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Ошибка" @@ -202,30 +201,26 @@ msgid "" "big." msgstr "Загрузка началась. Это может потребовать много времени, если файл большого размера." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Имя" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Изменён" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n папка" msgstr[1] "%n папки" msgstr[2] "%n папок" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index a2908e78ac..70d8b918f3 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -20,27 +20,38 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Помощь" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Личное" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Конфигурация" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Пользователи" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Не смог обновить \"%s\"." @@ -76,6 +87,62 @@ msgid "" "administrator." msgstr "Загрузите файл маленьшими порциями, раздельно или вежливо попросите Вашего администратора." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Приложение не разрешено" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 64559aaceb..2777eaad80 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Aleksey Grigoryev , 2013 # Alexander Shashkevych , 2013 # alfsoft , 2013 # lord93 , 2013 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 07:10+0000\n" +"Last-Translator: Aleksey Grigoryev \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,10 +49,6 @@ msgstr "Группа уже существует" msgid "Unable to add group" msgstr "Невозможно добавить группу" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Не удалось включить приложение." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email сохранен" @@ -98,37 +95,49 @@ msgstr "Невозможно обновить приложение" msgid "Update to {appversion}" msgstr "Обновить до {версия приложения}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Выключить" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Включить" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Подождите..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Ошибка" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Обновление..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Ошибка при обновлении приложения" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Ошибка" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Обновить" + +#: js/apps.js:122 msgid "Updated" msgstr "Обновлено" #: js/personal.js:150 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время." #: js/personal.js:172 msgid "Saving..." @@ -375,10 +384,6 @@ msgstr "Смотрите дополнения на apps.owncloud.com" msgid "-licensed by " msgstr " лицензия. Автор " -#: templates/apps.php:43 -msgid "Update" -msgstr "Обновить" - #: templates/help.php:4 msgid "User Documentation" msgstr "Пользовательская документация" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 1f04852c7a..c5c0acad45 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -193,23 +218,23 @@ msgstr "පෙර අවුරුද්දේ" msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "තෝරන්න" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "ඔව්" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "එපා" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "හරි" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index b0ac13562a..eaf1115c62 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "යොමුව හිස් විය නොහැක" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "දෝෂයක්" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "නම" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 8bd7dedc62..ef707dcafd 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "උදව්" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "පෞද්ගලික" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "සිටුවම්" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "පරිශීලකයන්" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "පරිපාලක" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "යෙදුම සක්‍රිය කර නොමැත" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index d80c380803..0aaa56ad95 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "කණ්ඩායම දැනටමත් තිබේ" msgid "Unable to add group" msgstr "කාණඩයක් එක් කළ නොහැකි විය" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "යෙදුම සක්‍රීය කළ නොහැකි විය." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "වි-තැපෑල සුරකින ලදී" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "අක්‍රිය කරන්න" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "සක්‍රිය කරන්න" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "දෝෂයක්" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "දෝෂයක්" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "යාවත්කාල කිරීම" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "යාවත්කාල කිරීම" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index d3d50d2c75..66e30ab46b 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -197,23 +222,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index df3871ecaa..42edcfa625 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -197,30 +196,26 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 00f4b5abfa..a2deec2de3 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 44c3a024c0..a5b82a490e 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index c0bc9aaaa6..83405bcf1c 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-20 19:10+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,6 +23,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s s Vami zdieľa »%s«" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Neposkytnutý typ kategórie." diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 62660788d8..82282ef230 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-20 20:20+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,21 +95,20 @@ msgstr "Nie je k dispozícii dostatok miesta" msgid "Upload cancelled." msgstr "Odosielanie zrušené." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/file-upload.js:234 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL nemôže byť prázdne." -#: js/file-upload.js:239 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Neplatný názov priečinka. Názov \"Shared\" je rezervovaný pre ownCloud" -#: js/file-upload.js:270 js/file-upload.js:286 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Chyba" @@ -198,30 +197,26 @@ msgid "" "big." msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Neplatné meno priečinka. Používanie mena 'Shared' je vyhradené len pre Owncloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Názov" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Veľkosť" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Upravené" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n priečinok" msgstr[1] "%n priečinky" msgstr[2] "%n priečinkov" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n súbor" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 21bd46ddf1..b40d282cdd 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-20 16:50+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Pomoc" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Osobné" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Nastavenia" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Používatelia" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Administrátor" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Zlyhala aktualizácia \"%s\"." @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "Stiahnite súbory po menších častiach, samostatne, alebo sa obráťte na správcu." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Aplikácia nie je zapnutá" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index d20e60bd69..456e726abf 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-20 19:40+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,10 +43,6 @@ msgstr "Skupina už existuje" msgid "Unable to add group" msgstr "Nie je možné pridať skupinu" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Nie je možné zapnúť aplikáciu." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email uložený" @@ -93,31 +89,43 @@ msgstr "Nemožno aktualizovať aplikáciu." msgid "Update to {appversion}" msgstr "Aktualizovať na {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Zakázať" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Zapnúť" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Čakajte prosím..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Chyba" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Aktualizujem..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "chyba pri aktualizácii aplikácie" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Chyba" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Aktualizovať" + +#: js/apps.js:122 msgid "Updated" msgstr "Aktualizované" @@ -370,10 +378,6 @@ msgstr "Pozrite si stránku aplikácií na apps.owncloud.com" msgid "-licensed by " msgstr "-licencované " -#: templates/apps.php:43 -msgid "Update" -msgstr "Aktualizovať" - #: templates/help.php:4 msgid "User Documentation" msgstr "Príručka používateľa" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 52899493b6..06c4333a9d 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s je delil »%s« z vami" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Vrsta kategorije ni podana." @@ -203,23 +228,23 @@ msgstr "lansko leto" msgid "years ago" msgstr "let nazaj" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Izbor" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Napaka pri nalaganju predloge za izbor dokumenta" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Ne" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "V redu" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 693f82abed..bf44c66320 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -95,21 +95,20 @@ msgstr "Na voljo ni dovolj prostora." msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "Naslov URL ne sme biti prazna vrednost." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ime mape je neveljavno. Uporaba oznake \"Souporaba\" je rezervirana za ownCloud" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Napaka" @@ -199,23 +198,19 @@ msgid "" "big." msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datoteka zelo velika." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Neveljavno ime mape. Uporaba oznake \"Souporaba\" je zadržan za sistem ownCloud." - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Velikost" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -223,7 +218,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index a1879f4bce..38ac1137b6 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,38 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Pomoč" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Osebno" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Nastavitve" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Uporabniki" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Skrbništvo" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Program ni omogočen" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 9b0ecf0db0..2ffd3e8011 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -44,10 +44,6 @@ msgstr "Skupina že obstaja" msgid "Unable to add group" msgstr "Skupine ni mogoče dodati" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Programa ni mogoče omogočiti." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Elektronski naslov je shranjen" @@ -94,31 +90,43 @@ msgstr "Programa ni mogoče posodobiti." msgid "Update to {appversion}" msgstr "Posodobi na {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Onemogoči" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Omogoči" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Počakajte ..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Napaka" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Poteka posodabljanje ..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Prišlo je do napake med posodabljanjem programa." -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Napaka" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Posodobi" + +#: js/apps.js:122 msgid "Updated" msgstr "Posodobljeno" @@ -371,10 +379,6 @@ msgstr "Obiščite spletno stran programa na apps.owncloud.com" msgid "-licensed by " msgstr "-z dovoljenjem " -#: templates/apps.php:43 -msgid "Update" -msgstr "Posodobi" - #: templates/help.php:4 msgid "User Documentation" msgstr "Uporabniška dokumentacija" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 178c2c97e1..3d68349d79 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Mungon tipi i kategorisë." @@ -195,23 +220,23 @@ msgstr "vitin e shkuar" msgid "years ago" msgstr "vite më parë" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Zgjidh" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Veprim i gabuar gjatë ngarkimit të modelit të zgjedhësit të skedarëve" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Po" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Jo" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Në rregull" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index ace7c037e6..2816c2a5d6 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "Nuk ka hapësirë memorizimi e mjaftueshme" msgid "Upload cancelled." msgstr "Ngarkimi u anulua." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Ngarkimi i skedarit është në vazhdim. Nqse ndërroni faqen tani ngarkimi do të anulohet." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL-i nuk mund të jetë bosh." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Veprim i gabuar" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "Shkarkimi juaj po përgatitet. Mund të duhet pak kohë nqse skedarët janë të mëdhenj." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i rezervuar nga Owncloud-i." - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Emri" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Dimensioni" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Modifikuar" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index e5602b240e..84fd768e0f 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Ndihmë" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personale" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Parametra" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Përdoruesit" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Programi nuk është i aktivizuar." diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 22bfb9d5de..9e65797efe 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Veprim i gabuar" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Veprim i gabuar" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Azhurno" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "Elimino" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "Azhurno" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 66d8040280..3d063b8411 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Врста категорије није унет." @@ -197,23 +222,23 @@ msgstr "прошле године" msgid "years ago" msgstr "година раније" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Одабери" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Не" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "У реду" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 55f54da7a6..e6d5664fac 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "Нема довољно простора" msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "Адреса не може бити празна." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Грешка" @@ -197,30 +196,26 @@ msgid "" "big." msgstr "Припремам преузимање. Ово може да потраје ако су датотеке велике." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Неисправно име фасцикле. Фасцикла „Shared“ је резервисана за ownCloud." - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Величина" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Измењено" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 0ae0fe074f..1a0c593179 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Помоћ" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Лично" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Поставке" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Корисници" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Администратор" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Апликација није омогућена" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index f6e0850c9f..1bbe0a101e 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "Група већ постоји" msgid "Unable to add group" msgstr "Не могу да додам групу" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Не могу да укључим програм" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Е-порука сачувана" @@ -92,31 +88,43 @@ msgstr "Не могу да ажурирам апликацију." msgid "Update to {appversion}" msgstr "Ажурирај на {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Искључи" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Омогући" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Сачекајте…" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Грешка" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Ажурирам…" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Грешка при ажурирању апликације" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Грешка" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Ажурирај" + +#: js/apps.js:122 msgid "Updated" msgstr "Ажурирано" @@ -369,10 +377,6 @@ msgstr "Погледајте страницу са програмима на app msgid "-licensed by " msgstr "-лиценцирао " -#: templates/apps.php:43 -msgid "Update" -msgstr "Ажурирај" - #: templates/help.php:4 msgid "User Documentation" msgstr "Корисничка документација" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 8a0873def5..c8f1959893 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -197,23 +222,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index a24a15a621..0e1c498699 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -197,30 +196,26 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 561b4de431..9448ebc4c4 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Pomoć" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Lično" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Podešavanja" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Korisnici" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Adninistracija" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 4253999069..cdf4509a43 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "Grupe" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "Obriši" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 84c312d3d2..563206aaec 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s delade »%s« med dig" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Kategorityp inte angiven." @@ -197,23 +222,23 @@ msgstr "förra året" msgid "years ago" msgstr "år sedan" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Välj" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Fel vid inläsning av filväljarens mall" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Nej" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ok" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index dbc15ef9f3..b9cbd6f04a 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 20:40+0000\n" -"Last-Translator: medialabs\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -98,21 +98,20 @@ msgstr "Inte tillräckligt med utrymme tillgängligt" msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/file-upload.js:234 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL kan inte vara tom." -#: js/file-upload.js:239 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Ogiltigt mappnamn. Användning av 'Shared' är reserverad av ownCloud" -#: js/file-upload.js:270 js/file-upload.js:286 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Fel" @@ -200,29 +199,25 @@ msgid "" "big." msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Storlek" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Ändrad" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapp" msgstr[1] "%n mappar" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index ac5e105a4e..3230a1c404 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -19,27 +19,38 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Hjälp" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Personligt" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Inställningar" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Användare" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Admin" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Misslyckades med att uppgradera \"%s\"." @@ -75,6 +86,62 @@ msgid "" "administrator." msgstr "Ladda ner filerna i mindre bitar, separat eller fråga din administratör." +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Applikationen är inte aktiverad" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index b27f9bed23..d2f9228293 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 20:40+0000\n" -"Last-Translator: medialabs\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-28 10:20+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,10 +48,6 @@ msgstr "Gruppen finns redan" msgid "Unable to add group" msgstr "Kan inte lägga till grupp" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Kunde inte aktivera appen." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "E-post sparad" @@ -98,31 +94,43 @@ msgstr "Kunde inte uppdatera appen." msgid "Update to {appversion}" msgstr "Uppdatera till {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Deaktivera" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Aktivera" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Var god vänta..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Fel" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "Fel vid inaktivering av app" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "Fel vid aktivering av app" + +#: js/apps.js:115 msgid "Updating...." msgstr "Uppdaterar..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Fel uppstod vid uppdatering av appen" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Fel" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Uppdatera" + +#: js/apps.js:122 msgid "Updated" msgstr "Uppdaterad" @@ -375,10 +383,6 @@ msgstr "Se programsida på apps.owncloud.com" msgid "-licensed by " msgstr "-licensierad av " -#: templates/apps.php:43 -msgid "Update" -msgstr "Uppdatera" - #: templates/help.php:4 msgid "User Documentation" msgstr "Användardokumentation" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index e974dc0ec2..d2936e463c 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -193,23 +218,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index 66f0fff9e7..aa0606fc49 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 4071236d9c..8b725f24b8 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index ebd60e3215..efcf28d104 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 2ef228556c..2e5eebcca8 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "பிரிவு வகைகள் வழங்கப்படவில்லை" @@ -193,23 +218,23 @@ msgstr "கடந்த வருடம்" msgid "years ago" msgstr "வருடங்களுக்கு முன்" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "தெரிவுசெய்க " -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "ஆம்" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "இல்லை" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "சரி" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index c724be3975..79dfa233f9 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL வெறுமையாக இருக்கமுடியாது." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "வழு" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "பெயர்" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "அளவு" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index f8f3518b98..12cde4a741 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "உதவி" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "தனிப்பட்ட" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "அமைப்புகள்" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "பயனாளர்" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "நிர்வாகம்" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "செயலி இயலுமைப்படுத்தப்படவில்லை" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 100e5e64d7..6397e7f2b9 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "குழு ஏற்கனவே உள்ளது" msgid "Unable to add group" msgstr "குழுவை சேர்க்க முடியாது" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "செயலியை இயலுமைப்படுத்த முடியாது" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "மின்னஞ்சல் சேமிக்கப்பட்டது" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "இயலுமைப்ப" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "இயலுமைப்படுத்துக" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "வழு" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "வழு" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "இற்றைப்படுத்தல்" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -369,10 +377,6 @@ msgstr "apps.owncloud.com இல் செயலி பக்கத்தை ப msgid "-licensed by " msgstr "-அனுமதி பெற்ற " -#: templates/apps.php:43 -msgid "Update" -msgstr "இற்றைப்படுத்தல்" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/te/core.po b/l10n/te/core.po index 97198eda63..0c79b701dc 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -193,23 +218,23 @@ msgstr "పోయిన సంవత్సరం" msgid "years ago" msgstr "సంవత్సరాల క్రితం" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "అవును" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "కాదు" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "సరే" diff --git a/l10n/te/files.po b/l10n/te/files.po index b9310e4f50..bfc6052c32 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "పొరపాటు" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "పేరు" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "పరిమాణం" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 5094e97ebb..601b9e7b00 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "సహాయం" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "అమరికలు" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "వాడుకరులు" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index ae043e953e..13caf52b17 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "పొరపాటు" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "పొరపాటు" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "తొలగించు" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index b3486698ba..8da1fb6f5b 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-23 20:16-0400\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,6 +23,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index d9bb4fa58b..5b561431a0 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-23 20:15-0400\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,21 +95,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:234 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:239 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:270 js/file-upload.js:286 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "" @@ -197,29 +196,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 83f7a51648..07e3a942a0 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-23 20:15-0400\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 36cb92f6a2..5153def3a1 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-23 20:16-0400\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 2c26b0837b..3fa6985763 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-23 20:16-0400\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index cdf9243a0e..b419588427 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-23 20:16-0400\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index cf5eabe266..ac1e6d8ffd 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-23 20:16-0400\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index b6d518031b..a5eed85152 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-23 20:16-0400\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,27 +18,38 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version " +"of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,6 +85,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index cca3d48e8c..2a61530b56 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-23 20:16-0400\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -368,10 +376,6 @@ msgid "" "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index fceb7fdac5..2aba7bb3e3 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-23 20:16-0400\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 13bff53197..d998828621 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-08-23 20:16-0400\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 61826ac4db..e963a34429 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "ยังไม่ได้ระบุชนิดของหมวดหมู่" @@ -189,23 +214,23 @@ msgstr "ปีที่แล้ว" msgid "years ago" msgstr "ปี ที่ผ่านมา" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "เลือก" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "ตกลง" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "ไม่ตกลง" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "ตกลง" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 00ad518a13..b690a1127d 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "มีพื้นที่เหลือไม่เพียงพอ msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL ไม่สามารถเว้นว่างได้" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "ข้อผิดพลาด" @@ -195,28 +194,24 @@ msgid "" "big." msgstr "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "ชื่อโฟลเดอร์ไม่ถูกต้อง การใช้งาน 'แชร์' สงวนไว้สำหรับ Owncloud เท่านั้น" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "ชื่อ" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "ขนาด" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "แก้ไขแล้ว" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index c1f5a0bd74..e882a1fb16 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "ช่วยเหลือ" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "ส่วนตัว" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "ตั้งค่า" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "ผู้ใช้งาน" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "ผู้ดูแล" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "แอพพลิเคชั่นดังกล่าวยังไม่ได้เปิดใช้งาน" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index a95d52b2b8..e08c6a264a 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "มีกลุ่มดังกล่าวอยู่ในระบ msgid "Unable to add group" msgstr "ไม่สามารถเพิ่มกลุ่มได้" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "ไม่สามารถเปิดใช้งานแอปได้" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "อีเมลถูกบันทึกแล้ว" @@ -92,31 +88,43 @@ msgstr "ไม่สามารถอัพเดทแอปฯ" msgid "Update to {appversion}" msgstr "อัพเดทไปเป็นรุ่น {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "ปิดใช้งาน" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "เปิดใช้งาน" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "กรุณารอสักครู่..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "ข้อผิดพลาด" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "กำลังอัพเดทข้อมูล..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "เกิดข้อผิดพลาดในระหว่างการอัพเดทแอปฯ" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "ข้อผิดพลาด" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "อัพเดท" + +#: js/apps.js:122 msgid "Updated" msgstr "อัพเดทแล้ว" @@ -369,10 +377,6 @@ msgstr "ดูหน้าแอพพลิเคชั่นที่ apps.own msgid "-licensed by " msgstr "-ลิขสิทธิ์การใช้งานโดย " -#: templates/apps.php:43 -msgid "Update" -msgstr "อัพเดท" - #: templates/help.php:4 msgid "User Documentation" msgstr "เอกสารคู่มือการใช้งานสำหรับผู้ใช้งาน" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 2605b398b3..f23d51c91e 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s sizinle »%s« paylaşımında bulundu" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Kategori türü girilmedi." @@ -195,23 +220,23 @@ msgstr "geçen yıl" msgid "years ago" msgstr "yıl önce" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "seç" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "Seçici şablon dosya yüklemesinde hata" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Evet" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Hayır" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Tamam" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 28cd5fa42a..5f272c31eb 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-23 20:15-0400\n" -"PO-Revision-Date: 2013-08-22 16:50+0000\n" -"Last-Translator: alicanbatur \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -97,21 +97,20 @@ msgstr "Yeterli disk alanı yok" msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/file-upload.js:234 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL boş olamaz." -#: js/file-upload.js:239 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "Geçersiz dizin adı. 'Shared' dizin ismi kullanımı ownCloud tarafından rezerve edilmiştir." -#: js/file-upload.js:270 js/file-upload.js:286 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Hata" @@ -199,29 +198,25 @@ msgid "" "big." msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Geçersiz dizin adı. Shared isminin kullanımı Owncloud tarafından rezerver edilmiştir." - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "İsim" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Boyut" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dizin" msgstr[1] "%n dizin" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosya" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index bcc4af7bb5..45e5b713bb 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 11:40+0000\n" +"Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,27 +19,38 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "Owncloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz." + +#: app.php:250 +msgid "No app name specified" +msgstr "Uygulama adı belirtimedli" + +#: app.php:361 msgid "Help" msgstr "Yardım" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Kişisel" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Ayarlar" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Kullanıcılar" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Yönetici" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" yükseltme başarısız oldu." @@ -75,6 +86,62 @@ msgid "" "administrator." msgstr "Dosyaları ayrı ayrı, küçük parçalar halinde indirin ya da yöneticinizden yardım isteyin. " +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "Uygulama kurulurken bir kaynak belirtilmedi" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "Uygulama kuruluyorken http'de href belirtilmedi." + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "Uygulama yerel dosyadan kuruluyorken dosya yolu belirtilmedi" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "%s arşiv tipi desteklenmiyor" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "Uygulama kuruluyorken arşiv dosyası açılamadı" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "Uygulama info.xml dosyası sağlamıyor" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "Uygulamada izin verilmeyeden kodlar olduğu için kurulamıyor." + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "Owncloud versiyonunuz ile uyumsuz olduğu için uygulama kurulamıyor." + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "Uygulama kurulamıyor. Çünkü \"non shipped\" uygulamalar için true tag içermektedir." + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "Uygulama kurulamıyor çünkü info.xml/version ile uygulama marketde belirtilen sürüm aynı değil." + +#: installer.php:160 +msgid "App directory already exists" +msgstr "App dizini zaten mevcut" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "app dizini oluşturulamıyor. Lütfen izinleri düzeltin. %s" + #: json.php:28 msgid "Application is not enabled" msgstr "Uygulama etkinleştirilmedi" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 3635611c1c..ae9145f212 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -6,13 +6,14 @@ # DeeJaVu , 2013 # ismail yenigül , 2013 # tridinebandim, 2013 +# volkangezer , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-23 20:16-0400\n" -"PO-Revision-Date: 2013-08-22 22:10+0000\n" -"Last-Translator: DeeJaVu \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 00:50+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,10 +46,6 @@ msgstr "Grup zaten mevcut" msgid "Unable to add group" msgstr "Gruba eklenemiyor" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Uygulama devreye alınamadı" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Eposta kaydedildi" @@ -95,31 +92,43 @@ msgstr "Uygulama güncellenemedi." msgid "Update to {appversion}" msgstr "{appversion} Güncelle" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Etkin değil" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Etkinleştir" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Lütfen bekleyin...." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Hata" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "Uygulama devre dışı bırakılırken hata" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "Uygulama etkinleştirilirken hata" + +#: js/apps.js:115 msgid "Updating...." msgstr "Güncelleniyor...." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Uygulama güncellenirken hata" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Hata" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Güncelleme" + +#: js/apps.js:122 msgid "Updated" msgstr "Güncellendi" @@ -372,10 +381,6 @@ msgstr "Uygulamanın sayfasına apps.owncloud.com adresinden bakın " msgid "-licensed by " msgstr "-lisanslayan " -#: templates/apps.php:43 -msgid "Update" -msgstr "Güncelleme" - #: templates/help.php:4 msgid "User Documentation" msgstr "Kullanıcı Belgelendirmesi" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 0451be577d..ab7f2d6894 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 17:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -189,23 +214,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "ھەئە" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "ياق" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "جەزملە" @@ -480,7 +505,7 @@ msgstr "قوش" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "" +msgstr "بىخەتەرلىك ئاگاھلاندۇرۇش" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 10586fef15..bedb7ab4da 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "يېتەرلىك بوشلۇق يوق" msgid "Upload cancelled." msgstr "يۈكلەشتىن ۋاز كەچتى." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ھۆججەت يۈكلەش مەشغۇلاتى ئېلىپ بېرىلىۋاتىدۇ. Leaving the page now will cancel the upload." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "خاتالىق" @@ -195,28 +194,24 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "ئاتى" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "چوڭلۇقى" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "ئۆزگەرتكەن" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 554072cebd..f9f9408227 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 17:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "ياردەم" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "شەخسىي" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "تەڭشەكلەر" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "ئىشلەتكۈچىلەر" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" @@ -190,7 +257,7 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "سىزنىڭ تور مۇلازىمېتىرىڭىز ھۆججەت قەدەمداشلاشقا يول قويىدىغان قىلىپ توغرا تەڭشەلمەپتۇ، چۈنكى WebDAV نىڭ ئېغىزى بۇزۇلغاندەك تۇرىدۇ." #: setup.php:185 #, php-format diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index d9e44036de..c1174f8073 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Abduqadir Abliz , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 17:30+0000\n" +"Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,10 +43,6 @@ msgstr "گۇرۇپپا مەۋجۇت" msgid "Unable to add group" msgstr "گۇرۇپپا قوشقىلى بولمايدۇ" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "ئەپنى قوزغىتالمىدى. " - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "تورخەت ساقلاندى" @@ -72,7 +69,7 @@ msgstr "ئىناۋەتسىز ئىلتىماس" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "باشقۇرغۇچى ئۆزىنى باشقۇرۇش گۇرۇپپىسىدىن چىقىرىۋېتەلمەيدۇ" #: ajax/togglegroups.php:30 #, php-format @@ -92,31 +89,43 @@ msgstr "ئەپنى يېڭىلىيالمايدۇ." msgid "Update to {appversion}" msgstr "{appversion} غا يېڭىلايدۇ" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "چەكلە" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "قوزغات" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "سەل كۈتۈڭ…" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "خاتالىق" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "يېڭىلاۋاتىدۇ…" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "ئەپنى يېڭىلاۋاتقاندا خاتالىق كۆرۈلدى" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "خاتالىق" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "يېڭىلا" + +#: js/apps.js:122 msgid "Updated" msgstr "يېڭىلاندى" @@ -159,23 +168,23 @@ msgstr "گۇرۇپپا قوش" #: js/users.js:436 msgid "A valid username must be provided" -msgstr "" +msgstr "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك" #: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" -msgstr "" +msgstr "ئىشلەتكۈچى قۇرۇۋاتقاندا خاتالىق كۆرۈلدى" #: js/users.js:442 msgid "A valid password must be provided" -msgstr "" +msgstr "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك" #: personal.php:40 personal.php:41 msgid "__language_name__" -msgstr "" +msgstr "ئۇيغۇرچە" #: templates/admin.php:15 msgid "Security Warning" -msgstr "" +msgstr "بىخەتەرلىك ئاگاھلاندۇرۇش" #: templates/admin.php:18 msgid "" @@ -188,13 +197,13 @@ msgstr "" #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "ئاگاھلاندۇرۇش تەڭشەك" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "سىزنىڭ تور مۇلازىمېتىرىڭىز ھۆججەت قەدەمداشلاشقا يول قويىدىغان قىلىپ توغرا تەڭشەلمەپتۇ، چۈنكى WebDAV نىڭ ئېغىزى بۇزۇلغاندەك تۇرىدۇ." #: templates/admin.php:33 #, php-format @@ -203,7 +212,7 @@ msgstr "" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "بۆلەك «ھۆججەت ئۇچۇرى» يوقالغان" #: templates/admin.php:47 msgid "" @@ -369,10 +378,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "يېڭىلا" - #: templates/help.php:4 msgid "User Documentation" msgstr "ئىشلەتكۈچى قوللانمىسى" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index ae0e108f16..effc4b2893 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Не вказано тип категорії." @@ -197,23 +222,23 @@ msgstr "минулого року" msgid "years ago" msgstr "роки тому" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Обрати" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Так" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Ні" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Ok" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index d348a772f9..7510ca1284 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -95,21 +95,20 @@ msgstr "Місця більше немає" msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL не може бути пустим." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Помилка" @@ -198,30 +197,26 @@ msgid "" "big." msgstr "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Невірне ім'я теки. Використання \"Shared\" зарезервовано Owncloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Ім'я" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Розмір" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Змінено" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index ef7e00a8e4..cb5c568e21 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Допомога" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Особисте" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Налаштування" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Користувачі" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Адмін" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Додаток не увімкнений" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 8ccc7cda79..8aaa83fd2a 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "Група вже існує" msgid "Unable to add group" msgstr "Не вдалося додати групу" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "Не вдалося активувати програму. " - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Адресу збережено" @@ -92,31 +88,43 @@ msgstr "Не вдалося оновити програму. " msgid "Update to {appversion}" msgstr "Оновити до {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Вимкнути" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Включити" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Зачекайте, будь ласка..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Помилка" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Оновлюється..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Помилка при оновленні програми" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Помилка" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Оновити" + +#: js/apps.js:122 msgid "Updated" msgstr "Оновлено" @@ -369,10 +377,6 @@ msgstr "Перегляньте сторінку програм на apps.ownclou msgid "-licensed by " msgstr "-licensed by " -#: templates/apps.php:43 -msgid "Update" -msgstr "Оновити" - #: templates/help.php:4 msgid "User Documentation" msgstr "Документація Користувача" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 54407785c0..3db491e409 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -193,23 +218,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "منتخب کریں" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "ہاں" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "نہیں" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "اوکے" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index a8832be5ec..d3669262ad 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "ایرر" @@ -196,29 +195,25 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 89c294dd06..ac5dc32488 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "مدد" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "ذاتی" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "سیٹینگز" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "یوزرز" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "ایڈمن" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index d324d54bb0..256bc2a51e 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "ایرر" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "ایرر" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -145,27 +153,27 @@ msgstr "" msgid "Groups" msgstr "" -#: js/users.js:95 templates/users.php:89 templates/users.php:124 +#: js/users.js:97 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:164 +#: js/users.js:120 templates/users.php:164 msgid "Delete" msgstr "" -#: js/users.js:269 +#: js/users.js:277 msgid "add group" msgstr "" -#: js/users.js:428 +#: js/users.js:436 msgid "A valid username must be provided" msgstr "" -#: js/users.js:429 js/users.js:435 js/users.js:450 +#: js/users.js:437 js/users.js:443 js/users.js:458 msgid "Error creating user" msgstr "" -#: js/users.js:434 +#: js/users.js:442 msgid "A valid password must be provided" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 9a6b412143..4f501bb51f 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "Kiểu hạng mục không được cung cấp." @@ -190,23 +215,23 @@ msgstr "năm trước" msgid "years ago" msgstr "năm trước" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "Chọn" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Có" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "Không" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "Đồng ý" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 2d6c28b2d5..5f7330c3bc 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -95,21 +95,20 @@ msgstr "Không đủ chỗ trống cần thiết" msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL không được để trống." -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "Lỗi" @@ -196,28 +195,24 @@ msgid "" "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "Tên" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 9d03a4a361..bce957d996 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "Giúp đỡ" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "Cá nhân" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "Cài đặt" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "Người dùng" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "Quản trị" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "Ứng dụng không được BẬT" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index fd63994687..13a831ade8 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "Nhóm đã tồn tại" msgid "Unable to add group" msgstr "Không thể thêm nhóm" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "không thể kích hoạt ứng dụng." - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Lưu email" @@ -92,31 +88,43 @@ msgstr "Không thể cập nhật ứng dụng" msgid "Update to {appversion}" msgstr "Cập nhật lên {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "Tắt" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "Bật" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "Xin hãy đợi..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "Lỗi" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "Đang cập nhật..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "Lỗi khi cập nhật ứng dụng" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "Lỗi" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "Cập nhật" + +#: js/apps.js:122 msgid "Updated" msgstr "Đã cập nhật" @@ -369,10 +377,6 @@ msgstr "Xem nhiều ứng dụng hơn tại apps.owncloud.com" msgid "-licensed by " msgstr "-Giấy phép được cấp bởi " -#: templates/apps.php:43 -msgid "Update" -msgstr "Cập nhật" - #: templates/help.php:4 msgid "User Documentation" msgstr "Tài liệu người sử dụng" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po deleted file mode 100644 index 21e175e4ff..0000000000 --- a/l10n/zh_CN.GB2312/core.po +++ /dev/null @@ -1,622 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# aivier , 2013 -# fkj , 2013 -# Martin Liu , 2013 -# hyy0591 , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ajax/share.php:97 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s 与您共享了 »%s« " - -#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 -msgid "Category type not provided." -msgstr "未选择分类类型。" - -#: ajax/vcategories/add.php:30 -msgid "No category to add?" -msgstr "没有分类添加了?" - -#: ajax/vcategories/add.php:37 -#, php-format -msgid "This category already exists: %s" -msgstr "此分类已存在:%s" - -#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 -#: ajax/vcategories/favorites.php:24 -#: ajax/vcategories/removeFromFavorites.php:26 -msgid "Object type not provided." -msgstr "未选择对象类型。" - -#: ajax/vcategories/addToFavorites.php:30 -#: ajax/vcategories/removeFromFavorites.php:30 -#, php-format -msgid "%s ID not provided." -msgstr "%s 没有提供 ID" - -#: ajax/vcategories/addToFavorites.php:35 -#, php-format -msgid "Error adding %s to favorites." -msgstr "在添加 %s 到收藏夹时发生错误。" - -#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 -msgid "No categories selected for deletion." -msgstr "没有选中要删除的分类。" - -#: ajax/vcategories/removeFromFavorites.php:35 -#, php-format -msgid "Error removing %s from favorites." -msgstr "在移除收藏夹中的 %s 时发生错误。" - -#: js/config.php:32 -msgid "Sunday" -msgstr "星期天" - -#: js/config.php:33 -msgid "Monday" -msgstr "星期一" - -#: js/config.php:34 -msgid "Tuesday" -msgstr "星期二" - -#: js/config.php:35 -msgid "Wednesday" -msgstr "星期三" - -#: js/config.php:36 -msgid "Thursday" -msgstr "星期四" - -#: js/config.php:37 -msgid "Friday" -msgstr "星期五" - -#: js/config.php:38 -msgid "Saturday" -msgstr "星期六" - -#: js/config.php:43 -msgid "January" -msgstr "一月" - -#: js/config.php:44 -msgid "February" -msgstr "二月" - -#: js/config.php:45 -msgid "March" -msgstr "三月" - -#: js/config.php:46 -msgid "April" -msgstr "四月" - -#: js/config.php:47 -msgid "May" -msgstr "五月" - -#: js/config.php:48 -msgid "June" -msgstr "六月" - -#: js/config.php:49 -msgid "July" -msgstr "七月" - -#: js/config.php:50 -msgid "August" -msgstr "八月" - -#: js/config.php:51 -msgid "September" -msgstr "九月" - -#: js/config.php:52 -msgid "October" -msgstr "十月" - -#: js/config.php:53 -msgid "November" -msgstr "十一月" - -#: js/config.php:54 -msgid "December" -msgstr "十二月" - -#: js/js.js:355 -msgid "Settings" -msgstr "设置" - -#: js/js.js:812 -msgid "seconds ago" -msgstr "秒前" - -#: js/js.js:813 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n 分钟以前" - -#: js/js.js:814 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n 小时以前" - -#: js/js.js:815 -msgid "today" -msgstr "今天" - -#: js/js.js:816 -msgid "yesterday" -msgstr "昨天" - -#: js/js.js:817 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n 天以前" - -#: js/js.js:818 -msgid "last month" -msgstr "上个月" - -#: js/js.js:819 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n 个月以前" - -#: js/js.js:820 -msgid "months ago" -msgstr "月前" - -#: js/js.js:821 -msgid "last year" -msgstr "去年" - -#: js/js.js:822 -msgid "years ago" -msgstr "年前" - -#: js/oc-dialogs.js:117 -msgid "Choose" -msgstr "选择" - -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 -msgid "Error loading file picker template" -msgstr "加载文件选取模板出错" - -#: js/oc-dialogs.js:160 -msgid "Yes" -msgstr "是" - -#: js/oc-dialogs.js:168 -msgid "No" -msgstr "否" - -#: js/oc-dialogs.js:181 -msgid "Ok" -msgstr "好的" - -#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 -#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 -msgid "The object type is not specified." -msgstr "未指定对象类型。" - -#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 -#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 -#: js/share.js:643 js/share.js:655 -msgid "Error" -msgstr "出错" - -#: js/oc-vcategories.js:179 -msgid "The app name is not specified." -msgstr "未指定应用名称。" - -#: js/oc-vcategories.js:194 -msgid "The required file {file} is not installed!" -msgstr "未安装所需要的文件 {file} !" - -#: js/share.js:30 js/share.js:45 js/share.js:87 -msgid "Shared" -msgstr "已分享" - -#: js/share.js:90 -msgid "Share" -msgstr "分享" - -#: js/share.js:131 js/share.js:683 -msgid "Error while sharing" -msgstr "分享出错" - -#: js/share.js:142 -msgid "Error while unsharing" -msgstr "取消分享出错" - -#: js/share.js:149 -msgid "Error while changing permissions" -msgstr "变更权限出错" - -#: js/share.js:158 -msgid "Shared with you and the group {group} by {owner}" -msgstr "由 {owner} 与您和 {group} 群组分享" - -#: js/share.js:160 -msgid "Shared with you by {owner}" -msgstr "由 {owner} 与您分享" - -#: js/share.js:183 -msgid "Share with" -msgstr "分享" - -#: js/share.js:188 -msgid "Share with link" -msgstr "分享链接" - -#: js/share.js:191 -msgid "Password protect" -msgstr "密码保护" - -#: js/share.js:193 templates/installation.php:57 templates/login.php:26 -msgid "Password" -msgstr "密码" - -#: js/share.js:198 -msgid "Allow Public Upload" -msgstr "允许公众上传" - -#: js/share.js:202 -msgid "Email link to person" -msgstr "面向个人的电子邮件链接" - -#: js/share.js:203 -msgid "Send" -msgstr "发送" - -#: js/share.js:208 -msgid "Set expiration date" -msgstr "设置失效日期" - -#: js/share.js:209 -msgid "Expiration date" -msgstr "失效日期" - -#: js/share.js:241 -msgid "Share via email:" -msgstr "通过电子邮件分享:" - -#: js/share.js:243 -msgid "No people found" -msgstr "查无此人" - -#: js/share.js:281 -msgid "Resharing is not allowed" -msgstr "不允许重复分享" - -#: js/share.js:317 -msgid "Shared in {item} with {user}" -msgstr "已经与 {user} 在 {item} 中分享" - -#: js/share.js:338 -msgid "Unshare" -msgstr "取消分享" - -#: js/share.js:350 -msgid "can edit" -msgstr "可编辑" - -#: js/share.js:352 -msgid "access control" -msgstr "访问控制" - -#: js/share.js:355 -msgid "create" -msgstr "创建" - -#: js/share.js:358 -msgid "update" -msgstr "更新" - -#: js/share.js:361 -msgid "delete" -msgstr "删除" - -#: js/share.js:364 -msgid "share" -msgstr "分享" - -#: js/share.js:398 js/share.js:630 -msgid "Password protected" -msgstr "密码保护" - -#: js/share.js:643 -msgid "Error unsetting expiration date" -msgstr "取消设置失效日期出错" - -#: js/share.js:655 -msgid "Error setting expiration date" -msgstr "设置失效日期出错" - -#: js/share.js:670 -msgid "Sending ..." -msgstr "发送中……" - -#: js/share.js:681 -msgid "Email sent" -msgstr "电子邮件已发送" - -#: js/update.js:17 -msgid "" -"The update was unsuccessful. Please report this issue to the ownCloud " -"community." -msgstr "升级失败。请向ownCloud社区报告此问题。" - -#: js/update.js:21 -msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "升级成功。现在为您跳转到ownCloud。" - -#: lostpassword/controller.php:61 -#, php-format -msgid "%s password reset" -msgstr "%s 密码重置" - -#: lostpassword/templates/email.php:2 -msgid "Use the following link to reset your password: {link}" -msgstr "使用下面的链接来重置你的密码:{link}" - -#: lostpassword/templates/lostpassword.php:4 -msgid "" -"The link to reset your password has been sent to your email.
If you do " -"not receive it within a reasonable amount of time, check your spam/junk " -"folders.
If it is not there ask your local administrator ." -msgstr "重置密码的连接已经通过邮件到您的邮箱。
如果你没有收到邮件,可能是由于要再等一下,或者检查一下您的垃圾邮件夹。
如果还是没有收到,请联系您的系统管理员。" - -#: lostpassword/templates/lostpassword.php:12 -msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "请求失败!
你确定你的邮件地址/用户名是正确的?" - -#: lostpassword/templates/lostpassword.php:15 -msgid "You will receive a link to reset your password via Email." -msgstr "你将会收到一个重置密码的链接" - -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 -#: templates/login.php:19 -msgid "Username" -msgstr "用户名" - -#: lostpassword/templates/lostpassword.php:22 -msgid "" -"Your files are encrypted. If you haven't enabled the recovery key, there " -"will be no way to get your data back after your password is reset. If you " -"are not sure what to do, please contact your administrator before you " -"continue. Do you really want to continue?" -msgstr "您的文件是加密的。如果您还没有启用恢复密钥,在重置了密码后,您的数据讲无法恢复回来。如果您不确定是否这么做,请联系您的管理员在继续这个操作。你却是想继续么?" - -#: lostpassword/templates/lostpassword.php:24 -msgid "Yes, I really want to reset my password now" -msgstr "是的,我想现在重置密码。" - -#: lostpassword/templates/lostpassword.php:27 -msgid "Request reset" -msgstr "要求重置" - -#: lostpassword/templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "你的密码已经被重置了" - -#: lostpassword/templates/resetpassword.php:5 -msgid "To login page" -msgstr "转至登陆页面" - -#: lostpassword/templates/resetpassword.php:8 -msgid "New password" -msgstr "新密码" - -#: lostpassword/templates/resetpassword.php:11 -msgid "Reset password" -msgstr "重置密码" - -#: strings.php:5 -msgid "Personal" -msgstr "私人" - -#: strings.php:6 -msgid "Users" -msgstr "用户" - -#: strings.php:7 -msgid "Apps" -msgstr "程序" - -#: strings.php:8 -msgid "Admin" -msgstr "管理员" - -#: strings.php:9 -msgid "Help" -msgstr "帮助" - -#: templates/403.php:12 -msgid "Access forbidden" -msgstr "禁止访问" - -#: templates/404.php:15 -msgid "Cloud not found" -msgstr "云 没有被找到" - -#: templates/altmail.php:2 -#, php-format -msgid "" -"Hey there,\n" -"\n" -"just letting you know that %s shared %s with you.\n" -"View it: %s\n" -"\n" -"Cheers!" -msgstr "你好!⏎\n⏎\n温馨提示: %s 与您共享了 %s 。⏎\n查看: %s⏎\n⏎\n祝顺利!" - -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "编辑分类" - -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "添加" - -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 -msgid "Security Warning" -msgstr "安全警告" - -#: templates/installation.php:25 -msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "您的PHP版本是会受到NULL字节漏洞攻击的(CVE-2006-7243)" - -#: templates/installation.php:26 -#, php-format -msgid "Please update your PHP installation to use %s securely." -msgstr "请安全地升级您的PHP版本到 %s 。" - -#: templates/installation.php:32 -msgid "" -"No secure random number generator is available, please enable the PHP " -"OpenSSL extension." -msgstr "没有安全随机码生成器,请启用 PHP OpenSSL 扩展。" - -#: templates/installation.php:33 -msgid "" -"Without a secure random number generator an attacker may be able to predict " -"password reset tokens and take over your account." -msgstr "没有安全随机码生成器,黑客可以预测密码重置令牌并接管你的账户。" - -#: templates/installation.php:39 -msgid "" -"Your data directory and files are probably accessible from the internet " -"because the .htaccess file does not work." -msgstr "因为.htaccess文件无效,您的数据文件夹及文件可能可以在互联网上访问。" - -#: templates/installation.php:41 -#, php-format -msgid "" -"For information how to properly configure your server, please see the documentation." -msgstr "有关如何正确地配置您的服务器,请查看 文档。" - -#: templates/installation.php:47 -msgid "Create an admin account" -msgstr "建立一个 管理帐户" - -#: templates/installation.php:65 -msgid "Advanced" -msgstr "进阶" - -#: templates/installation.php:67 -msgid "Data folder" -msgstr "数据存放文件夹" - -#: templates/installation.php:77 -msgid "Configure the database" -msgstr "配置数据库" - -#: templates/installation.php:82 templates/installation.php:94 -#: templates/installation.php:105 templates/installation.php:116 -#: templates/installation.php:128 -msgid "will be used" -msgstr "将会使用" - -#: templates/installation.php:140 -msgid "Database user" -msgstr "数据库用户" - -#: templates/installation.php:147 -msgid "Database password" -msgstr "数据库密码" - -#: templates/installation.php:152 -msgid "Database name" -msgstr "数据库用户名" - -#: templates/installation.php:160 -msgid "Database tablespace" -msgstr "数据库表格空间" - -#: templates/installation.php:167 -msgid "Database host" -msgstr "数据库主机" - -#: templates/installation.php:175 -msgid "Finish setup" -msgstr "完成安装" - -#: templates/layout.user.php:41 -#, php-format -msgid "%s is available. Get more information on how to update." -msgstr "%s 是可用的。获取更多关于升级的信息。" - -#: templates/layout.user.php:66 -msgid "Log out" -msgstr "注销" - -#: templates/layout.user.php:100 -msgid "More apps" -msgstr "更多应用" - -#: templates/login.php:9 -msgid "Automatic logon rejected!" -msgstr "自动登录被拒绝!" - -#: templates/login.php:10 -msgid "" -"If you did not change your password recently, your account may be " -"compromised!" -msgstr "如果您最近没有修改您的密码,那您的帐号可能被攻击了!" - -#: templates/login.php:12 -msgid "Please change your password to secure your account again." -msgstr "请修改您的密码以保护账户。" - -#: templates/login.php:34 -msgid "Lost your password?" -msgstr "忘记密码?" - -#: templates/login.php:39 -msgid "remember" -msgstr "记住登录" - -#: templates/login.php:41 -msgid "Log in" -msgstr "登陆" - -#: templates/login.php:47 -msgid "Alternative Logins" -msgstr "备选登录" - -#: templates/mail.php:15 -#, php-format -msgid "" -"Hey there,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" -msgstr "你好!

温馨提示: %s 与您共享了 %s 。

\n查看: %s

祝顺利!" - -#: templates/update.php:3 -#, php-format -msgid "Updating ownCloud to version %s, this may take a while." -msgstr "ownCloud正在升级至 %s 版,这可能需要一点时间。" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po deleted file mode 100644 index b7c7892b60..0000000000 --- a/l10n/zh_CN.GB2312/files.po +++ /dev/null @@ -1,347 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# aivier , 2013 -# hlx98007 , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ajax/move.php:17 -#, php-format -msgid "Could not move %s - File with this name already exists" -msgstr "无法移动 %s - 存在同名文件" - -#: ajax/move.php:27 ajax/move.php:30 -#, php-format -msgid "Could not move %s" -msgstr "无法移动 %s" - -#: ajax/upload.php:16 ajax/upload.php:45 -msgid "Unable to set upload directory." -msgstr "无法设置上传文件夹" - -#: ajax/upload.php:22 -msgid "Invalid Token" -msgstr "非法Token" - -#: ajax/upload.php:59 -msgid "No file was uploaded. Unknown error" -msgstr "没有上传文件。未知错误" - -#: ajax/upload.php:66 -msgid "There is no error, the file uploaded with success" -msgstr "文件上传成功" - -#: ajax/upload.php:67 -msgid "" -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "上传的文件超过了php.ini指定的upload_max_filesize" - -#: ajax/upload.php:69 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "上传的文件超过了 HTML 表格中指定的 MAX_FILE_SIZE 选项" - -#: ajax/upload.php:70 -msgid "The uploaded file was only partially uploaded" -msgstr "文件部分上传" - -#: ajax/upload.php:71 -msgid "No file was uploaded" -msgstr "没有上传文件" - -#: ajax/upload.php:72 -msgid "Missing a temporary folder" -msgstr "缺失临时文件夹" - -#: ajax/upload.php:73 -msgid "Failed to write to disk" -msgstr "写磁盘失败" - -#: ajax/upload.php:91 -msgid "Not enough storage available" -msgstr "容量不足" - -#: ajax/upload.php:123 -msgid "Invalid directory." -msgstr "无效文件夹" - -#: appinfo/app.php:12 -msgid "Files" -msgstr "文件" - -#: js/file-upload.js:11 -msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "不能上传您的文件,由于它是文件夹或者为空文件" - -#: js/file-upload.js:24 -msgid "Not enough space available" -msgstr "容量不足" - -#: js/file-upload.js:64 -msgid "Upload cancelled." -msgstr "上传取消了" - -#: js/file-upload.js:167 js/files.js:280 -msgid "" -"File upload is in progress. Leaving the page now will cancel the upload." -msgstr "文件正在上传。关闭页面会取消上传。" - -#: js/file-upload.js:233 js/files.js:353 -msgid "URL cannot be empty." -msgstr "网址不能为空。" - -#: js/file-upload.js:238 lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "无效文件夹名。“Shared”已经被系统保留。" - -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 -msgid "Error" -msgstr "出错" - -#: js/fileactions.js:116 -msgid "Share" -msgstr "分享" - -#: js/fileactions.js:126 -msgid "Delete permanently" -msgstr "永久删除" - -#: js/fileactions.js:192 -msgid "Rename" -msgstr "重命名" - -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 -msgid "Pending" -msgstr "等待中" - -#: js/filelist.js:303 js/filelist.js:305 -msgid "{new_name} already exists" -msgstr "{new_name} 已存在" - -#: js/filelist.js:303 js/filelist.js:305 -msgid "replace" -msgstr "替换" - -#: js/filelist.js:303 -msgid "suggest name" -msgstr "推荐名称" - -#: js/filelist.js:303 js/filelist.js:305 -msgid "cancel" -msgstr "取消" - -#: js/filelist.js:350 -msgid "replaced {new_name} with {old_name}" -msgstr "已用 {old_name} 替换 {new_name}" - -#: js/filelist.js:350 -msgid "undo" -msgstr "撤销" - -#: js/filelist.js:453 -msgid "Uploading %n file" -msgid_plural "Uploading %n files" -msgstr[0] "正在上传 %n 个文件" - -#: js/filelist.js:518 -msgid "files uploading" -msgstr "个文件正在上传" - -#: js/files.js:52 -msgid "'.' is an invalid file name." -msgstr "'.' 文件名不正确" - -#: js/files.js:56 -msgid "File name cannot be empty." -msgstr "文件名不能为空" - -#: js/files.js:64 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "文件名内不能包含以下符号:\\ / < > : \" | ?和 *" - -#: js/files.js:78 -msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "容量已满,不能再同步/上传文件了!" - -#: js/files.js:82 -msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "你的空间快用满了 ({usedSpacePercent}%)" - -#: js/files.js:94 -msgid "" -"Encryption was disabled but your files are still encrypted. Please go to " -"your personal settings to decrypt your files." -msgstr "" - -#: js/files.js:245 -msgid "" -"Your download is being prepared. This might take some time if the files are " -"big." -msgstr "正在下载,可能会花点时间,跟文件大小有关" - -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "不正确文件夹名。Shared是保留名,不能使用。" - -#: js/files.js:760 templates/index.php:67 -msgid "Name" -msgstr "名称" - -#: js/files.js:761 templates/index.php:78 -msgid "Size" -msgstr "大小" - -#: js/files.js:762 templates/index.php:80 -msgid "Modified" -msgstr "修改日期" - -#: js/files.js:778 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n 个文件夹" - -#: js/files.js:784 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n 个文件" - -#: lib/app.php:73 -#, php-format -msgid "%s could not be renamed" -msgstr "不能重命名 %s" - -#: lib/helper.php:11 templates/index.php:18 -msgid "Upload" -msgstr "上传" - -#: templates/admin.php:5 -msgid "File handling" -msgstr "文件处理中" - -#: templates/admin.php:7 -msgid "Maximum upload size" -msgstr "最大上传大小" - -#: templates/admin.php:10 -msgid "max. possible: " -msgstr "最大可能" - -#: templates/admin.php:15 -msgid "Needed for multi-file and folder downloads." -msgstr "需要多文件和文件夹下载." - -#: templates/admin.php:17 -msgid "Enable ZIP-download" -msgstr "支持ZIP下载" - -#: templates/admin.php:20 -msgid "0 is unlimited" -msgstr "0是无限的" - -#: templates/admin.php:22 -msgid "Maximum input size for ZIP files" -msgstr "最大的ZIP文件输入大小" - -#: templates/admin.php:26 -msgid "Save" -msgstr "保存" - -#: templates/index.php:7 -msgid "New" -msgstr "新建" - -#: templates/index.php:10 -msgid "Text file" -msgstr "文本文档" - -#: templates/index.php:12 -msgid "Folder" -msgstr "文件夹" - -#: templates/index.php:14 -msgid "From link" -msgstr "来自链接" - -#: templates/index.php:41 -msgid "Deleted files" -msgstr "已删除的文件" - -#: templates/index.php:46 -msgid "Cancel upload" -msgstr "取消上传" - -#: templates/index.php:52 -msgid "You don’t have write permissions here." -msgstr "您没有写入权限。" - -#: templates/index.php:59 -msgid "Nothing in here. Upload something!" -msgstr "这里没有东西.上传点什么!" - -#: templates/index.php:73 -msgid "Download" -msgstr "下载" - -#: templates/index.php:85 templates/index.php:86 -msgid "Unshare" -msgstr "取消分享" - -#: templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "删除" - -#: templates/index.php:105 -msgid "Upload too large" -msgstr "上传过大" - -#: templates/index.php:107 -msgid "" -"The files you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "你正在试图上传的文件超过了此服务器支持的最大的文件大小." - -#: templates/index.php:112 -msgid "Files are being scanned, please wait." -msgstr "正在扫描文件,请稍候." - -#: templates/index.php:115 -msgid "Current scanning" -msgstr "正在扫描" - -#: templates/part.list.php:74 -msgid "directory" -msgstr "文件夹" - -#: templates/part.list.php:76 -msgid "directories" -msgstr "文件夹" - -#: templates/part.list.php:85 -msgid "file" -msgstr "文件" - -#: templates/part.list.php:87 -msgid "files" -msgstr "文件" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "升级系统缓存..." diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po deleted file mode 100644 index 5d2f51942f..0000000000 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ /dev/null @@ -1,176 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:10-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ajax/adminrecovery.php:29 -msgid "Recovery key successfully enabled" -msgstr "" - -#: ajax/adminrecovery.php:34 -msgid "" -"Could not enable recovery key. Please check your recovery key password!" -msgstr "" - -#: ajax/adminrecovery.php:48 -msgid "Recovery key successfully disabled" -msgstr "" - -#: ajax/adminrecovery.php:53 -msgid "" -"Could not disable recovery key. Please check your recovery key password!" -msgstr "" - -#: ajax/changeRecoveryPassword.php:49 -msgid "Password successfully changed." -msgstr "" - -#: ajax/changeRecoveryPassword.php:51 -msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" - -#: ajax/updatePrivateKeyPassword.php:51 -msgid "Private key password successfully updated." -msgstr "" - -#: ajax/updatePrivateKeyPassword.php:53 -msgid "" -"Could not update the private key password. Maybe the old password was not " -"correct." -msgstr "" - -#: files/error.php:7 -msgid "" -"Your private key is not valid! Likely your password was changed outside the " -"ownCloud system (e.g. your corporate directory). You can update your private" -" key password in your personal settings to recover access to your encrypted " -"files." -msgstr "" - -#: hooks/hooks.php:41 -msgid "Missing requirements." -msgstr "" - -#: hooks/hooks.php:42 -msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " -"together with the PHP extension is enabled and configured properly. For now," -" the encryption app has been disabled." -msgstr "" - -#: hooks/hooks.php:249 -msgid "Following users are not set up for encryption:" -msgstr "" - -#: js/settings-admin.js:11 -msgid "Saving..." -msgstr "保存中..." - -#: templates/invalid_private_key.php:5 -msgid "" -"Your private key is not valid! Maybe the your password was changed from " -"outside." -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "You can unlock your private key in your " -msgstr "" - -#: templates/invalid_private_key.php:7 -msgid "personal settings" -msgstr "" - -#: templates/settings-admin.php:5 templates/settings-personal.php:4 -msgid "Encryption" -msgstr "加密" - -#: templates/settings-admin.php:10 -msgid "" -"Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" - -#: templates/settings-admin.php:14 -msgid "Recovery key password" -msgstr "" - -#: templates/settings-admin.php:21 templates/settings-personal.php:54 -msgid "Enabled" -msgstr "" - -#: templates/settings-admin.php:29 templates/settings-personal.php:62 -msgid "Disabled" -msgstr "" - -#: templates/settings-admin.php:34 -msgid "Change recovery key password:" -msgstr "" - -#: templates/settings-admin.php:41 -msgid "Old Recovery key password" -msgstr "" - -#: templates/settings-admin.php:48 -msgid "New Recovery key password" -msgstr "" - -#: templates/settings-admin.php:53 -msgid "Change Password" -msgstr "" - -#: templates/settings-personal.php:11 -msgid "Your private key password no longer match your log-in password:" -msgstr "" - -#: templates/settings-personal.php:14 -msgid "Set your old private key password to your current log-in password." -msgstr "" - -#: templates/settings-personal.php:16 -msgid "" -" If you don't remember your old password you can ask your administrator to " -"recover your files." -msgstr "" - -#: templates/settings-personal.php:24 -msgid "Old log-in password" -msgstr "" - -#: templates/settings-personal.php:30 -msgid "Current log-in password" -msgstr "" - -#: templates/settings-personal.php:35 -msgid "Update Private Key Password" -msgstr "" - -#: templates/settings-personal.php:45 -msgid "Enable password recovery:" -msgstr "" - -#: templates/settings-personal.php:47 -msgid "" -"Enabling this option will allow you to reobtain access to your encrypted " -"files in case of password loss" -msgstr "" - -#: templates/settings-personal.php:63 -msgid "File recovery settings updated" -msgstr "" - -#: templates/settings-personal.php:64 -msgid "Could not update file recovery" -msgstr "" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po deleted file mode 100644 index b9c2d6f3ae..0000000000 --- a/l10n/zh_CN.GB2312/files_external.po +++ /dev/null @@ -1,124 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# hyy0591 , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: hyy0591 \n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 -msgid "Access granted" -msgstr "已授予权限" - -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 -msgid "Error configuring Dropbox storage" -msgstr "配置 Dropbox 存储出错" - -#: js/dropbox.js:65 js/google.js:66 -msgid "Grant access" -msgstr "授予权限" - -#: js/dropbox.js:101 -msgid "Please provide a valid Dropbox app key and secret." -msgstr "请提供一个有效的 Dropbox app key 和 secret。" - -#: js/google.js:36 js/google.js:93 -msgid "Error configuring Google Drive storage" -msgstr "配置 Google Drive 存储失败" - -#: lib/config.php:447 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "注意:“SMB客户端”未安装。CIFS/SMB分享不可用。请向您的系统管理员请求安装该客户端。" - -#: lib/config.php:450 -msgid "" -"Warning: 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." -msgstr "注意:PHP的FTP支持尚未启用或未安装。FTP分享不可用。请向您的系统管理员请求安装。" - -#: lib/config.php:453 -msgid "" -"Warning: 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." -msgstr "警告: PHP 的 Curl 支持没有安装或打开。挂载 ownCloud、WebDAV 或 Google Drive 的功能将不可用。请询问您的系统管理员去安装它。" - -#: templates/settings.php:3 -msgid "External Storage" -msgstr "外部存储" - -#: templates/settings.php:9 templates/settings.php:28 -msgid "Folder name" -msgstr "文件夹名" - -#: templates/settings.php:10 -msgid "External storage" -msgstr "外部存储" - -#: templates/settings.php:11 -msgid "Configuration" -msgstr "配置" - -#: templates/settings.php:12 -msgid "Options" -msgstr "选项" - -#: templates/settings.php:13 -msgid "Applicable" -msgstr "可应用" - -#: templates/settings.php:33 -msgid "Add storage" -msgstr "扩容" - -#: templates/settings.php:90 -msgid "None set" -msgstr "未设置" - -#: templates/settings.php:91 -msgid "All Users" -msgstr "所有用户" - -#: templates/settings.php:92 -msgid "Groups" -msgstr "群组" - -#: templates/settings.php:100 -msgid "Users" -msgstr "用户" - -#: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 -msgid "Delete" -msgstr "删除" - -#: templates/settings.php:129 -msgid "Enable User External Storage" -msgstr "启用用户外部存储" - -#: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "允许用户挂载他们的外部存储" - -#: templates/settings.php:141 -msgid "SSL root certificates" -msgstr "SSL 根证书" - -#: templates/settings.php:159 -msgid "Import Root Certificate" -msgstr "导入根证书" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po deleted file mode 100644 index 72a289d020..0000000000 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ /dev/null @@ -1,81 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# aivier , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 18:23+0000\n" -"Last-Translator: aivier \n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: templates/authenticate.php:4 -msgid "The password is wrong. Try again." -msgstr "密码错误。请重试。" - -#: templates/authenticate.php:7 -msgid "Password" -msgstr "密码" - -#: templates/authenticate.php:9 -msgid "Submit" -msgstr "提交" - -#: templates/part.404.php:3 -msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "对不起,这个链接看起来是错误的。" - -#: templates/part.404.php:4 -msgid "Reasons might be:" -msgstr "原因可能是:" - -#: templates/part.404.php:6 -msgid "the item was removed" -msgstr "项目已经移除" - -#: templates/part.404.php:7 -msgid "the link expired" -msgstr "链接已过期" - -#: templates/part.404.php:8 -msgid "sharing is disabled" -msgstr "分享已经被禁用" - -#: templates/part.404.php:10 -msgid "For more info, please ask the person who sent this link." -msgstr "欲了解更多信息,请联系将此链接发送给你的人。" - -#: templates/public.php:15 -#, php-format -msgid "%s shared the folder %s with you" -msgstr "%s 与您分享了文件夹 %s" - -#: templates/public.php:18 -#, php-format -msgid "%s shared the file %s with you" -msgstr "%s 与您分享了文件 %s" - -#: templates/public.php:26 templates/public.php:88 -msgid "Download" -msgstr "下载" - -#: templates/public.php:43 templates/public.php:46 -msgid "Upload" -msgstr "上传" - -#: templates/public.php:56 -msgid "Cancel upload" -msgstr "取消上传" - -#: templates/public.php:85 -msgid "No preview available for" -msgstr "没有预览可用于" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po deleted file mode 100644 index cef04c5439..0000000000 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ /dev/null @@ -1,82 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 10:40+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ajax/delete.php:42 -#, php-format -msgid "Couldn't delete %s permanently" -msgstr "" - -#: ajax/undelete.php:42 -#, php-format -msgid "Couldn't restore %s" -msgstr "" - -#: js/trash.js:7 js/trash.js:100 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 -msgid "Error" -msgstr "出错" - -#: js/trash.js:36 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:127 -msgid "Delete permanently" -msgstr "永久删除" - -#: js/trash.js:182 templates/index.php:17 -msgid "Name" -msgstr "名称" - -#: js/trash.js:183 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:191 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n 个文件夹" - -#: js/trash.js:197 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n 个文件" - -#: lib/trash.php:819 lib/trash.php:821 -msgid "restored" -msgstr "" - -#: templates/index.php:9 -msgid "Nothing in here. Your trash bin is empty!" -msgstr "" - -#: templates/index.php:20 templates/index.php:22 -msgid "Restore" -msgstr "恢复" - -#: templates/index.php:30 templates/index.php:31 -msgid "Delete" -msgstr "删除" - -#: templates/part.breadcrumb.php:9 -msgid "Deleted Files" -msgstr "删除的文件" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po deleted file mode 100644 index faa83e8fc6..0000000000 --- a/l10n/zh_CN.GB2312/files_versions.po +++ /dev/null @@ -1,44 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# aivier , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 11:00+0000\n" -"Last-Translator: aivier \n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ajax/rollbackVersion.php:13 -#, php-format -msgid "Could not revert: %s" -msgstr "无法恢复:%s" - -#: js/versions.js:7 -msgid "Versions" -msgstr "版本" - -#: js/versions.js:53 -msgid "Failed to revert {file} to revision {timestamp}." -msgstr "无法恢复文件 {file} 到 版本 {timestamp}。" - -#: js/versions.js:79 -msgid "More versions..." -msgstr "更多版本" - -#: js/versions.js:116 -msgid "No other versions available" -msgstr "没有其他可用版本" - -#: js/versions.js:149 -msgid "Restore" -msgstr "恢复" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po deleted file mode 100644 index d4a3f5836f..0000000000 --- a/l10n/zh_CN.GB2312/lib.po +++ /dev/null @@ -1,251 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: app.php:360 -msgid "Help" -msgstr "帮助" - -#: app.php:373 -msgid "Personal" -msgstr "私人" - -#: app.php:384 -msgid "Settings" -msgstr "设置" - -#: app.php:396 -msgid "Users" -msgstr "用户" - -#: app.php:409 -msgid "Admin" -msgstr "管理员" - -#: app.php:836 -#, php-format -msgid "Failed to upgrade \"%s\"." -msgstr "" - -#: defaults.php:35 -msgid "web services under your control" -msgstr "您控制的网络服务" - -#: files.php:66 files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - -#: files.php:226 -msgid "ZIP download is turned off." -msgstr "ZIP 下载已关闭" - -#: files.php:227 -msgid "Files need to be downloaded one by one." -msgstr "需要逐个下载文件。" - -#: files.php:228 files.php:256 -msgid "Back to Files" -msgstr "返回到文件" - -#: files.php:253 -msgid "Selected files too large to generate zip file." -msgstr "选择的文件太大而不能生成 zip 文件。" - -#: files.php:254 -msgid "" -"Download the files in smaller chunks, seperately or kindly ask your " -"administrator." -msgstr "" - -#: json.php:28 -msgid "Application is not enabled" -msgstr "应用未启用" - -#: json.php:39 json.php:62 json.php:73 -msgid "Authentication error" -msgstr "验证错误" - -#: json.php:51 -msgid "Token expired. Please reload page." -msgstr "会话过期。请刷新页面。" - -#: search/provider/file.php:17 search/provider/file.php:35 -msgid "Files" -msgstr "文件" - -#: search/provider/file.php:26 search/provider/file.php:33 -msgid "Text" -msgstr "文本" - -#: search/provider/file.php:29 -msgid "Images" -msgstr "图片" - -#: setup/abstractdatabase.php:22 -#, php-format -msgid "%s enter the database username." -msgstr "" - -#: setup/abstractdatabase.php:25 -#, php-format -msgid "%s enter the database name." -msgstr "" - -#: setup/abstractdatabase.php:28 -#, php-format -msgid "%s you may not use dots in the database name" -msgstr "" - -#: setup/mssql.php:20 -#, php-format -msgid "MS SQL username and/or password not valid: %s" -msgstr "" - -#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 -msgid "You need to enter either an existing account or the administrator." -msgstr "" - -#: setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "" - -#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 -#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 -#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - -#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 -#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 -#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 -#, php-format -msgid "Offending command was: \"%s\"" -msgstr "" - -#: setup/mysql.php:85 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" - -#: setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "" - -#: setup/mysql.php:91 -#, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "" - -#: setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "" - -#: setup/oci.php:34 -msgid "Oracle connection could not be established" -msgstr "" - -#: setup/oci.php:41 setup/oci.php:113 -msgid "Oracle username and/or password not valid" -msgstr "" - -#: setup/oci.php:173 setup/oci.php:205 -#, php-format -msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" - -#: setup/postgresql.php:23 setup/postgresql.php:69 -msgid "PostgreSQL username and/or password not valid" -msgstr "" - -#: setup.php:28 -msgid "Set an admin username." -msgstr "" - -#: setup.php:31 -msgid "Set an admin password." -msgstr "" - -#: setup.php:184 -msgid "" -"Your web server is not yet properly setup to allow files synchronization " -"because the WebDAV interface seems to be broken." -msgstr "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。" - -#: setup.php:185 -#, php-format -msgid "Please double check the installation guides." -msgstr "请双击安装向导。" - -#: template/functions.php:80 -msgid "seconds ago" -msgstr "秒前" - -#: template/functions.php:81 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n 分钟以前" - -#: template/functions.php:82 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n 小时以前" - -#: template/functions.php:83 -msgid "today" -msgstr "今天" - -#: template/functions.php:84 -msgid "yesterday" -msgstr "昨天" - -#: template/functions.php:85 -msgid "%n day go" -msgid_plural "%n days ago" -msgstr[0] "%n 天以前" - -#: template/functions.php:86 -msgid "last month" -msgstr "上个月" - -#: template/functions.php:87 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n 个月以前" - -#: template/functions.php:88 -msgid "last year" -msgstr "去年" - -#: template/functions.php:89 -msgid "years ago" -msgstr "年前" - -#: template.php:297 -msgid "Caused by:" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po deleted file mode 100644 index 1779b0427d..0000000000 --- a/l10n/zh_CN.GB2312/settings.po +++ /dev/null @@ -1,539 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# hlx98007 , 2013 -# Martin Liu , 2013 -# hyy0591 , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ajax/apps/ocs.php:20 -msgid "Unable to load list from App Store" -msgstr "不能从App Store 中加载列表" - -#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 -msgid "Authentication error" -msgstr "验证错误" - -#: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "您的显示名称已修改" - -#: ajax/changedisplayname.php:34 -msgid "Unable to change display name" -msgstr "无法更改显示名称" - -#: ajax/creategroup.php:10 -msgid "Group already exists" -msgstr "群组已存在" - -#: ajax/creategroup.php:19 -msgid "Unable to add group" -msgstr "未能添加群组" - -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "未能启用应用" - -#: ajax/lostpassword.php:12 -msgid "Email saved" -msgstr "Email 保存了" - -#: ajax/lostpassword.php:14 -msgid "Invalid email" -msgstr "非法Email" - -#: ajax/removegroup.php:13 -msgid "Unable to delete group" -msgstr "未能删除群组" - -#: ajax/removeuser.php:25 -msgid "Unable to delete user" -msgstr "未能删除用户" - -#: ajax/setlanguage.php:15 -msgid "Language changed" -msgstr "语言改变了" - -#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "非法请求" - -#: ajax/togglegroups.php:12 -msgid "Admins can't remove themself from the admin group" -msgstr "管理员无法将自己从管理组中移除" - -#: ajax/togglegroups.php:30 -#, php-format -msgid "Unable to add user to group %s" -msgstr "未能添加用户到群组 %s" - -#: ajax/togglegroups.php:36 -#, php-format -msgid "Unable to remove user from group %s" -msgstr "未能将用户从群组 %s 移除" - -#: ajax/updateapp.php:14 -msgid "Couldn't update app." -msgstr "应用无法升级。" - -#: js/apps.js:35 -msgid "Update to {appversion}" -msgstr "升级至{appversion}" - -#: js/apps.js:41 js/apps.js:81 -msgid "Disable" -msgstr "禁用" - -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 -msgid "Enable" -msgstr "启用" - -#: js/apps.js:60 -msgid "Please wait...." -msgstr "请稍候……" - -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "出错" - -#: js/apps.js:95 -msgid "Updating...." -msgstr "升级中……" - -#: js/apps.js:98 -msgid "Error while updating app" -msgstr "应用升级时出现错误" - -#: js/apps.js:101 -msgid "Updated" -msgstr "已升级" - -#: js/personal.js:150 -msgid "Decrypting files... Please wait, this can take some time." -msgstr "" - -#: js/personal.js:172 -msgid "Saving..." -msgstr "保存中..." - -#: js/users.js:47 -msgid "deleted" -msgstr "删除" - -#: js/users.js:47 -msgid "undo" -msgstr "撤销" - -#: js/users.js:79 -msgid "Unable to remove user" -msgstr "无法移除用户" - -#: js/users.js:92 templates/users.php:26 templates/users.php:87 -#: templates/users.php:112 -msgid "Groups" -msgstr "群组" - -#: js/users.js:97 templates/users.php:89 templates/users.php:124 -msgid "Group Admin" -msgstr "群组管理员" - -#: js/users.js:120 templates/users.php:164 -msgid "Delete" -msgstr "删除" - -#: js/users.js:277 -msgid "add group" -msgstr "添加群组" - -#: js/users.js:436 -msgid "A valid username must be provided" -msgstr "请填写有效用户名" - -#: js/users.js:437 js/users.js:443 js/users.js:458 -msgid "Error creating user" -msgstr "新增用户时出现错误" - -#: js/users.js:442 -msgid "A valid password must be provided" -msgstr "请填写有效密码" - -#: personal.php:40 personal.php:41 -msgid "__language_name__" -msgstr "Chinese" - -#: templates/admin.php:15 -msgid "Security Warning" -msgstr "安全警告" - -#: templates/admin.php:18 -msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file is not working. We strongly suggest that you " -"configure your webserver in a way that the data directory is no longer " -"accessible or you move the data directory outside the webserver document " -"root." -msgstr "您的数据文件夹和您的文件或许能够从互联网访问。ownCloud 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。" - -#: templates/admin.php:29 -msgid "Setup Warning" -msgstr "配置注意" - -#: templates/admin.php:32 -msgid "" -"Your web server is not yet properly setup to allow files synchronization " -"because the WebDAV interface seems to be broken." -msgstr "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。" - -#: templates/admin.php:33 -#, php-format -msgid "Please double check the installation guides." -msgstr "请双击安装向导。" - -#: templates/admin.php:44 -msgid "Module 'fileinfo' missing" -msgstr "模块“fileinfo”丢失。" - -#: templates/admin.php:47 -msgid "" -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " -"module to get best results with mime-type detection." -msgstr "PHP 模块“fileinfo”丢失。我们强烈建议打开此模块来获得 mine 类型检测的最佳结果。" - -#: templates/admin.php:58 -msgid "Locale not working" -msgstr "区域设置未运作" - -#: templates/admin.php:63 -#, php-format -msgid "" -"System locale can't be set to %s. This means that there might be problems " -"with certain characters in file names. We strongly suggest to install the " -"required packages on your system to support %s." -msgstr "ownCloud 服务器不能把系统区域设置为 %s。这意味着文件名可内可能含有某些引起问题的字符。我们强烈建议在您的系统上安装必要的区域/语言支持包来支持 “%s” 。" - -#: templates/admin.php:75 -msgid "Internet connection not working" -msgstr "互联网连接未运作" - -#: templates/admin.php:78 -msgid "" -"This server has no working internet connection. This means that some of the " -"features like mounting of external storage, notifications about updates or " -"installation of 3rd party apps don´t work. Accessing files from remote and " -"sending of notification emails might also not work. We suggest to enable " -"internet connection for this server if you want to have all features." -msgstr "服务器没有可用的Internet连接。这意味着像挂载外部储存、版本更新提示和安装第三方插件等功能会失效。远程访问文件和发送邮件提醒也可能会失效。如果您需要这些功能,建议开启服务器的英特网连接。" - -#: templates/admin.php:92 -msgid "Cron" -msgstr "Cron" - -#: templates/admin.php:99 -msgid "Execute one task with each page loaded" -msgstr "在每个页面载入时执行一项任务" - -#: templates/admin.php:107 -msgid "" -"cron.php is registered at a webcron service to call cron.php once a minute " -"over http." -msgstr "cron.php 已作为 webcron 服务注册。owncloud 将通过 http 协议每分钟调用一次 cron.php。" - -#: templates/admin.php:115 -msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php" - -#: templates/admin.php:120 -msgid "Sharing" -msgstr "分享" - -#: templates/admin.php:126 -msgid "Enable Share API" -msgstr "开启分享API" - -#: templates/admin.php:127 -msgid "Allow apps to use the Share API" -msgstr "允许应用使用分享API" - -#: templates/admin.php:134 -msgid "Allow links" -msgstr "允许链接" - -#: templates/admin.php:135 -msgid "Allow users to share items to the public with links" -msgstr "允许用户通过链接共享内容" - -#: templates/admin.php:143 -msgid "Allow public uploads" -msgstr "允许公众账户上传" - -#: templates/admin.php:144 -msgid "" -"Allow users to enable others to upload into their publicly shared folders" -msgstr "允许其它人向用户的公众共享文件夹里上传文件" - -#: templates/admin.php:152 -msgid "Allow resharing" -msgstr "允许转帖" - -#: templates/admin.php:153 -msgid "Allow users to share items shared with them again" -msgstr "允许用户再次共享已共享的内容" - -#: templates/admin.php:160 -msgid "Allow users to share with anyone" -msgstr "允许用户向任何人分享" - -#: templates/admin.php:163 -msgid "Allow users to only share with users in their groups" -msgstr "只允许用户向所在群组中的其他用户分享" - -#: templates/admin.php:170 -msgid "Security" -msgstr "安全" - -#: templates/admin.php:183 -msgid "Enforce HTTPS" -msgstr "强制HTTPS" - -#: templates/admin.php:185 -#, php-format -msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "强制客户端通过加密连接与%s连接" - -#: templates/admin.php:191 -#, php-format -msgid "" -"Please connect to your %s via HTTPS to enable or disable the SSL " -"enforcement." -msgstr "请通过HTTPS协议连接到 %s,需要启用或者禁止强制SSL的开关。" - -#: templates/admin.php:203 -msgid "Log" -msgstr "日志" - -#: templates/admin.php:204 -msgid "Log level" -msgstr "日志等级" - -#: templates/admin.php:235 -msgid "More" -msgstr "更多" - -#: templates/admin.php:236 -msgid "Less" -msgstr "更少" - -#: templates/admin.php:242 templates/personal.php:140 -msgid "Version" -msgstr "版本" - -#: templates/admin.php:246 templates/personal.php:143 -msgid "" -"Developed by the ownCloud community, the source code is " -"licensed under the AGPL." -msgstr "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。" - -#: templates/apps.php:13 -msgid "Add your App" -msgstr "添加你的应用程序" - -#: templates/apps.php:28 -msgid "More Apps" -msgstr "更多应用" - -#: templates/apps.php:33 -msgid "Select an App" -msgstr "选择一个程序" - -#: templates/apps.php:39 -msgid "See application page at apps.owncloud.com" -msgstr "在owncloud.com上查看应用程序" - -#: templates/apps.php:41 -msgid "-licensed by " -msgstr "授权协议 " - -#: templates/apps.php:43 -msgid "Update" -msgstr "更新" - -#: templates/help.php:4 -msgid "User Documentation" -msgstr "用户文档" - -#: templates/help.php:6 -msgid "Administrator Documentation" -msgstr "管理员文档" - -#: templates/help.php:9 -msgid "Online Documentation" -msgstr "在线说明文档" - -#: templates/help.php:11 -msgid "Forum" -msgstr "论坛" - -#: templates/help.php:14 -msgid "Bugtracker" -msgstr "Bug追踪者" - -#: templates/help.php:17 -msgid "Commercial Support" -msgstr "商业支持" - -#: templates/personal.php:8 -msgid "Get the apps to sync your files" -msgstr "获取应用并同步您的文件" - -#: templates/personal.php:19 -msgid "Show First Run Wizard again" -msgstr "再次显示首次运行向导" - -#: templates/personal.php:27 -#, php-format -msgid "You have used %s of the available %s" -msgstr "您已使用%s/%s" - -#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 -msgid "Password" -msgstr "密码" - -#: templates/personal.php:40 -msgid "Your password was changed" -msgstr "您的密码以变更" - -#: templates/personal.php:41 -msgid "Unable to change your password" -msgstr "不能改变你的密码" - -#: templates/personal.php:42 -msgid "Current password" -msgstr "现在的密码" - -#: templates/personal.php:44 -msgid "New password" -msgstr "新密码" - -#: templates/personal.php:46 -msgid "Change password" -msgstr "改变密码" - -#: templates/personal.php:58 templates/users.php:85 -msgid "Display Name" -msgstr "显示名称" - -#: templates/personal.php:73 -msgid "Email" -msgstr "电子邮件" - -#: templates/personal.php:75 -msgid "Your email address" -msgstr "你的email地址" - -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "输入一个邮箱地址以激活密码恢复功能" - -#: templates/personal.php:85 templates/personal.php:86 -msgid "Language" -msgstr "语言" - -#: templates/personal.php:98 -msgid "Help translate" -msgstr "帮助翻译" - -#: templates/personal.php:104 -msgid "WebDAV" -msgstr "WebDAV" - -#: templates/personal.php:106 -#, php-format -msgid "" -"Use this address to access your Files via WebDAV" -msgstr "访问WebDAV请点击 此处" - -#: templates/personal.php:117 -msgid "Encryption" -msgstr "加密" - -#: templates/personal.php:119 -msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "" - -#: templates/personal.php:125 -msgid "Log-in password" -msgstr "" - -#: templates/personal.php:130 -msgid "Decrypt all Files" -msgstr "" - -#: templates/users.php:21 -msgid "Login Name" -msgstr "登录名" - -#: templates/users.php:30 -msgid "Create" -msgstr "新建" - -#: templates/users.php:36 -msgid "Admin Recovery Password" -msgstr "管理员恢复密码" - -#: templates/users.php:37 templates/users.php:38 -msgid "" -"Enter the recovery password in order to recover the users files during " -"password change" -msgstr "在恢复密码的过程中请输入恢复密钥来恢复用户数据" - -#: templates/users.php:42 -msgid "Default Storage" -msgstr "默认容量" - -#: templates/users.php:48 templates/users.php:142 -msgid "Unlimited" -msgstr "无限制" - -#: templates/users.php:66 templates/users.php:157 -msgid "Other" -msgstr "其他" - -#: templates/users.php:84 -msgid "Username" -msgstr "用户名" - -#: templates/users.php:91 -msgid "Storage" -msgstr "容量" - -#: templates/users.php:102 -msgid "change display name" -msgstr "更改显示名称" - -#: templates/users.php:106 -msgid "set new password" -msgstr "设置新的密码" - -#: templates/users.php:137 -msgid "Default" -msgstr "默认" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po deleted file mode 100644 index 291f44e4bc..0000000000 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ /dev/null @@ -1,406 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ajax/clearMappings.php:34 -msgid "Failed to clear the mappings." -msgstr "" - -#: ajax/deleteConfiguration.php:34 -msgid "Failed to delete the server configuration" -msgstr "" - -#: ajax/testConfiguration.php:36 -msgid "The configuration is valid and the connection could be established!" -msgstr "" - -#: ajax/testConfiguration.php:39 -msgid "" -"The configuration is valid, but the Bind failed. Please check the server " -"settings and credentials." -msgstr "" - -#: ajax/testConfiguration.php:43 -msgid "" -"The configuration is invalid. Please look in the ownCloud log for further " -"details." -msgstr "" - -#: js/settings.js:66 -msgid "Deletion failed" -msgstr "删除失败" - -#: js/settings.js:82 -msgid "Take over settings from recent server configuration?" -msgstr "" - -#: js/settings.js:83 -msgid "Keep settings?" -msgstr "" - -#: js/settings.js:97 -msgid "Cannot add server configuration" -msgstr "" - -#: js/settings.js:111 -msgid "mappings cleared" -msgstr "" - -#: js/settings.js:112 -msgid "Success" -msgstr "成功" - -#: js/settings.js:117 -msgid "Error" -msgstr "出错" - -#: js/settings.js:141 -msgid "Connection test succeeded" -msgstr "" - -#: js/settings.js:146 -msgid "Connection test failed" -msgstr "" - -#: js/settings.js:156 -msgid "Do you really want to delete the current Server Configuration?" -msgstr "" - -#: js/settings.js:157 -msgid "Confirm Deletion" -msgstr "" - -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "" - -#: templates/settings.php:12 -msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "" - -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "" - -#: templates/settings.php:32 -msgid "Add Server Configuration" -msgstr "" - -#: templates/settings.php:37 -msgid "Host" -msgstr "主机" - -#: templates/settings.php:39 -msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "您可以忽略协议,除非您需要 SSL。然后用 ldaps:// 开头" - -#: templates/settings.php:40 -msgid "Base DN" -msgstr "基本判别名" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "您可以在高级选项卡中为用户和群组指定基本判别名" - -#: templates/settings.php:44 -msgid "User DN" -msgstr "用户判别名" - -#: templates/settings.php:46 -msgid "" -"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." -msgstr "客户机用户的判别名,将用于绑定,例如 uid=agent, dc=example, dc=com。匿名访问请留空判别名和密码。" - -#: templates/settings.php:47 -msgid "Password" -msgstr "密码" - -#: templates/settings.php:50 -msgid "For anonymous access, leave DN and Password empty." -msgstr "匿名访问请留空判别名和密码。" - -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "用户登录过滤器" - -#: templates/settings.php:54 -#, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "" - -#: templates/settings.php:55 -msgid "User List Filter" -msgstr "用户列表过滤器" - -#: templates/settings.php:58 -msgid "" -"Defines the filter to apply, when retrieving users (no placeholders). " -"Example: \"objectClass=person\"" -msgstr "" - -#: templates/settings.php:59 -msgid "Group Filter" -msgstr "群组过滤器" - -#: templates/settings.php:62 -msgid "" -"Defines the filter to apply, when retrieving groups (no placeholders). " -"Example: \"objectClass=posixGroup\"" -msgstr "" - -#: templates/settings.php:66 -msgid "Connection Settings" -msgstr "" - -#: templates/settings.php:68 -msgid "Configuration Active" -msgstr "" - -#: templates/settings.php:68 -msgid "When unchecked, this configuration will be skipped." -msgstr "" - -#: templates/settings.php:69 -msgid "Port" -msgstr "端口" - -#: templates/settings.php:70 -msgid "Backup (Replica) Host" -msgstr "" - -#: templates/settings.php:70 -msgid "" -"Give an optional backup host. It must be a replica of the main LDAP/AD " -"server." -msgstr "" - -#: templates/settings.php:71 -msgid "Backup (Replica) Port" -msgstr "" - -#: templates/settings.php:72 -msgid "Disable Main Server" -msgstr "" - -#: templates/settings.php:72 -msgid "Only connect to the replica server." -msgstr "" - -#: templates/settings.php:73 -msgid "Use TLS" -msgstr "使用 TLS" - -#: templates/settings.php:73 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:74 -msgid "Case insensitve LDAP server (Windows)" -msgstr "大小写不敏感的 LDAP 服务器 (Windows)" - -#: templates/settings.php:75 -msgid "Turn off SSL certificate validation." -msgstr "关闭 SSL 证书校验。" - -#: templates/settings.php:75 -#, php-format -msgid "" -"Not recommended, use it for testing only! If connection only works with this" -" option, import the LDAP server's SSL certificate in your %s server." -msgstr "" - -#: templates/settings.php:76 -msgid "Cache Time-To-Live" -msgstr "" - -#: templates/settings.php:76 -msgid "in seconds. A change empties the cache." -msgstr "以秒计。修改会清空缓存。" - -#: templates/settings.php:78 -msgid "Directory Settings" -msgstr "" - -#: templates/settings.php:80 -msgid "User Display Name Field" -msgstr "用户显示名称字段" - -#: templates/settings.php:80 -msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" - -#: templates/settings.php:81 -msgid "Base User Tree" -msgstr "基本用户树" - -#: templates/settings.php:81 -msgid "One User Base DN per line" -msgstr "" - -#: templates/settings.php:82 -msgid "User Search Attributes" -msgstr "" - -#: templates/settings.php:82 templates/settings.php:85 -msgid "Optional; one attribute per line" -msgstr "" - -#: templates/settings.php:83 -msgid "Group Display Name Field" -msgstr "群组显示名称字段" - -#: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" - -#: templates/settings.php:84 -msgid "Base Group Tree" -msgstr "基本群组树" - -#: templates/settings.php:84 -msgid "One Group Base DN per line" -msgstr "" - -#: templates/settings.php:85 -msgid "Group Search Attributes" -msgstr "" - -#: templates/settings.php:86 -msgid "Group-Member association" -msgstr "群组-成员组合" - -#: templates/settings.php:88 -msgid "Special Attributes" -msgstr "" - -#: templates/settings.php:90 -msgid "Quota Field" -msgstr "" - -#: templates/settings.php:91 -msgid "Quota Default" -msgstr "" - -#: templates/settings.php:91 -msgid "in bytes" -msgstr "以字节计" - -#: templates/settings.php:92 -msgid "Email Field" -msgstr "" - -#: templates/settings.php:93 -msgid "User Home Folder Naming Rule" -msgstr "" - -#: templates/settings.php:93 -msgid "" -"Leave empty for user name (default). Otherwise, specify an LDAP/AD " -"attribute." -msgstr "用户名请留空 (默认)。否则,请指定一个 LDAP/AD 属性。" - -#: templates/settings.php:98 -msgid "Internal Username" -msgstr "" - -#: templates/settings.php:99 -msgid "" -"By default the internal username will be created from the UUID attribute. It" -" makes sure that the username is unique and characters do not need to be " -"converted. The internal username has the restriction that only these " -"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " -"with their ASCII correspondence or simply omitted. On collisions a number " -"will be added/increased. The internal username is used to identify a user " -"internally. It is also the default name for the user home folder. It is also" -" a part of remote URLs, for instance for all *DAV services. With this " -"setting, the default behavior can be overridden. To achieve a similar " -"behavior as before ownCloud 5 enter the user display name attribute in the " -"following field. Leave it empty for default behavior. Changes will have " -"effect only on newly mapped (added) LDAP users." -msgstr "" - -#: templates/settings.php:100 -msgid "Internal Username Attribute:" -msgstr "" - -#: templates/settings.php:101 -msgid "Override UUID detection" -msgstr "" - -#: templates/settings.php:102 -msgid "" -"By default, the UUID attribute is automatically detected. The UUID attribute" -" is used to doubtlessly identify LDAP users and groups. Also, the internal " -"username will be created based on the UUID, if not specified otherwise " -"above. You can override the setting and pass an attribute of your choice. " -"You must make sure that the attribute of your choice can be fetched for both" -" users and groups and it is unique. Leave it empty for default behavior. " -"Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" - -#: templates/settings.php:103 -msgid "UUID Attribute:" -msgstr "" - -#: templates/settings.php:104 -msgid "Username-LDAP User Mapping" -msgstr "" - -#: templates/settings.php:105 -msgid "" -"Usernames are used to store and assign (meta) data. In order to precisely " -"identify and recognize users, each LDAP user will have a internal username. " -"This requires a mapping from username to LDAP user. The created username is " -"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " -"to reduce LDAP interaction, but it is not used for identification. If the DN" -" changes, the changes will be found. The internal username is used all over." -" Clearing the mappings will have leftovers everywhere. Clearing the mappings" -" is not configuration sensitive, it affects all LDAP configurations! Never " -"clear the mappings in a production environment, only in a testing or " -"experimental stage." -msgstr "" - -#: templates/settings.php:106 -msgid "Clear Username-LDAP User Mapping" -msgstr "" - -#: templates/settings.php:106 -msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" - -#: templates/settings.php:108 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:108 -msgid "Help" -msgstr "帮助" diff --git a/l10n/zh_CN.GB2312/user_webdavauth.po b/l10n/zh_CN.GB2312/user_webdavauth.po deleted file mode 100644 index bcfa856ac0..0000000000 --- a/l10n/zh_CN.GB2312/user_webdavauth.po +++ /dev/null @@ -1,34 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# aivier , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-16 01:29-0400\n" -"PO-Revision-Date: 2013-08-15 10:30+0000\n" -"Last-Translator: aivier \n" -"Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN.GB2312\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: templates/settings.php:3 -msgid "WebDAV Authentication" -msgstr "WebDAV 验证" - -#: templates/settings.php:4 -msgid "Address: " -msgstr "地址:" - -#: templates/settings.php:7 -msgid "" -"The user credentials will be sent to this address. This plugin checks the " -"response and will interpret the HTTP statuscodes 401 and 403 as invalid " -"credentials, and all other responses as valid credentials." -msgstr "" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index c516d6a84d..35152650e5 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Xuetian Weng , 2013 # zhangmin , 2013 # zhangmin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" +"Last-Translator: Xuetian Weng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,6 +25,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s 向您分享了 »%s«" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "启用维护模式" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "关闭维护模式" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "数据库已更新" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "正在更新文件缓存,这可能需要较长时间..." + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "文件缓存已更新" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "...已完成 %d%% ..." + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "未提供分类类型。" @@ -155,7 +181,7 @@ msgstr[0] "%n 分钟前" #: js/js.js:814 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n 小时前" #: js/js.js:815 msgid "today" @@ -168,7 +194,7 @@ msgstr "昨天" #: js/js.js:817 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n 天前" #: js/js.js:818 msgid "last month" @@ -177,7 +203,7 @@ msgstr "上月" #: js/js.js:819 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n 月前" #: js/js.js:820 msgid "months ago" @@ -191,23 +217,23 @@ msgstr "去年" msgid "years ago" msgstr "年前" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "选择(&C)..." -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "加载文件选择器模板出错" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "是" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "否" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "好" @@ -226,7 +252,7 @@ msgstr "错误" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "未指定App名称。" +msgstr "未指定应用名称。" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" @@ -374,7 +400,7 @@ msgstr "更新成功。正在重定向至 ownCloud。" #: lostpassword/controller.php:61 #, php-format msgid "%s password reset" -msgstr "" +msgstr "重置 %s 的密码" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -491,7 +517,7 @@ msgstr "你的PHP版本容易受到空字节攻击 (CVE-2006-7243)" #: templates/installation.php:26 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "为保证安全使用 %s 请更新您的PHP。" #: templates/installation.php:32 msgid "" @@ -516,7 +542,7 @@ msgstr "您的数据目录和文件可能可以直接被互联网访问,因为 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "关于如何配置服务器,请参见 此文档。" #: templates/installation.php:47 msgid "Create an admin account" @@ -575,7 +601,7 @@ msgstr "注销" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "更多应用" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index f2c016bafb..d35b319b1c 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -97,21 +97,20 @@ msgstr "没有足够可用空间" msgid "Upload cancelled." msgstr "上传已取消" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL不能为空" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "错误" @@ -198,28 +197,24 @@ msgid "" "big." msgstr "下载正在准备中。如果文件较大可能会花费一些时间。" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "名称" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "大小" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "修改日期" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 文件夹" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n个文件" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 3a6ed61af5..08447c650f 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -5,13 +5,14 @@ # Translators: # Charlie Mak , 2013 # modokwang , 2013 +# Xuetian Weng , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 19:10+0000\n" +"Last-Translator: Xuetian Weng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,27 +20,38 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "帮助" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "个人" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "设置" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "用户" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "管理" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -75,6 +87,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "应用未提供 info.xml 文件" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "应用程序未启用" @@ -211,7 +279,7 @@ msgstr[0] "%n 分钟前" #: template/functions.php:82 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n 小时前" #: template/functions.php:83 msgid "today" @@ -224,7 +292,7 @@ msgstr "昨天" #: template/functions.php:85 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n 天前" #: template/functions.php:86 msgid "last month" @@ -233,7 +301,7 @@ msgstr "上月" #: template/functions.php:87 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n 月前" #: template/functions.php:88 msgid "last year" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 9dcf1c5684..d8d9cefc36 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -6,14 +6,15 @@ # m13253 , 2013 # waterone , 2013 # modokwang , 2013 +# Xuetian Weng , 2013 # zhangmin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 17:40+0000\n" +"Last-Translator: Xuetian Weng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,10 +47,6 @@ msgstr "已存在该组" msgid "Unable to add group" msgstr "无法添加组" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "无法开启App" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "电子邮件已保存" @@ -96,37 +93,49 @@ msgstr "无法更新 app。" msgid "Update to {appversion}" msgstr "更新至 {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "禁用" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "开启" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "请稍等...." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "错误" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "禁用 app 时出错" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "启用 app 时出错" + +#: js/apps.js:115 msgid "Updating...." msgstr "正在更新...." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "更新 app 时出错" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "错误" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "更新" + +#: js/apps.js:122 msgid "Updated" msgstr "已更新" #: js/personal.js:150 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "正在解密文件... 请稍等,可能需要一些时间。" #: js/personal.js:172 msgid "Saving..." @@ -373,10 +382,6 @@ msgstr "查看在 app.owncloud.com 的应用程序页面" msgid "-licensed by " msgstr "-核准: " -#: templates/apps.php:43 -msgid "Update" -msgstr "更新" - #: templates/help.php:4 msgid "User Documentation" msgstr "用户文档" @@ -479,15 +484,15 @@ msgstr "加密" #: templates/personal.php:119 msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "" +msgstr "加密 app 未启用,将解密您所有文件" #: templates/personal.php:125 msgid "Log-in password" -msgstr "" +msgstr "登录密码" #: templates/personal.php:130 msgid "Decrypt all Files" -msgstr "" +msgstr "解密所有文件" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/zh_CN/user_webdavauth.po b/l10n/zh_CN/user_webdavauth.po index c3a8727e4b..754dd58d6e 100644 --- a/l10n/zh_CN/user_webdavauth.po +++ b/l10n/zh_CN/user_webdavauth.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 19:10+0000\n" +"Last-Translator: Xuetian Weng \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,11 +28,11 @@ msgstr "WebDAV 认证" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "地址:" #: templates/settings.php:7 msgid "" "The user credentials will be sent to this address. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "用户的身份将会被发送到此 URL。这个插件检查返回值并且将 HTTP 状态编码 401 和 403 解释为非法身份,其他所有返回值为合法身份。" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index f91ec7caff..b5d97e7304 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "" @@ -189,23 +214,23 @@ msgstr "" msgid "years ago" msgstr "" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "Yes" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "No" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "OK" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index ad3332276d..dc0fe5ad6f 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -94,21 +94,20 @@ msgstr "" msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "錯誤" @@ -195,28 +194,24 @@ msgid "" "big." msgstr "" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "名稱" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" msgstr[0] "" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 037fcf1365..c6fa7c451a 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,27 +17,38 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: app.php:250 +msgid "No app name specified" +msgstr "" + +#: app.php:361 msgid "Help" msgstr "幫助" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "個人" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "設定" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "用戶" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "管理" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,6 +84,62 @@ msgid "" "administrator." msgstr "" +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 2342751641..3d0d5b1326 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" +"POT-Creation-Date: 2013-08-25 19:18-0400\n" +"PO-Revision-Date: 2013-08-25 23:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -42,10 +42,6 @@ msgstr "" msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" @@ -92,31 +88,43 @@ msgstr "" msgid "Update to {appversion}" msgstr "" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "" -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "錯誤" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:115 msgid "Updating...." msgstr "" -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "錯誤" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "" + +#: js/apps.js:122 msgid "Updated" msgstr "" @@ -369,10 +377,6 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/apps.php:43 -msgid "Update" -msgstr "" - #: templates/help.php:4 msgid "User Documentation" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 487c676ed0..435e7b2b7f 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:06+0000\n" +"POT-Creation-Date: 2013-08-28 06:22-0400\n" +"PO-Revision-Date: 2013-08-27 22:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,31 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s 與您分享了 %s" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." msgstr "未提供分類類型。" @@ -150,12 +175,12 @@ msgstr "幾秒前" #: js/js.js:813 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "%n 分鐘前" #: js/js.js:814 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n 小時前" #: js/js.js:815 msgid "today" @@ -168,7 +193,7 @@ msgstr "昨天" #: js/js.js:817 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n 天前" #: js/js.js:818 msgid "last month" @@ -177,7 +202,7 @@ msgstr "上個月" #: js/js.js:819 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n 個月前" #: js/js.js:820 msgid "months ago" @@ -191,23 +216,23 @@ msgstr "去年" msgid "years ago" msgstr "幾年前" -#: js/oc-dialogs.js:117 +#: js/oc-dialogs.js:123 msgid "Choose" msgstr "選擇" -#: js/oc-dialogs.js:137 js/oc-dialogs.js:196 +#: js/oc-dialogs.js:143 js/oc-dialogs.js:210 msgid "Error loading file picker template" msgstr "載入檔案選擇器樣板發生錯誤" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:168 msgid "Yes" msgstr "是" -#: js/oc-dialogs.js:168 +#: js/oc-dialogs.js:178 msgid "No" msgstr "否" -#: js/oc-dialogs.js:181 +#: js/oc-dialogs.js:195 msgid "Ok" msgstr "好" @@ -374,7 +399,7 @@ msgstr "升級成功,正將您重新導向至 ownCloud 。" #: lostpassword/controller.php:61 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s 密碼重設" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -575,7 +600,7 @@ msgstr "登出" #: templates/layout.user.php:100 msgid "More apps" -msgstr "" +msgstr "更多 Apps" #: templates/login.php:9 msgid "Automatic logon rejected!" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 6bca4b0ddc..59f8bf9186 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-27 15:18+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -95,21 +95,20 @@ msgstr "沒有足夠的可用空間" msgid "Upload cancelled." msgstr "上傳已取消" -#: js/file-upload.js:167 js/files.js:280 +#: js/file-upload.js:167 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中。離開此頁面將會取消上傳。" -#: js/file-upload.js:233 js/files.js:353 +#: js/file-upload.js:241 msgid "URL cannot be empty." msgstr "URL 不能為空白。" -#: js/file-upload.js:238 lib/app.php:53 +#: js/file-upload.js:246 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" msgstr "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留" -#: js/file-upload.js:269 js/file-upload.js:285 js/files.js:389 js/files.js:405 -#: js/files.js:709 js/files.js:747 +#: js/file-upload.js:277 js/file-upload.js:293 js/files.js:511 js/files.js:549 msgid "Error" msgstr "錯誤" @@ -156,7 +155,7 @@ msgstr "復原" #: js/filelist.js:453 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "" +msgstr[0] "%n 個檔案正在上傳" #: js/filelist.js:518 msgid "files uploading" @@ -188,7 +187,7 @@ msgstr "您的儲存空間快要滿了 ({usedSpacePercent}%)" msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "加密已經被停用,但是您的舊檔案還是處於已加密的狀態,請前往個人設定以解密這些檔案。" #: js/files.js:245 msgid "" @@ -196,31 +195,27 @@ msgid "" "big." msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時間。" -#: js/files.js:358 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留" - -#: js/files.js:760 templates/index.php:67 +#: js/files.js:562 templates/index.php:67 msgid "Name" msgstr "名稱" -#: js/files.js:761 templates/index.php:78 +#: js/files.js:563 templates/index.php:78 msgid "Size" msgstr "大小" -#: js/files.js:762 templates/index.php:80 +#: js/files.js:564 templates/index.php:80 msgid "Modified" msgstr "修改" -#: js/files.js:778 +#: js/files.js:580 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" +msgstr[0] "%n 個資料夾" -#: js/files.js:784 +#: js/files.js:586 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" +msgstr[0] "%n 個檔案" #: lib/app.php:73 #, php-format diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 6cf49409e5..37faace2e6 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 18:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 04:20+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "請檢查您的密碼並再試一次。" #: templates/authenticate.php:7 msgid "Password" @@ -32,27 +32,27 @@ msgstr "送出" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "抱歉,這連結看來已經不能用了。" #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "可能的原因:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "項目已經移除" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "連結過期" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "分享功能已停用" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "請詢問告訴您此連結的人以瞭解更多" #: templates/public.php:15 #, php-format diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index f51e340bf8..53c5a7baec 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-15 04:47-0400\n" -"PO-Revision-Date: 2013-08-15 08:48+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 04:00+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,11 +26,11 @@ msgstr "無法永久刪除 %s" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "無法復原 %s" +msgstr "無法還原 %s" #: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" -msgstr "進行復原動作" +msgstr "進行還原動作" #: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" @@ -54,16 +55,16 @@ msgstr "已刪除" #: js/trash.js:191 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "" +msgstr[0] "%n 個資料夾" #: js/trash.js:197 msgid "%n file" msgid_plural "%n files" -msgstr[0] "" +msgstr[0] "%n 個檔案" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "已還原" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" @@ -71,7 +72,7 @@ msgstr "您的垃圾桶是空的!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "復原" +msgstr "還原" #: templates/index.php:30 templates/index.php:31 msgid "Delete" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index bd093d7fda..cdab9cce2a 100644 --- a/l10n/zh_TW/files_versions.po +++ b/l10n/zh_TW/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 04:20+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,16 +29,16 @@ msgstr "版本" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "無法還原檔案 {file} 至版本 {timestamp}" #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "更多版本…" #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "沒有其他版本了" -#: js/versions.js:149 +#: js/versions.js:145 msgid "Restore" msgstr "復原" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 51f5864b64..9f1a0e4503 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 04:10+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,30 +18,41 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:360 +#: app.php:239 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "無法安裝應用程式 %s 因為它和此版本的 ownCloud 不相容。" + +#: app.php:250 +msgid "No app name specified" +msgstr "沒有指定應用程式名稱" + +#: app.php:361 msgid "Help" msgstr "說明" -#: app.php:373 +#: app.php:374 msgid "Personal" msgstr "個人" -#: app.php:384 +#: app.php:385 msgid "Settings" msgstr "設定" -#: app.php:396 +#: app.php:397 msgid "Users" msgstr "使用者" -#: app.php:409 +#: app.php:410 msgid "Admin" msgstr "管理" -#: app.php:836 +#: app.php:837 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "升級失敗:%s" #: defaults.php:35 msgid "web services under your control" @@ -50,7 +61,7 @@ msgstr "由您控制的網路服務" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "無法開啓 %s" #: files.php:226 msgid "ZIP download is turned off." @@ -72,7 +83,63 @@ msgstr "選擇的檔案太大以致於無法產生壓縮檔。" msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "以小分割下載您的檔案,請詢問您的系統管理員。" + +#: installer.php:63 +msgid "No source specified when installing app" +msgstr "沒有指定應用程式安裝來源" + +#: installer.php:70 +msgid "No href specified when installing app from http" +msgstr "從 http 安裝應用程式,找不到 href 屬性" + +#: installer.php:75 +msgid "No path specified when installing app from local file" +msgstr "從本地檔案安裝應用程式時沒有指定路徑" + +#: installer.php:89 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "不支援 %s 格式的壓縮檔" + +#: installer.php:103 +msgid "Failed to open archive when installing app" +msgstr "安裝應用程式時無法開啓壓縮檔" + +#: installer.php:123 +msgid "App does not provide an info.xml file" +msgstr "應用程式沒有提供 info.xml 檔案" + +#: installer.php:129 +msgid "App can't be installed because of not allowed code in the App" +msgstr "無法安裝應用程式因為在當中找到危險的代碼" + +#: installer.php:138 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "無法安裝應用程式因為它和此版本的 ownCloud 不相容。" + +#: installer.php:144 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "無法安裝應用程式,因為它包含了 true 標籤,在未發行的應用程式當中這是不允許的" + +#: installer.php:150 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "無法安裝應用程式,因為它在 info.xml/version 宣告的版本與 app store 當中記載的版本不同" + +#: installer.php:160 +msgid "App directory already exists" +msgstr "應用程式目錄已經存在" + +#: installer.php:173 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "無法建立應用程式目錄,請檢查權限:%s" #: json.php:28 msgid "Application is not enabled" @@ -205,12 +272,12 @@ msgstr "幾秒前" #: template/functions.php:81 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "%n 分鐘前" #: template/functions.php:82 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n 小時前" #: template/functions.php:83 msgid "today" @@ -223,7 +290,7 @@ msgstr "昨天" #: template/functions.php:85 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n 天前" #: template/functions.php:86 msgid "last month" @@ -232,7 +299,7 @@ msgstr "上個月" #: template/functions.php:87 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n 個月前" #: template/functions.php:88 msgid "last year" @@ -244,7 +311,7 @@ msgstr "幾年前" #: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "原因:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index dd203a6e97..9ba8be581b 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-21 08:11-0400\n" -"PO-Revision-Date: 2013-08-19 19:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 04:10+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,10 +43,6 @@ msgstr "群組已存在" msgid "Unable to add group" msgstr "群組增加失敗" -#: ajax/enableapp.php:11 -msgid "Could not enable app. " -msgstr "未能啟動此app" - #: ajax/lostpassword.php:12 msgid "Email saved" msgstr "Email已儲存" @@ -93,37 +89,49 @@ msgstr "無法更新應用程式" msgid "Update to {appversion}" msgstr "更新至 {appversion}" -#: js/apps.js:41 js/apps.js:81 +#: js/apps.js:41 js/apps.js:74 js/apps.js:100 msgid "Disable" msgstr "停用" -#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +#: js/apps.js:41 js/apps.js:81 js/apps.js:94 js/apps.js:109 msgid "Enable" msgstr "啟用" -#: js/apps.js:60 +#: js/apps.js:63 msgid "Please wait...." msgstr "請稍候..." -#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 -msgid "Error" -msgstr "錯誤" +#: js/apps.js:71 js/apps.js:72 js/apps.js:92 +msgid "Error while disabling app" +msgstr "停用應用程式錯誤" -#: js/apps.js:95 +#: js/apps.js:91 js/apps.js:104 js/apps.js:105 +msgid "Error while enabling app" +msgstr "啓用應用程式錯誤" + +#: js/apps.js:115 msgid "Updating...." msgstr "更新中..." -#: js/apps.js:98 +#: js/apps.js:118 msgid "Error while updating app" msgstr "更新應用程式錯誤" -#: js/apps.js:101 +#: js/apps.js:118 +msgid "Error" +msgstr "錯誤" + +#: js/apps.js:119 templates/apps.php:43 +msgid "Update" +msgstr "更新" + +#: js/apps.js:122 msgid "Updated" msgstr "已更新" #: js/personal.js:150 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "檔案解密中,請稍候。" #: js/personal.js:172 msgid "Saving..." @@ -370,10 +378,6 @@ msgstr "查看應用程式頁面於 apps.owncloud.com" msgid "-licensed by " msgstr "-核准: " -#: templates/apps.php:43 -msgid "Update" -msgstr "更新" - #: templates/help.php:4 msgid "User Documentation" msgstr "用戶說明文件" @@ -476,15 +480,15 @@ msgstr "加密" #: templates/personal.php:119 msgid "The encryption app is no longer enabled, decrypt all your file" -msgstr "" +msgstr "加密應用程式已經停用,請您解密您所有的檔案" #: templates/personal.php:125 msgid "Log-in password" -msgstr "" +msgstr "登入密碼" #: templates/personal.php:130 msgid "Decrypt all Files" -msgstr "" +msgstr "解密所有檔案" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index c8e59df49f..fd00e191fd 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -4,13 +4,14 @@ # # Translators: # chenanyeh , 2013 +# pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-19 15:06-0400\n" -"PO-Revision-Date: 2013-08-19 19:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-27 11:18-0400\n" +"PO-Revision-Date: 2013-08-26 06:10+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,13 +35,13 @@ msgstr "設定有效且連線可建立" msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "設定有效但連線無法建立。請檢查伺服器的設定與認證資料。" +msgstr "設定有效但連線無法建立,請檢查伺服器設定與認證資料。" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "設定無效。更多細節請參閱ownCloud的記錄檔。" +msgstr "設定無效,更多細節請參閱 ownCloud 的記錄檔。" #: js/settings.js:66 msgid "Deletion failed" @@ -48,11 +49,11 @@ msgstr "移除失敗" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "要使用最近一次的伺服器設定嗎?" +msgstr "要使用最近一次的伺服器設定嗎?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "維持設定嗎?" +msgstr "維持設定嗎?" #: js/settings.js:97 msgid "Cannot add server configuration" @@ -80,11 +81,11 @@ msgstr "連線測試失敗" #: js/settings.js:156 msgid "Do you really want to delete the current Server Configuration?" -msgstr "您真的確定要刪除現在的伺服器設定嗎?" +msgstr "您真的要刪除現在的伺服器設定嗎?" #: js/settings.js:157 msgid "Confirm Deletion" -msgstr "確認已刪除" +msgstr "確認刪除" #: templates/settings.php:9 msgid "" @@ -97,7 +98,7 @@ msgstr "" msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "警告:沒有安裝 PHP LDAP 模組,後端系統將無法運作。請要求您的系統管理員安裝模組。" +msgstr "警告:沒有安裝 PHP LDAP 模組,後端系統將無法運作,請要求您的系統管理員安裝模組。" #: templates/settings.php:16 msgid "Server configuration" @@ -114,23 +115,23 @@ msgstr "主機" #: templates/settings.php:39 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "若您不需要SSL加密傳輸則可忽略通訊協定。若非如此請從ldaps://開始" +msgstr "若您不需要 SSL 加密連線則不需輸入通訊協定,反之請輸入 ldaps://" #: templates/settings.php:40 msgid "Base DN" -msgstr "" +msgstr "Base DN" #: templates/settings.php:41 msgid "One Base DN per line" -msgstr "一行一個Base DN" +msgstr "一行一個 Base DN" #: templates/settings.php:42 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "您可以在進階標籤頁裡面指定使用者及群組的Base DN" +msgstr "您可以在進階標籤頁裡面指定使用者及群組的 Base DN" #: templates/settings.php:44 msgid "User DN" -msgstr "" +msgstr "User DN" #: templates/settings.php:46 msgid "" @@ -145,11 +146,11 @@ msgstr "密碼" #: templates/settings.php:50 msgid "For anonymous access, leave DN and Password empty." -msgstr "匿名連接時請將DN與密碼欄位留白" +msgstr "匿名連接時請將 DN 與密碼欄位留白" #: templates/settings.php:51 msgid "User Login Filter" -msgstr "使用者登入過濾器" +msgstr "User Login Filter" #: templates/settings.php:54 #, php-format @@ -160,7 +161,7 @@ msgstr "" #: templates/settings.php:55 msgid "User List Filter" -msgstr "使用者名單篩選器" +msgstr "User List Filter" #: templates/settings.php:58 msgid "" @@ -170,7 +171,7 @@ msgstr "" #: templates/settings.php:59 msgid "Group Filter" -msgstr "群組篩選器" +msgstr "Group Filter" #: templates/settings.php:62 msgid "" @@ -184,7 +185,7 @@ msgstr "連線設定" #: templates/settings.php:68 msgid "Configuration Active" -msgstr "設定為主動模式" +msgstr "設定使用中" #: templates/settings.php:68 msgid "When unchecked, this configuration will be skipped." @@ -192,7 +193,7 @@ msgstr "沒有被勾選時,此設定會被略過。" #: templates/settings.php:69 msgid "Port" -msgstr "連接阜" +msgstr "連接埠" #: templates/settings.php:70 msgid "Backup (Replica) Host" @@ -202,11 +203,11 @@ msgstr "備用主機" msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "請給定一個可選的備用主機。必須是LDAP/AD中央伺服器的複本。" +msgstr "可以選擇性設定備用主機,必須是 LDAP/AD 中央伺服器的複本。" #: templates/settings.php:71 msgid "Backup (Replica) Port" -msgstr "備用(複本)連接阜" +msgstr "備用(複本)連接埠" #: templates/settings.php:72 msgid "Disable Main Server" @@ -218,19 +219,19 @@ msgstr "" #: templates/settings.php:73 msgid "Use TLS" -msgstr "使用TLS" +msgstr "使用 TLS" #: templates/settings.php:73 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "不要同時與 LDAPS 使用,會有問題。" #: templates/settings.php:74 msgid "Case insensitve LDAP server (Windows)" -msgstr "不區分大小寫的LDAP伺服器(Windows)" +msgstr "不區分大小寫的 LDAP 伺服器 (Windows)" #: templates/settings.php:75 msgid "Turn off SSL certificate validation." -msgstr "關閉 SSL 憑證驗證" +msgstr "關閉 SSL 憑證檢查" #: templates/settings.php:75 #, php-format @@ -245,15 +246,15 @@ msgstr "快取的存活時間" #: templates/settings.php:76 msgid "in seconds. A change empties the cache." -msgstr "以秒為單位。更變後會清空快取。" +msgstr "以秒為單位。變更後會清空快取。" #: templates/settings.php:78 msgid "Directory Settings" -msgstr "目錄選項" +msgstr "目錄設定" #: templates/settings.php:80 msgid "User Display Name Field" -msgstr "使用者名稱欄位" +msgstr "使用者顯示名稱欄位" #: templates/settings.php:80 msgid "The LDAP attribute to use to generate the user's display name." @@ -261,19 +262,19 @@ msgstr "" #: templates/settings.php:81 msgid "Base User Tree" -msgstr "Base使用者數" +msgstr "Base User Tree" #: templates/settings.php:81 msgid "One User Base DN per line" -msgstr "一行一個使用者Base DN" +msgstr "一行一個使用者 Base DN" #: templates/settings.php:82 msgid "User Search Attributes" -msgstr "使用者搜索屬性" +msgstr "User Search Attributes" #: templates/settings.php:82 templates/settings.php:85 msgid "Optional; one attribute per line" -msgstr "可選的; 一行一項屬性" +msgstr "非必要,一行一項屬性" #: templates/settings.php:83 msgid "Group Display Name Field" @@ -285,19 +286,19 @@ msgstr "" #: templates/settings.php:84 msgid "Base Group Tree" -msgstr "Base群組樹" +msgstr "Base Group Tree" #: templates/settings.php:84 msgid "One Group Base DN per line" -msgstr "一行一個群組Base DN" +msgstr "一行一個 Group Base DN" #: templates/settings.php:85 msgid "Group Search Attributes" -msgstr "群組搜索屬性" +msgstr "Group Search Attributes" #: templates/settings.php:86 msgid "Group-Member association" -msgstr "群組成員的關係" +msgstr "Group-Member association" #: templates/settings.php:88 msgid "Special Attributes" diff --git a/lib/base.php b/lib/base.php index 2613e88d05..0c9fe329b8 100644 --- a/lib/base.php +++ b/lib/base.php @@ -257,8 +257,8 @@ class OC { OC_Util::addScript("compatibility"); OC_Util::addScript("jquery.ocdialog"); OC_Util::addScript("oc-dialogs"); - OC_Util::addScript("octemplate"); OC_Util::addScript("js"); + OC_Util::addScript("octemplate"); OC_Util::addScript("eventsource"); OC_Util::addScript("config"); //OC_Util::addScript( "multiselect" ); @@ -669,12 +669,15 @@ class OC { $app = $param['app']; $file = $param['file']; $app_path = OC_App::getAppPath($app); - $file = $app_path . '/' . $file; - unset($app, $app_path); - if (file_exists($file)) { - require_once $file; - return true; + if (OC_App::isEnabled($app) && $app_path !== false) { + $file = $app_path . '/' . $file; + unset($app, $app_path); + if (file_exists($file)) { + require_once $file; + return true; + } } + header('HTTP/1.0 404 Not Found'); return false; } diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index ed8d085462..66cd2fcd4e 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -233,10 +233,10 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa * @return array */ public function getQuotaInfo() { - $rootInfo=\OC\Files\Filesystem::getFileInfo(''); + $storageInfo = OC_Helper::getStorageInfo($this->path); return array( - $rootInfo['size'], - \OC\Files\Filesystem::free_space() + $storageInfo['used'], + $storageInfo['total'] ); } diff --git a/lib/connector/sabre/quotaplugin.php b/lib/connector/sabre/quotaplugin.php index 34d4b67615..ea2cb81d1f 100644 --- a/lib/connector/sabre/quotaplugin.php +++ b/lib/connector/sabre/quotaplugin.php @@ -3,58 +3,95 @@ /** * This plugin check user quota and deny creating files when they exceeds the quota. * - * @copyright Copyright (C) 2012 entreCables S.L. All rights reserved. * @author Sergio Cambra + * @copyright Copyright (C) 2012 entreCables S.L. All rights reserved. * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License */ class OC_Connector_Sabre_QuotaPlugin extends Sabre_DAV_ServerPlugin { /** - * Reference to main server object - * - * @var Sabre_DAV_Server - */ + * Reference to main server object + * + * @var Sabre_DAV_Server + */ private $server; /** - * This initializes the plugin. - * - * This function is called by Sabre_DAV_Server, after - * addPlugin is called. - * - * This method should set up the requires event subscriptions. - * - * @param Sabre_DAV_Server $server - * @return void - */ + * is kept public to allow overwrite for unit testing + * + * @var \OC\Files\View + */ + public $fileView; + + /** + * This initializes the plugin. + * + * This function is called by Sabre_DAV_Server, after + * addPlugin is called. + * + * This method should set up the requires event subscriptions. + * + * @param Sabre_DAV_Server $server + * @return void + */ public function initialize(Sabre_DAV_Server $server) { - $this->server = $server; - $this->server->subscribeEvent('beforeWriteContent', array($this, 'checkQuota'), 10); - $this->server->subscribeEvent('beforeCreateFile', array($this, 'checkQuota'), 10); + $this->server = $server; + $server->subscribeEvent('beforeWriteContent', array($this, 'checkQuota'), 10); + $server->subscribeEvent('beforeCreateFile', array($this, 'checkQuota'), 10); } /** - * This method is called before any HTTP method and forces users to be authenticated - * - * @param string $method - * @throws Sabre_DAV_Exception - * @return bool - */ + * This method is called before any HTTP method and validates there is enough free space to store the file + * + * @param string $method + * @throws Sabre_DAV_Exception + * @return bool + */ public function checkQuota($uri, $data = null) { - $expected = $this->server->httpRequest->getHeader('X-Expected-Entity-Length'); - $length = $expected ? $expected : $this->server->httpRequest->getHeader('Content-Length'); + $length = $this->getLength(); if ($length) { if (substr($uri, 0, 1)!=='/') { $uri='/'.$uri; } list($parentUri, $newName) = Sabre_DAV_URLUtil::splitPath($uri); - $freeSpace = \OC\Files\Filesystem::free_space($parentUri); + $freeSpace = $this->getFreeSpace($parentUri); if ($freeSpace !== \OC\Files\SPACE_UNKNOWN && $length > $freeSpace) { throw new Sabre_DAV_Exception_InsufficientStorage(); } } return true; } + + public function getLength() + { + $req = $this->server->httpRequest; + $length = $req->getHeader('X-Expected-Entity-Length'); + if (!$length) { + $length = $req->getHeader('Content-Length'); + } + + $ocLength = $req->getHeader('OC-Total-Length'); + if ($length && $ocLength) { + return max($length, $ocLength); + } + + return $length; + } + + /** + * @param $parentUri + * @return mixed + */ + public function getFreeSpace($parentUri) + { + if (is_null($this->fileView)) { + // initialize fileView + $this->fileView = \OC\Files\Filesystem::getView(); + } + + $freeSpace = $this->fileView->free_space($parentUri); + return $freeSpace; + } } diff --git a/lib/group/group.php b/lib/group/group.php index a752c4311c..bcd2419b30 100644 --- a/lib/group/group.php +++ b/lib/group/group.php @@ -62,7 +62,6 @@ class Group { return $this->users; } - $users = array(); $userIds = array(); foreach ($this->backends as $backend) { $diff = array_diff( @@ -74,11 +73,8 @@ class Group { } } - foreach ($userIds as $userId) { - $users[] = $this->userManager->get($userId); - } - $this->users = $users; - return $users; + $this->users = $this->getVerifiedUsers($userIds); + return $this->users; } /** @@ -113,7 +109,7 @@ class Group { if ($backend->implementsActions(OC_GROUP_BACKEND_ADD_TO_GROUP)) { $backend->addToGroup($user->getUID(), $this->gid); if ($this->users) { - $this->users[] = $user; + $this->users[$user->getUID()] = $user; } if ($this->emitter) { $this->emitter->emit('\OC\Group', 'postAddUser', array($this, $user)); @@ -172,9 +168,7 @@ class Group { if (!is_null($offset)) { $offset -= count($userIds); } - foreach ($userIds as $userId) { - $users[$userId] = $this->userManager->get($userId); - } + $users += $this->getVerifiedUsers($userIds); if (!is_null($limit) and $limit <= 0) { return array_values($users); } @@ -191,7 +185,6 @@ class Group { * @return \OC\User\User[] */ public function searchDisplayName($search, $limit = null, $offset = null) { - $users = array(); foreach ($this->backends as $backend) { if ($backend->implementsActions(OC_GROUP_BACKEND_GET_DISPLAYNAME)) { $userIds = array_keys($backend->displayNamesInGroup($this->gid, $search, $limit, $offset)); @@ -204,9 +197,7 @@ class Group { if (!is_null($offset)) { $offset -= count($userIds); } - foreach ($userIds as $userId) { - $users[$userId] = $this->userManager->get($userId); - } + $users = $this->getVerifiedUsers($userIds); if (!is_null($limit) and $limit <= 0) { return array_values($users); } @@ -235,4 +226,23 @@ class Group { } return $result; } + + /** + * @brief returns all the Users from an array that really exists + * @param $userIds an array containing user IDs + * @return an Array with the userId as Key and \OC\User\User as value + */ + private function getVerifiedUsers($userIds) { + if(!is_array($userIds)) { + return array(); + } + $users = array(); + foreach ($userIds as $userId) { + $user = $this->userManager->get($userId); + if(!is_null($user)) { + $users[$userId] = $user; + } + } + return $users; + } } diff --git a/lib/helper.php b/lib/helper.php index 1024a570e3..dd2476eda5 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -591,9 +591,26 @@ class OC_Helper { * remove all files in PHP /oc-noclean temp dir */ public static function cleanTmpNoClean() { - $tmpDirNoCleanFile = get_temp_dir() . '/oc-noclean/'; - if (file_exists($tmpDirNoCleanFile)) { - self::rmdirr($tmpDirNoCleanFile); + $tmpDirNoCleanName=get_temp_dir() . '/oc-noclean/'; + if(file_exists($tmpDirNoCleanName) && is_dir($tmpDirNoCleanName)) { + $files=scandir($tmpDirNoCleanName); + foreach($files as $file) { + $fileName = $tmpDirNoCleanName . $file; + if (!\OC\Files\Filesystem::isIgnoredDir($file) && filemtime($fileName) + 600 < time()) { + unlink($fileName); + } + } + // if oc-noclean is empty delete it + $isTmpDirNoCleanEmpty = true; + $tmpDirNoClean = opendir($tmpDirNoCleanName); + while (false !== ($file = readdir($tmpDirNoClean))) { + if (!\OC\Files\Filesystem::isIgnoredDir($file)) { + $isTmpDirNoCleanEmpty = false; + } + } + if ($isTmpDirNoCleanEmpty) { + rmdir($tmpDirNoCleanName); + } } } @@ -824,15 +841,18 @@ class OC_Helper { } /** - * Calculate the disc space + * Calculate the disc space for the given path + * + * @param string $path + * @return array */ - public static function getStorageInfo() { - $rootInfo = \OC\Files\Filesystem::getFileInfo('/'); + public static function getStorageInfo($path) { + $rootInfo = \OC\Files\Filesystem::getFileInfo($path); $used = $rootInfo['size']; if ($used < 0) { $used = 0; } - $free = \OC\Files\Filesystem::free_space(); + $free = \OC\Files\Filesystem::free_space($path); if ($free >= 0) { $total = $free + $used; } else { diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index 83e70585e3..166455e652 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -1,5 +1,7 @@ "L'aplicació \"%s\" no es pot instal·lar perquè no és compatible amb aquesta versió d'ownCloud.", +"No app name specified" => "No heu especificat cap nom d'aplicació", "Help" => "Ajuda", "Personal" => "Personal", "Settings" => "Configuració", @@ -13,6 +15,18 @@ $TRANSLATIONS = array( "Back to Files" => "Torna a Fitxers", "Selected files too large to generate zip file." => "Els fitxers seleccionats son massa grans per generar un fitxer zip.", "Download the files in smaller chunks, seperately or kindly ask your administrator." => "Baixeu els fitxers en trossos petits, de forma separada, o pregunteu a l'administrador.", +"No source specified when installing app" => "No heu especificat la font en instal·lar l'aplicació", +"No href specified when installing app from http" => "No heu especificat href en instal·lar l'aplicació des de http", +"No path specified when installing app from local file" => "No heu seleccionat el camí en instal·lar una aplicació des d'un fitxer local", +"Archives of type %s are not supported" => "Els fitxers del tipus %s no són compatibles", +"Failed to open archive when installing app" => "Ha fallat l'obertura del fitxer en instal·lar l'aplicació", +"App does not provide an info.xml file" => "L'aplicació no proporciona un fitxer info.xml", +"App can't be installed because of not allowed code in the App" => "L'aplicació no es pot instal·lar perquè hi ha codi no autoritzat en l'aplicació", +"App can't be installed because it is not compatible with this version of ownCloud" => "L'aplicació no es pot instal·lar perquè no és compatible amb aquesta versió d'ownCloud", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "L'aplicació no es pot instal·lar perquè conté l'etiqueta vertader que no es permet per aplicacions no enviades", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "L'aplicació no es pot instal·lar perquè la versió a info.xml/version no és la mateixa que la versió indicada des de la botiga d'aplicacions", +"App directory already exists" => "La carpeta de l'aplicació ja existeix", +"Can't create app folder. Please fix permissions. %s" => "No es pot crear la carpeta de l'aplicació. Arregleu els permisos. %s", "Application is not enabled" => "L'aplicació no està habilitada", "Authentication error" => "Error d'autenticació", "Token expired. Please reload page." => "El testimoni ha expirat. Torneu a carregar la pàgina.", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 01fe5ee058..8670e1175c 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -1,5 +1,7 @@ "Applikation \"%s\" kann nicht installiert werden, da sie mit dieser ownCloud Version nicht kompatibel ist.", +"No app name specified" => "Es wurde kein App-Name angegeben", "Help" => "Hilfe", "Personal" => "Persönlich", "Settings" => "Einstellungen", @@ -13,6 +15,15 @@ $TRANSLATIONS = array( "Back to Files" => "Zurück zu \"Dateien\"", "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen.", "Download the files in smaller chunks, seperately or kindly ask your administrator." => "Lade die Dateien in kleineren, separaten, Stücken herunter oder bitte deinen Administrator.", +"No source specified when installing app" => "Für die Installation der Applikation wurde keine Quelle angegeben", +"No href specified when installing app from http" => "href wurde nicht angegeben um die Applikation per http zu installieren", +"No path specified when installing app from local file" => "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben", +"Archives of type %s are not supported" => "Archive vom Typ %s werden nicht unterstützt", +"Failed to open archive when installing app" => "Das Archive konnte bei der Installation der Applikation nicht geöffnet werden", +"App does not provide an info.xml file" => "Die Applikation enthält keine info,xml Datei", +"App can't be installed because of not allowed code in the App" => "Die Applikation kann auf Grund von unerlaubten Code nicht installiert werden", +"App directory already exists" => "Das Applikationsverzeichnis existiert bereits", +"Can't create app folder. Please fix permissions. %s" => "Es kann kein Applikationsordner erstellt werden. Bitte passen sie die Berechtigungen an. %s", "Application is not enabled" => "Die Anwendung ist nicht aktiviert", "Authentication error" => "Fehler bei der Anmeldung", "Token expired. Please reload page." => "Token abgelaufen. Bitte lade die Seite neu.", diff --git a/lib/l10n/de_CH.php b/lib/l10n/de_CH.php index 188ea4e2fc..33f3446a69 100644 --- a/lib/l10n/de_CH.php +++ b/lib/l10n/de_CH.php @@ -1,5 +1,7 @@ "Anwendung \"%s\" kann nicht installiert werden, da sie mit dieser Version von ownCloud nicht kompatibel ist.", +"No app name specified" => "Kein App-Name spezifiziert", "Help" => "Hilfe", "Personal" => "Persönlich", "Settings" => "Einstellungen", @@ -13,6 +15,8 @@ $TRANSLATIONS = array( "Back to Files" => "Zurück zu \"Dateien\"", "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen.", "Download the files in smaller chunks, seperately or kindly ask your administrator." => "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator.", +"App can't be installed because of not allowed code in the App" => "Anwendung kann wegen nicht erlaubten Codes nicht installiert werden", +"App directory already exists" => "Anwendungsverzeichnis existiert bereits", "Application is not enabled" => "Die Anwendung ist nicht aktiviert", "Authentication error" => "Authentifizierungs-Fehler", "Token expired. Please reload page." => "Token abgelaufen. Bitte laden Sie die Seite neu.", @@ -40,13 +44,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", "seconds ago" => "Gerade eben", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("","Vor %n Minuten"), +"_%n hour ago_::_%n hours ago_" => array("","Vor %n Stunden"), "today" => "Heute", "yesterday" => "Gestern", -"_%n day go_::_%n days ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("","Vor %n Tagen"), "last month" => "Letzten Monat", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","Vor %n Monaten"), "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Caused by:" => "Verursacht durch:", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 9fd319b7e1..eafd76b7ee 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -13,6 +13,10 @@ $TRANSLATIONS = array( "Back to Files" => "Zurück zu \"Dateien\"", "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen.", "Download the files in smaller chunks, seperately or kindly ask your administrator." => "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator.", +"Archives of type %s are not supported" => "Archive des Typs %s werden nicht unterstützt.", +"App can't be installed because it is not compatible with this version of ownCloud" => "Die Anwendung konnte nicht installiert werden, weil Sie nicht mit dieser Version von ownCloud kompatibel ist.", +"App directory already exists" => "Der Ordner für die Anwendung existiert bereits.", +"Can't create app folder. Please fix permissions. %s" => "Der Ordner für die Anwendung konnte nicht angelegt werden. Bitte überprüfen Sie die Ordner- und Dateirechte und passen Sie diese entsprechend an. %s", "Application is not enabled" => "Die Anwendung ist nicht aktiviert", "Authentication error" => "Authentifizierungs-Fehler", "Token expired. Please reload page." => "Token abgelaufen. Bitte laden Sie die Seite neu.", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index a2ac6bcabc..8e3aa55c4e 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -1,5 +1,7 @@ "Rakendit \"%s\" ei saa paigaldada, kuna see pole ühilduv selle ownCloud versiooniga.", +"No app name specified" => "Ühegi rakendi nime pole määratletud", "Help" => "Abiinfo", "Personal" => "Isiklik", "Settings" => "Seaded", @@ -13,6 +15,18 @@ $TRANSLATIONS = array( "Back to Files" => "Tagasi failide juurde", "Selected files too large to generate zip file." => "Valitud failid on ZIP-faili loomiseks liiga suured.", "Download the files in smaller chunks, seperately or kindly ask your administrator." => "Laadi failid alla eraldi väiksemate osadena või küsi nõu oma süsteemiadminstraatorilt.", +"No source specified when installing app" => "Ühegi lähteallikat pole rakendi paigalduseks määratletud", +"No href specified when installing app from http" => "Ühtegi aadressi pole määratletud rakendi paigalduseks veebist", +"No path specified when installing app from local file" => "Ühtegi teed pole määratletud paigaldamaks rakendit kohalikust failist", +"Archives of type %s are not supported" => "%s tüüpi arhiivid pole toetatud", +"Failed to open archive when installing app" => "Arhiivi avamine ebaõnnestus rakendi paigalduse käigus", +"App does not provide an info.xml file" => "Rakend ei paku ühtegi info.xml faili", +"App can't be installed because of not allowed code in the App" => "Rakendit ei saa paigaldada, kuna sisaldab lubamatud koodi", +"App can't be installed because it is not compatible with this version of ownCloud" => "Rakendit ei saa paigaldada, kuna see pole ühilduv selle ownCloud versiooniga.", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Rakendit ei saa paigaldada, kuna see sisaldab \n\n\ntrue\n\nmärgendit, mis pole lubatud mitte veetud (non shipped) rakendites", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Rakendit ei saa paigaldada, kuna selle versioon info.xml/version pole sama, mis on märgitud rakendite laos.", +"App directory already exists" => "Rakendi kataloog on juba olemas", +"Can't create app folder. Please fix permissions. %s" => "Ei saa luua rakendi kataloogi. Palun korrigeeri õigusi. %s", "Application is not enabled" => "Rakendus pole sisse lülitatud", "Authentication error" => "Autentimise viga", "Token expired. Please reload page." => "Kontrollkood aegus. Paelun lae leht uuesti.", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 8f967314f4..413819f4f9 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -40,13 +40,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi.", "Please double check the installation guides." => "Mesedez begiratu instalazio gidak.", "seconds ago" => "segundu", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("orain dela minutu %n","orain dela %n minutu"), +"_%n hour ago_::_%n hours ago_" => array("orain dela ordu %n","orain dela %n ordu"), "today" => "gaur", "yesterday" => "atzo", -"_%n day go_::_%n days ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("orain dela egun %n","orain dela %n egun"), "last month" => "joan den hilabetean", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("orain dela hilabete %n","orain dela %n hilabete"), "last year" => "joan den urtean", "years ago" => "urte", "Caused by:" => "Honek eraginda:", diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 4552d4627c..2e69df43ad 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -1,5 +1,6 @@ "Sovellusta \"%s\" ei voi asentaa, koska se ei ole yhteensopiva käytössä olevan ownCloud-version kanssa.", "Help" => "Ohje", "Personal" => "Henkilökohtainen", "Settings" => "Asetukset", @@ -10,6 +11,12 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Tiedostot on ladattava yksittäin.", "Back to Files" => "Takaisin tiedostoihin", "Selected files too large to generate zip file." => "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon.", +"No source specified when installing app" => "Lähdettä ei määritelty sovellusta asennettaessa", +"No path specified when installing app from local file" => "Polkua ei määritelty sovellusta asennettaessa paikallisesta tiedostosta", +"Archives of type %s are not supported" => "Tyypin %s arkistot eivät ole tuettuja", +"App does not provide an info.xml file" => "Sovellus ei sisällä info.xml-tiedostoa", +"App directory already exists" => "Sovelluskansio on jo olemassa", +"Can't create app folder. Please fix permissions. %s" => "Sovelluskansion luominen ei onnistu. Korjaa käyttöoikeudet. %s", "Application is not enabled" => "Sovellusta ei ole otettu käyttöön", "Authentication error" => "Tunnistautumisvirhe", "Token expired. Please reload page." => "Valtuutus vanheni. Lataa sivu uudelleen.", diff --git a/lib/l10n/it.php b/lib/l10n/it.php index e734fbdbb9..983152a14c 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -40,13 +40,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata.", "Please double check the installation guides." => "Leggi attentamente le guide d'installazione.", "seconds ago" => "secondi fa", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("%n minuto fa","%n minuti fa"), +"_%n hour ago_::_%n hours ago_" => array("%n ora fa","%n ore fa"), "today" => "oggi", "yesterday" => "ieri", -"_%n day go_::_%n days ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("%n giorno fa","%n giorni fa"), "last month" => "mese scorso", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("%n mese fa","%n mesi fa"), "last year" => "anno scorso", "years ago" => "anni fa", "Caused by:" => "Causato da:", diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index 4dab8b816b..eec5be65ab 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -1,15 +1,31 @@ "현재 ownCloud 버전과 호환되지 않기 때문에 \"%s\" 앱을 설치할 수 없습니다.", +"No app name specified" => "앱 이름이 지정되지 않았습니다.", "Help" => "도움말", "Personal" => "개인", "Settings" => "설정", "Users" => "사용자", "Admin" => "관리자", +"Failed to upgrade \"%s\"." => "\"%s\" 업그레이드에 실패했습니다.", "web services under your control" => "내가 관리하는 웹 서비스", +"cannot open \"%s\"" => "\"%s\"을(를) 열 수 없습니다.", "ZIP download is turned off." => "ZIP 다운로드가 비활성화되었습니다.", "Files need to be downloaded one by one." => "파일을 개별적으로 다운로드해야 합니다.", "Back to Files" => "파일로 돌아가기", "Selected files too large to generate zip file." => "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다.", +"No source specified when installing app" => "앱을 설치할 때 소스가 지정되지 않았습니다.", +"No href specified when installing app from http" => "http에서 앱을 설치할 대 href가 지정되지 않았습니다.", +"No path specified when installing app from local file" => "로컬 파일에서 앱을 설치할 때 경로가 지정되지 않았습니다.", +"Archives of type %s are not supported" => "%s 타입 아카이브는 지원되지 않습니다.", +"Failed to open archive when installing app" => "앱을 설치할 때 아카이브를 열지 못했습니다.", +"App does not provide an info.xml file" => "앱에서 info.xml 파일이 제공되지 않았습니다.", +"App can't be installed because of not allowed code in the App" => "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다. ", +"App can't be installed because it is not compatible with this version of ownCloud" => "현재 ownCloud 버전과 호환되지 않기 때문에 앱을 설치할 수 없습니다.", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "출하되지 않은 앱에 허용되지 않는 true 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다.", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다. ", +"App directory already exists" => "앱 디렉토리가 이미 존재합니다. ", +"Can't create app folder. Please fix permissions. %s" => "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s ", "Application is not enabled" => "앱이 활성화되지 않았습니다", "Authentication error" => "인증 오류", "Token expired. Please reload page." => "토큰이 만료되었습니다. 페이지를 새로 고치십시오.", @@ -19,22 +35,34 @@ $TRANSLATIONS = array( "%s enter the database username." => "데이터베이스 사용자 명을 %s 에 입력해주십시오", "%s enter the database name." => "데이터베이스 명을 %s 에 입력해주십시오", "%s you may not use dots in the database name" => "%s 에 적으신 데이터베이스 이름에는 점을 사용할수 없습니다", +"MS SQL username and/or password not valid: %s" => "MS SQL 사용자 이름이나 암호가 잘못되었습니다: %s", +"You need to enter either an existing account or the administrator." => "기존 계정이나 administrator(관리자)를 입력해야 합니다.", +"MySQL username and/or password not valid" => "MySQL 사용자 이름이나 암호가 잘못되었습니다.", "DB Error: \"%s\"" => "DB 오류: \"%s\"", +"Offending command was: \"%s\"" => "잘못된 명령: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "MySQL 사용자 '%s'@'localhost'이(가) 이미 존재합니다.", +"Drop this user from MySQL" => "이 사용자를 MySQL에서 뺍니다.", +"MySQL user '%s'@'%%' already exists" => "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다. ", +"Drop this user from MySQL." => "이 사용자를 MySQL에서 뺍니다.", +"Oracle connection could not be established" => "Oracle 연결을 수립할 수 없습니다.", +"Oracle username and/or password not valid" => "Oracle 사용자 이름이나 암호가 잘못되었습니다.", +"Offending command was: \"%s\", name: %s, password: %s" => "잘못된 명령: \"%s\", 이름: %s, 암호: %s", "PostgreSQL username and/or password not valid" => "PostgreSQL의 사용자 명 혹은 비밀번호가 잘못되었습니다", "Set an admin username." => "관리자 이름 설정", "Set an admin password." => "관리자 비밀번호 설정", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다.", "Please double check the installation guides." => "설치 가이드를 다시 한 번 확인하십시오.", "seconds ago" => "초 전", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), +"_%n minute ago_::_%n minutes ago_" => array("%n분 전 "), +"_%n hour ago_::_%n hours ago_" => array("%n시간 전 "), "today" => "오늘", "yesterday" => "어제", -"_%n day go_::_%n days ago_" => array(""), +"_%n day go_::_%n days ago_" => array("%n일 전 "), "last month" => "지난 달", -"_%n month ago_::_%n months ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("%n달 전 "), "last year" => "작년", "years ago" => "년 전", +"Caused by:" => "원인: ", "Could not find category \"%s\"" => "분류 \"%s\"을(를) 찾을 수 없습니다." ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index fb109b8633..242b0a2310 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -17,13 +17,13 @@ $TRANSLATIONS = array( "Text" => "Žinučių", "Images" => "Paveikslėliai", "seconds ago" => "prieš sekundę", -"_%n minute ago_::_%n minutes ago_" => array("","",""), -"_%n hour ago_::_%n hours ago_" => array("","",""), +"_%n minute ago_::_%n minutes ago_" => array("",""," prieš %n minučių"), +"_%n hour ago_::_%n hours ago_" => array("","","prieš %n valandų"), "today" => "šiandien", "yesterday" => "vakar", "_%n day go_::_%n days ago_" => array("","",""), "last month" => "praeitą mėnesį", -"_%n month ago_::_%n months ago_" => array("","",""), +"_%n month ago_::_%n months ago_" => array("","","prieš %n mėnesių"), "last year" => "praeitais metais", "years ago" => "prieš metus" ); diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 338c3673c5..e546c1f317 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -1,5 +1,6 @@ "De app naam is niet gespecificeerd.", "Help" => "Help", "Personal" => "Persoonlijk", "Settings" => "Instellingen", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index 5232966717..a2379ca488 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -1,5 +1,7 @@ "O aplicativo \"%s\" não pode ser instalado porque não é compatível com esta versão do ownCloud.", +"No app name specified" => "O nome do aplicativo não foi especificado.", "Help" => "Ajuda", "Personal" => "Pessoal", "Settings" => "Ajustes", @@ -13,6 +15,18 @@ $TRANSLATIONS = array( "Back to Files" => "Voltar para Arquivos", "Selected files too large to generate zip file." => "Arquivos selecionados são muito grandes para gerar arquivo zip.", "Download the files in smaller chunks, seperately or kindly ask your administrator." => "Baixe os arquivos em pedaços menores, separadamente ou solicite educadamente ao seu administrador.", +"No source specified when installing app" => "Nenhuma fonte foi especificada enquanto instalava o aplicativo", +"No href specified when installing app from http" => "Nenhuma href foi especificada enquanto instalava o aplicativo de httml", +"No path specified when installing app from local file" => "Nenhum caminho foi especificado enquanto instalava o aplicativo do arquivo local", +"Archives of type %s are not supported" => "Arquivos do tipo %s não são suportados", +"Failed to open archive when installing app" => "Falha para abrir o arquivo enquanto instalava o aplicativo", +"App does not provide an info.xml file" => "O aplicativo não fornece um arquivo info.xml", +"App can't be installed because of not allowed code in the App" => "O aplicativo não pode ser instalado por causa do código não permitido no Aplivativo", +"App can't be installed because it is not compatible with this version of ownCloud" => "O aplicativo não pode ser instalado porque não é compatível com esta versão do ownCloud", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "O aplicativo não pode ser instalado porque ele contém a marca verdadeiro que não é permitido para aplicações não embarcadas", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "O aplicativo não pode ser instalado porque a versão em info.xml /versão não é a mesma que a versão relatada na App Store", +"App directory already exists" => "Diretório App já existe", +"Can't create app folder. Please fix permissions. %s" => "Não é possível criar pasta app. Corrija as permissões. %s", "Application is not enabled" => "Aplicação não está habilitada", "Authentication error" => "Erro de autenticação", "Token expired. Please reload page." => "Token expirou. Por favor recarregue a página.", diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 498469ea8b..b63c37c724 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -1,5 +1,7 @@ "Owncloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz.", +"No app name specified" => "Uygulama adı belirtimedli", "Help" => "Yardım", "Personal" => "Kişisel", "Settings" => "Ayarlar", @@ -13,6 +15,18 @@ $TRANSLATIONS = array( "Back to Files" => "Dosyalara dön", "Selected files too large to generate zip file." => "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür.", "Download the files in smaller chunks, seperately or kindly ask your administrator." => "Dosyaları ayrı ayrı, küçük parçalar halinde indirin ya da yöneticinizden yardım isteyin. ", +"No source specified when installing app" => "Uygulama kurulurken bir kaynak belirtilmedi", +"No href specified when installing app from http" => "Uygulama kuruluyorken http'de href belirtilmedi.", +"No path specified when installing app from local file" => "Uygulama yerel dosyadan kuruluyorken dosya yolu belirtilmedi", +"Archives of type %s are not supported" => "%s arşiv tipi desteklenmiyor", +"Failed to open archive when installing app" => "Uygulama kuruluyorken arşiv dosyası açılamadı", +"App does not provide an info.xml file" => "Uygulama info.xml dosyası sağlamıyor", +"App can't be installed because of not allowed code in the App" => "Uygulamada izin verilmeyeden kodlar olduğu için kurulamıyor.", +"App can't be installed because it is not compatible with this version of ownCloud" => "Owncloud versiyonunuz ile uyumsuz olduğu için uygulama kurulamıyor.", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Uygulama kurulamıyor. Çünkü \"non shipped\" uygulamalar için true tag içermektedir.", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Uygulama kurulamıyor çünkü info.xml/version ile uygulama marketde belirtilen sürüm aynı değil.", +"App directory already exists" => "App dizini zaten mevcut", +"Can't create app folder. Please fix permissions. %s" => "app dizini oluşturulamıyor. Lütfen izinleri düzeltin. %s", "Application is not enabled" => "Uygulama etkinleştirilmedi", "Authentication error" => "Kimlik doğrulama hatası", "Token expired. Please reload page." => "Jetonun süresi geçti. Lütfen sayfayı yenileyin.", diff --git a/lib/l10n/ug.php b/lib/l10n/ug.php index 731ad904d7..e2cf38ecc8 100644 --- a/lib/l10n/ug.php +++ b/lib/l10n/ug.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Files" => "ھۆججەتلەر", "Text" => "قىسقا ئۇچۇر", "Images" => "سۈرەتلەر", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "سىزنىڭ تور مۇلازىمېتىرىڭىز ھۆججەت قەدەمداشلاشقا يول قويىدىغان قىلىپ توغرا تەڭشەلمەپتۇ، چۈنكى WebDAV نىڭ ئېغىزى بۇزۇلغاندەك تۇرىدۇ.", "_%n minute ago_::_%n minutes ago_" => array(""), "_%n hour ago_::_%n hours ago_" => array(""), "today" => "بۈگۈن", diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php deleted file mode 100644 index bc81ff8fe1..0000000000 --- a/lib/l10n/zh_CN.GB2312.php +++ /dev/null @@ -1,32 +0,0 @@ - "帮助", -"Personal" => "私人", -"Settings" => "设置", -"Users" => "用户", -"Admin" => "管理员", -"web services under your control" => "您控制的网络服务", -"ZIP download is turned off." => "ZIP 下载已关闭", -"Files need to be downloaded one by one." => "需要逐个下载文件。", -"Back to Files" => "返回到文件", -"Selected files too large to generate zip file." => "选择的文件太大而不能生成 zip 文件。", -"Application is not enabled" => "应用未启用", -"Authentication error" => "验证错误", -"Token expired. Please reload page." => "会话过期。请刷新页面。", -"Files" => "文件", -"Text" => "文本", -"Images" => "图片", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。", -"Please double check the installation guides." => "请双击安装向导。", -"seconds ago" => "秒前", -"_%n minute ago_::_%n minutes ago_" => array("%n 分钟以前"), -"_%n hour ago_::_%n hours ago_" => array("%n 小时以前"), -"today" => "今天", -"yesterday" => "昨天", -"_%n day go_::_%n days ago_" => array("%n 天以前"), -"last month" => "上个月", -"_%n month ago_::_%n months ago_" => array("%n 个月以前"), -"last year" => "去年", -"years ago" => "年前" -); -$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index 03bd48de74..2c34356ea1 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "需要逐一下载文件", "Back to Files" => "回到文件", "Selected files too large to generate zip file." => "选择的文件太大,无法生成 zip 文件。", +"App does not provide an info.xml file" => "应用未提供 info.xml 文件", "Application is not enabled" => "应用程序未启用", "Authentication error" => "认证出错", "Token expired. Please reload page." => "Token 过期,请刷新页面。", @@ -38,12 +39,12 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "请认真检查安装指南.", "seconds ago" => "秒前", "_%n minute ago_::_%n minutes ago_" => array("%n 分钟前"), -"_%n hour ago_::_%n hours ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array("%n 小时前"), "today" => "今天", "yesterday" => "昨天", -"_%n day go_::_%n days ago_" => array(""), +"_%n day go_::_%n days ago_" => array("%n 天前"), "last month" => "上月", -"_%n month ago_::_%n months ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("%n 月前"), "last year" => "去年", "years ago" => "年前", "Could not find category \"%s\"" => "无法找到分类 \"%s\"" diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index f405eb88ae..210c766aa5 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -1,15 +1,32 @@ "無法安裝應用程式 %s 因為它和此版本的 ownCloud 不相容。", +"No app name specified" => "沒有指定應用程式名稱", "Help" => "說明", "Personal" => "個人", "Settings" => "設定", "Users" => "使用者", "Admin" => "管理", +"Failed to upgrade \"%s\"." => "升級失敗:%s", "web services under your control" => "由您控制的網路服務", +"cannot open \"%s\"" => "無法開啓 %s", "ZIP download is turned off." => "ZIP 下載已關閉。", "Files need to be downloaded one by one." => "檔案需要逐一下載。", "Back to Files" => "回到檔案列表", "Selected files too large to generate zip file." => "選擇的檔案太大以致於無法產生壓縮檔。", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "以小分割下載您的檔案,請詢問您的系統管理員。", +"No source specified when installing app" => "沒有指定應用程式安裝來源", +"No href specified when installing app from http" => "從 http 安裝應用程式,找不到 href 屬性", +"No path specified when installing app from local file" => "從本地檔案安裝應用程式時沒有指定路徑", +"Archives of type %s are not supported" => "不支援 %s 格式的壓縮檔", +"Failed to open archive when installing app" => "安裝應用程式時無法開啓壓縮檔", +"App does not provide an info.xml file" => "應用程式沒有提供 info.xml 檔案", +"App can't be installed because of not allowed code in the App" => "無法安裝應用程式因為在當中找到危險的代碼", +"App can't be installed because it is not compatible with this version of ownCloud" => "無法安裝應用程式因為它和此版本的 ownCloud 不相容。", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "無法安裝應用程式,因為它包含了 true 標籤,在未發行的應用程式當中這是不允許的", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "無法安裝應用程式,因為它在 info.xml/version 宣告的版本與 app store 當中記載的版本不同", +"App directory already exists" => "應用程式目錄已經存在", +"Can't create app folder. Please fix permissions. %s" => "無法建立應用程式目錄,請檢查權限:%s", "Application is not enabled" => "應用程式未啟用", "Authentication error" => "認證錯誤", "Token expired. Please reload page." => "Token 過期,請重新整理頁面。", @@ -37,15 +54,16 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。", "Please double check the installation guides." => "請參考安裝指南。", "seconds ago" => "幾秒前", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), +"_%n minute ago_::_%n minutes ago_" => array("%n 分鐘前"), +"_%n hour ago_::_%n hours ago_" => array("%n 小時前"), "today" => "今天", "yesterday" => "昨天", -"_%n day go_::_%n days ago_" => array(""), +"_%n day go_::_%n days ago_" => array("%n 天前"), "last month" => "上個月", -"_%n month ago_::_%n months ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("%n 個月前"), "last year" => "去年", "years ago" => "幾年前", +"Caused by:" => "原因:", "Could not find category \"%s\"" => "找不到分類:\"%s\"" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/ocs/cloud.php b/lib/ocs/cloud.php index 132d923d96..2dd9931905 100644 --- a/lib/ocs/cloud.php +++ b/lib/ocs/cloud.php @@ -35,13 +35,49 @@ class OC_OCS_Cloud { 'edition' => OC_Util::getEditionString(), ); - $result['capabilities'] = array( - 'core' => array( - 'pollinterval' => OC_Config::getValue('pollinterval', 60), - ), - ); + $result['capabilities'] = array( + 'core' => array( + 'pollinterval' => OC_Config::getValue('pollinterval', 60), + ), + ); + return new OC_OCS_Result($result); } + + /** + * gets user info + * + * exposes the quota of an user: + * + * + * 1234 + * 4321 + * 5555 + * 0.78 + * + * + * + * @param $parameters object should contain parameter 'userid' which identifies + * the user from whom the information will be returned + */ + public static function getUser($parameters) { + // Check if they are viewing information on themselves + if($parameters['userid'] === OC_User::getUser()) { + // Self lookup + $quota = array(); + $storage = OC_Helper::getStorageInfo(); + $quota = array( + 'free' => $storage['free'], + 'used' => $storage['used'], + 'total' => $storage['total'], + 'relative' => $storage['relative'], + ); + return new OC_OCS_Result(array('quota' => $quota)); + } else { + // No permission to view this user data + return new OC_OCS_Result(null, 997); + } + } public static function getUserPublickey($parameters) { diff --git a/ocs/routes.php b/ocs/routes.php index 1ea698c7a8..283c9af692 100644 --- a/ocs/routes.php +++ b/ocs/routes.php @@ -28,7 +28,7 @@ OC_API::register( array('OC_OCS_Activity', 'activityGet'), 'core', OC_API::USER_AUTH - ); + ); // Privatedata OC_API::register( 'get', @@ -75,3 +75,10 @@ OC_API::register( 'core', OC_API::USER_AUTH ); +OC_API::register( + 'get', + '/cloud/users/{userid}', + array('OC_OCS_Cloud', 'getUser'), + 'core', + OC_API::USER_AUTH + ); diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index d409904ebc..47ceb5ab87 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -8,7 +8,7 @@ OC_JSON::checkLoggedIn(); OC_APP::loadApps(); $username = isset($_POST['username']) ? $_POST['username'] : OC_User::getUser(); -$password = isset($_POST['password']) ? $_POST['password'] : null; +$password = isset($_POST['personal-password']) ? $_POST['personal-password'] : null; $oldPassword = isset($_POST['oldpassword']) ? $_POST['oldpassword'] : ''; $recoveryPassword = isset($_POST['recoveryPassword']) ? $_POST['recoveryPassword'] : null; diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 97fcc6fd18..378bd8dd91 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -5,7 +5,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "تعذر تغيير اسم الحساب", "Group already exists" => "المجموعة موجودة مسبقاً", "Unable to add group" => "فشل إضافة المجموعة", -"Could not enable app. " => "فشل عملية تفعيل التطبيق", "Email saved" => "تم حفظ البريد الإلكتروني", "Invalid email" => "البريد الإلكتروني غير صالح", "Unable to delete group" => "فشل إزالة المجموعة", @@ -20,9 +19,10 @@ $TRANSLATIONS = array( "Disable" => "إيقاف", "Enable" => "تفعيل", "Please wait...." => "الرجاء الانتظار ...", -"Error" => "خطأ", "Updating...." => "جاري التحديث ...", "Error while updating app" => "حصل خطأ أثناء تحديث التطبيق", +"Error" => "خطأ", +"Update" => "حدث", "Updated" => "تم التحديث بنجاح", "Saving..." => "جاري الحفظ...", "deleted" => "تم الحذف", @@ -67,7 +67,6 @@ $TRANSLATIONS = array( "Select an App" => "إختر تطبيقاً", "See application page at apps.owncloud.com" => "راجع صفحة التطبيق على apps.owncloud.com", "-licensed by " => "-ترخيص من قبل ", -"Update" => "حدث", "User Documentation" => "كتاب توثيق المستخدم", "Administrator Documentation" => "كتاب توثيق المدير", "Online Documentation" => "توثيق متوفر على الشبكة", diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 717cf6baae..a15dfa19e4 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -13,8 +13,9 @@ $TRANSLATIONS = array( "Disable" => "Изключено", "Enable" => "Включено", "Please wait...." => "Моля почакайте....", -"Error" => "Грешка", "Updating...." => "Обновява се...", +"Error" => "Грешка", +"Update" => "Обновяване", "Updated" => "Обновено", "Saving..." => "Записване...", "deleted" => "изтрито", @@ -32,7 +33,6 @@ $TRANSLATIONS = array( "Add your App" => "Добавете Ваше приложение", "More Apps" => "Още приложения", "Select an App" => "Изберете приложение", -"Update" => "Обновяване", "User Documentation" => "Потребителска документация", "Administrator Documentation" => "Административна документация", "Online Documentation" => "Документация", diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index 6145c187ce..55528b71cf 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Authentication error" => "অনুমোদন ঘটিত সমস্যা", "Group already exists" => "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান", "Unable to add group" => "গোষ্ঠী যোগ করা সম্ভব হলো না", -"Could not enable app. " => "অ্যপটি সক্রিয় করতে সক্ষম নয়।", "Email saved" => "ই-মেইল সংরক্ষন করা হয়েছে", "Invalid email" => "ই-মেইলটি সঠিক নয়", "Unable to delete group" => "গোষ্ঠী মুছে ফেলা সম্ভব হলো না ", @@ -17,6 +16,7 @@ $TRANSLATIONS = array( "Disable" => "নিষ্ক্রিয়", "Enable" => "সক্রিয় ", "Error" => "সমস্যা", +"Update" => "পরিবর্ধন", "Saving..." => "সংরক্ষণ করা হচ্ছে..", "undo" => "ক্রিয়া প্রত্যাহার", "Groups" => "গোষ্ঠীসমূহ", @@ -33,7 +33,6 @@ $TRANSLATIONS = array( "Select an App" => "অ্যাপ নির্বাচন করুন", "See application page at apps.owncloud.com" => "apps.owncloud.com এ অ্যাপ্লিকেসন পৃষ্ঠা দেখুন", "-licensed by " => "-লাইসেন্সধারী ", -"Update" => "পরিবর্ধন", "User Documentation" => "ব্যবহারকারী সহায়িকা", "Administrator Documentation" => "প্রশাসক সহায়িকা", "Online Documentation" => "অনলাইন সহায়িকা", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index ab7004c2d3..6de7d4518c 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "No s'ha pogut canviar el nom a mostrar", "Group already exists" => "El grup ja existeix", "Unable to add group" => "No es pot afegir el grup", -"Could not enable app. " => "No s'ha pogut activar l'apliació", "Email saved" => "S'ha desat el correu electrònic", "Invalid email" => "El correu electrònic no és vàlid", "Unable to delete group" => "No es pot eliminar el grup", @@ -21,9 +20,12 @@ $TRANSLATIONS = array( "Disable" => "Desactiva", "Enable" => "Habilita", "Please wait...." => "Espereu...", -"Error" => "Error", +"Error while disabling app" => "Error en desactivar l'aplicació", +"Error while enabling app" => "Error en activar l'aplicació", "Updating...." => "Actualitzant...", "Error while updating app" => "Error en actualitzar l'aplicació", +"Error" => "Error", +"Update" => "Actualitza", "Updated" => "Actualitzada", "Decrypting files... Please wait, this can take some time." => "Desencriptant fitxers... Espereu, això pot trigar una estona.", "Saving..." => "Desant...", @@ -79,7 +81,6 @@ $TRANSLATIONS = array( "Select an App" => "Seleccioneu una aplicació", "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", "-licensed by " => "-propietat de ", -"Update" => "Actualitza", "User Documentation" => "Documentació d'usuari", "Administrator Documentation" => "Documentació d'administrador", "Online Documentation" => "Documentació en línia", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 99be4b73b0..a6288e471f 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Nelze změnit zobrazované jméno", "Group already exists" => "Skupina již existuje", "Unable to add group" => "Nelze přidat skupinu", -"Could not enable app. " => "Nelze povolit aplikaci.", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", "Unable to delete group" => "Nelze smazat skupinu", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Zakázat", "Enable" => "Povolit", "Please wait...." => "Čekejte prosím...", -"Error" => "Chyba", "Updating...." => "Aktualizuji...", "Error while updating app" => "Chyba při aktualizaci aplikace", +"Error" => "Chyba", +"Update" => "Aktualizovat", "Updated" => "Aktualizováno", "Decrypting files... Please wait, this can take some time." => "Probíhá odšifrování souborů... Prosíme počkejte, tato operace může trvat několik minut.", "Saving..." => "Ukládám...", @@ -79,7 +79,6 @@ $TRANSLATIONS = array( "Select an App" => "Vyberte aplikaci", "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", "-licensed by " => "-licencováno ", -"Update" => "Aktualizovat", "User Documentation" => "Uživatelská dokumentace", "Administrator Documentation" => "Dokumentace správce", "Online Documentation" => "Online dokumentace", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 2d549ed86b..b34625f75e 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Kunne ikke skifte skærmnavn", "Group already exists" => "Gruppen findes allerede", "Unable to add group" => "Gruppen kan ikke oprettes", -"Could not enable app. " => "Applikationen kunne ikke aktiveres.", "Email saved" => "Email adresse gemt", "Invalid email" => "Ugyldig email adresse", "Unable to delete group" => "Gruppen kan ikke slettes", @@ -21,9 +20,12 @@ $TRANSLATIONS = array( "Disable" => "Deaktiver", "Enable" => "Aktiver", "Please wait...." => "Vent venligst...", -"Error" => "Fejl", +"Error while disabling app" => "Kunne ikke deaktivere app", +"Error while enabling app" => "Kunne ikke aktivere app", "Updating...." => "Opdaterer....", "Error while updating app" => "Der opstod en fejl under app opgraderingen", +"Error" => "Fejl", +"Update" => "Opdater", "Updated" => "Opdateret", "Decrypting files... Please wait, this can take some time." => "Dekryptere filer... Vent venligst, dette kan tage lang tid. ", "Saving..." => "Gemmer...", @@ -79,7 +81,6 @@ $TRANSLATIONS = array( "Select an App" => "Vælg en App", "See application page at apps.owncloud.com" => "Se applikationens side på apps.owncloud.com", "-licensed by " => "-licenseret af ", -"Update" => "Opdater", "User Documentation" => "Brugerdokumentation", "Administrator Documentation" => "Administrator Dokumentation", "Online Documentation" => "Online dokumentation", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 110eaaf52d..2c30e51017 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Das Ändern des Anzeigenamens ist nicht möglich", "Group already exists" => "Gruppe existiert bereits", "Unable to add group" => "Gruppe konnte nicht angelegt werden", -"Could not enable app. " => "App konnte nicht aktiviert werden.", "Email saved" => "E-Mail Adresse gespeichert", "Invalid email" => "Ungültige E-Mail Adresse", "Unable to delete group" => "Gruppe konnte nicht gelöscht werden", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Deaktivieren", "Enable" => "Aktivieren", "Please wait...." => "Bitte warten...", -"Error" => "Fehler", "Updating...." => "Aktualisierung...", "Error while updating app" => "Fehler beim Aktualisieren der App", +"Error" => "Fehler", +"Update" => "Aktualisierung durchführen", "Updated" => "Aktualisiert", "Decrypting files... Please wait, this can take some time." => "Entschlüssle Dateien ... Bitte warten, denn dieser Vorgang kann einige Zeit beanspruchen.", "Saving..." => "Speichern...", @@ -79,7 +79,6 @@ $TRANSLATIONS = array( "Select an App" => "Wähle eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen findest Du auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", -"Update" => "Aktualisierung durchführen", "User Documentation" => "Dokumentation für Benutzer", "Administrator Documentation" => "Dokumentation für Administratoren", "Online Documentation" => "Online-Dokumentation", diff --git a/settings/l10n/de_CH.php b/settings/l10n/de_CH.php index b4c6f98edc..45650a3b44 100644 --- a/settings/l10n/de_CH.php +++ b/settings/l10n/de_CH.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Das Ändern des Anzeigenamens ist nicht möglich", "Group already exists" => "Die Gruppe existiert bereits", "Unable to add group" => "Die Gruppe konnte nicht angelegt werden", -"Could not enable app. " => "Die Anwendung konnte nicht aktiviert werden.", "Email saved" => "E-Mail-Adresse gespeichert", "Invalid email" => "Ungültige E-Mail-Adresse", "Unable to delete group" => "Die Gruppe konnte nicht gelöscht werden", @@ -21,10 +20,14 @@ $TRANSLATIONS = array( "Disable" => "Deaktivieren", "Enable" => "Aktivieren", "Please wait...." => "Bitte warten....", -"Error" => "Fehler", +"Error while disabling app" => "Fehler während der Deaktivierung der Anwendung", +"Error while enabling app" => "Fehler während der Aktivierung der Anwendung", "Updating...." => "Update...", "Error while updating app" => "Es ist ein Fehler während des Updates aufgetreten", +"Error" => "Fehler", +"Update" => "Update durchführen", "Updated" => "Aktualisiert", +"Decrypting files... Please wait, this can take some time." => "Entschlüssel Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen.", "Saving..." => "Speichern...", "deleted" => "gelöscht", "undo" => "rückgängig machen", @@ -78,7 +81,6 @@ $TRANSLATIONS = array( "Select an App" => "Wählen Sie eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", -"Update" => "Update durchführen", "User Documentation" => "Dokumentation für Benutzer", "Administrator Documentation" => "Dokumentation für Administratoren", "Online Documentation" => "Online-Dokumentation", @@ -103,6 +105,9 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Verwenden Sie diese Adresse, um auf ihre Dateien per WebDAV zuzugreifen.", "Encryption" => "Verschlüsselung", +"The encryption app is no longer enabled, decrypt all your file" => "Die Anwendung zur Verschlüsselung ist nicht länger aktiv, all Ihre Dateien werden entschlüsselt. ", +"Log-in password" => "Login-Passwort", +"Decrypt all Files" => "Alle Dateien entschlüsseln", "Login Name" => "Loginname", "Create" => "Erstellen", "Admin Recovery Password" => "Admin-Passwort-Wiederherstellung", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index cbf4e01c6a..c14e5a3606 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Das Ändern des Anzeigenamens ist nicht möglich", "Group already exists" => "Die Gruppe existiert bereits", "Unable to add group" => "Die Gruppe konnte nicht angelegt werden", -"Could not enable app. " => "Die Anwendung konnte nicht aktiviert werden.", "Email saved" => "E-Mail-Adresse gespeichert", "Invalid email" => "Ungültige E-Mail-Adresse", "Unable to delete group" => "Die Gruppe konnte nicht gelöscht werden", @@ -21,9 +20,12 @@ $TRANSLATIONS = array( "Disable" => "Deaktivieren", "Enable" => "Aktivieren", "Please wait...." => "Bitte warten....", -"Error" => "Fehler", +"Error while disabling app" => "Beim deaktivieren der Applikation ist ein Fehler aufgetreten.", +"Error while enabling app" => "Beim aktivieren der Applikation ist ein Fehler aufgetreten.", "Updating...." => "Update...", "Error while updating app" => "Es ist ein Fehler während des Updates aufgetreten", +"Error" => "Fehler", +"Update" => "Update durchführen", "Updated" => "Aktualisiert", "Decrypting files... Please wait, this can take some time." => "Entschlüssle Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen.", "Saving..." => "Speichern...", @@ -39,7 +41,7 @@ $TRANSLATIONS = array( "A valid password must be provided" => "Es muss ein gültiges Passwort angegeben werden", "__language_name__" => "Deutsch (Förmlich: Sie)", "Security Warning" => "Sicherheitshinweis", -"Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis und Ihre Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", +"Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis und Ihre Dateien sind möglicherweise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Setup Warning" => "Einrichtungswarnung", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the installation guides." => "Bitte überprüfen Sie die Instalationsanleitungen.", @@ -48,17 +50,17 @@ $TRANSLATIONS = array( "Locale not working" => "Die Lokalisierung funktioniert nicht", "System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren.", "Internet connection not working" => "Keine Internetverbindung", -"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen.", +"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", "Execute one task with each page loaded" => "Eine Aufgabe bei jedem Laden der Seite ausführen", "cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft.", -"Use systems cron service to call the cron.php file once a minute." => "Benutzen Sie den System-Crondienst um die cron.php minütlich aufzurufen.", +"Use systems cron service to call the cron.php file once a minute." => "Benutzen Sie den System-Crondienst, um die cron.php minütlich aufzurufen.", "Sharing" => "Teilen", "Enable Share API" => "Share-API aktivieren", "Allow apps to use the Share API" => "Anwendungen erlauben, die Share-API zu benutzen", "Allow links" => "Links erlauben", "Allow users to share items to the public with links" => "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen", -"Allow public uploads" => "Erlaube öffentliches hochladen", +"Allow public uploads" => "Öffentliches Hochladen erlauben", "Allow users to enable others to upload into their publicly shared folders" => "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen", "Allow resharing" => "Erlaube Weiterverteilen", "Allow users to share items shared with them again" => "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen", @@ -79,7 +81,6 @@ $TRANSLATIONS = array( "Select an App" => "Wählen Sie eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", -"Update" => "Update durchführen", "User Documentation" => "Dokumentation für Benutzer", "Administrator Documentation" => "Dokumentation für Administratoren", "Online Documentation" => "Online-Dokumentation", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 2c4bdffb74..8daa9ccf8b 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Δεν είναι δυνατή η αλλαγή του ονόματος εμφάνισης", "Group already exists" => "Η ομάδα υπάρχει ήδη", "Unable to add group" => "Αδυναμία προσθήκης ομάδας", -"Could not enable app. " => "Αδυναμία ενεργοποίησης εφαρμογής ", "Email saved" => "Το email αποθηκεύτηκε ", "Invalid email" => "Μη έγκυρο email", "Unable to delete group" => "Αδυναμία διαγραφής ομάδας", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Απενεργοποίηση", "Enable" => "Ενεργοποίηση", "Please wait...." => "Παρακαλώ περιμένετε...", -"Error" => "Σφάλμα", "Updating...." => "Ενημέρωση...", "Error while updating app" => "Σφάλμα κατά την ενημέρωση της εφαρμογής", +"Error" => "Σφάλμα", +"Update" => "Ενημέρωση", "Updated" => "Ενημερώθηκε", "Saving..." => "Γίνεται αποθήκευση...", "deleted" => "διαγράφηκε", @@ -68,7 +68,6 @@ $TRANSLATIONS = array( "Select an App" => "Επιλέξτε μια Εφαρμογή", "See application page at apps.owncloud.com" => "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com", "-licensed by " => "-άδεια από ", -"Update" => "Ενημέρωση", "User Documentation" => "Τεκμηρίωση Χρήστη", "Administrator Documentation" => "Τεκμηρίωση Διαχειριστή", "Online Documentation" => "Τεκμηρίωση στο Διαδίκτυο", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index 693db4710d..6c3adf2ddc 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Authentication error" => "Aŭtentiga eraro", "Group already exists" => "La grupo jam ekzistas", "Unable to add group" => "Ne eblis aldoni la grupon", -"Could not enable app. " => "Ne eblis kapabligi la aplikaĵon.", "Email saved" => "La retpoŝtadreso konserviĝis", "Invalid email" => "Nevalida retpoŝtadreso", "Unable to delete group" => "Ne eblis forigi la grupon", @@ -17,6 +16,7 @@ $TRANSLATIONS = array( "Disable" => "Malkapabligi", "Enable" => "Kapabligi", "Error" => "Eraro", +"Update" => "Ĝisdatigi", "Saving..." => "Konservante...", "deleted" => "forigita", "undo" => "malfari", @@ -47,7 +47,6 @@ $TRANSLATIONS = array( "Select an App" => "Elekti aplikaĵon", "See application page at apps.owncloud.com" => "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com", "-licensed by " => "-permesilhavigita de ", -"Update" => "Ĝisdatigi", "User Documentation" => "Dokumentaro por uzantoj", "Administrator Documentation" => "Dokumentaro por administrantoj", "Online Documentation" => "Reta dokumentaro", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 9f214c5480..4f3099b8c2 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -3,10 +3,9 @@ $TRANSLATIONS = array( "Unable to load list from App Store" => "Imposible cargar la lista desde el App Store", "Authentication error" => "Error de autenticación", "Your display name has been changed." => "Su nombre fue cambiado.", -"Unable to change display name" => "No se pudo cambiar el nombre", +"Unable to change display name" => "No se pudo cambiar el nombre de usuario", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No se pudo añadir el grupo", -"Could not enable app. " => "No puedo habilitar la aplicación.", "Email saved" => "E-mail guardado", "Invalid email" => "Correo no válido", "Unable to delete group" => "No se pudo eliminar el grupo", @@ -21,28 +20,29 @@ $TRANSLATIONS = array( "Disable" => "Desactivar", "Enable" => "Activar", "Please wait...." => "Espere, por favor....", -"Error" => "Error", "Updating...." => "Actualizando....", "Error while updating app" => "Error mientras se actualizaba la aplicación", +"Error" => "Error", +"Update" => "Actualizar", "Updated" => "Actualizado", "Saving..." => "Guardando...", -"deleted" => "borrado", +"deleted" => "Eliminado", "undo" => "deshacer", "Unable to remove user" => "No se puede eliminar el usuario", "Groups" => "Grupos", -"Group Admin" => "Grupo administrador", +"Group Admin" => "Administrador del Grupo", "Delete" => "Eliminar", "add group" => "añadir Grupo", -"A valid username must be provided" => "Se debe usar un nombre de usuario válido", +"A valid username must be provided" => "Se debe proporcionar un nombre de usuario válido", "Error creating user" => "Error al crear usuario", -"A valid password must be provided" => "Se debe usar una contraseña valida", +"A valid password must be provided" => "Se debe proporcionar una contraseña valida", "__language_name__" => "Castellano", "Security Warning" => "Advertencia de seguridad", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Su directorio de datos y sus archivos probablemente están accesibles desde Internet. El archivo .htaccess no está funcionando. Nosotros le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos ya no sea accesible o que mueva el directorio de datos fuera de la raíz de documentos del servidor web.", "Setup Warning" => "Advertencia de configuración", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", "Please double check the installation guides." => "Por favor, vuelva a comprobar las guías de instalación.", -"Module 'fileinfo' missing" => "Modulo 'fileinfo' perdido", +"Module 'fileinfo' missing" => "Módulo 'fileinfo' perdido", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El modulo PHP 'fileinfo' no se encuentra. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección del mime-type", "Locale not working" => "La configuración regional no está funcionando", "System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "La configuración regional del sistema no se puede ajustar a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivo. Le recomendamos instalar los paquetes necesarios en el sistema para soportar % s.", @@ -60,7 +60,7 @@ $TRANSLATIONS = array( "Allow public uploads" => "Permitir subidas públicas", "Allow users to enable others to upload into their publicly shared folders" => "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente", "Allow resharing" => "Permitir re-compartición", -"Allow users to share items shared with them again" => "Permitir a los usuarios compartir elementos ya compartidos con ellos mismos", +"Allow users to share items shared with them again" => "Permitir a los usuarios compartir de nuevo elementos ya compartidos", "Allow users to share with anyone" => "Permitir a los usuarios compartir con todo el mundo", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", "Security" => "Seguridad", @@ -78,7 +78,6 @@ $TRANSLATIONS = array( "Select an App" => "Seleccionar una aplicación", "See application page at apps.owncloud.com" => "Echa un vistazo a la web de aplicaciones apps.owncloud.com", "-licensed by " => "-licenciado por ", -"Update" => "Actualizar", "User Documentation" => "Documentación de usuario", "Administrator Documentation" => "Documentación de adminstrador", "Online Documentation" => "Documentación en linea", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index fdf0f75fe0..f4f50e5949 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "No fue posible cambiar el nombre mostrado", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No fue posible añadir el grupo", -"Could not enable app. " => "No se pudo habilitar la App.", "Email saved" => "e-mail guardado", "Invalid email" => "El e-mail no es válido ", "Unable to delete group" => "No fue posible borrar el grupo", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Desactivar", "Enable" => "Activar", "Please wait...." => "Por favor, esperá....", -"Error" => "Error", "Updating...." => "Actualizando....", "Error while updating app" => "Error al actualizar App", +"Error" => "Error", +"Update" => "Actualizar", "Updated" => "Actualizado", "Saving..." => "Guardando...", "deleted" => "borrado", @@ -70,7 +70,6 @@ $TRANSLATIONS = array( "Select an App" => "Elegí una App", "See application page at apps.owncloud.com" => "Mirá la web de aplicaciones apps.owncloud.com", "-licensed by " => "-licenciado por ", -"Update" => "Actualizar", "User Documentation" => "Documentación de Usuario", "Administrator Documentation" => "Documentación de Administrador", "Online Documentation" => "Documentación en línea", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index a01c939f2d..d779a36cb9 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Ei saa muuta näidatavat nime", "Group already exists" => "Grupp on juba olemas", "Unable to add group" => "Keela grupi lisamine", -"Could not enable app. " => "Rakenduse sisselülitamine ebaõnnestus.", "Email saved" => "Kiri on salvestatud", "Invalid email" => "Vigane e-post", "Unable to delete group" => "Grupi kustutamine ebaõnnestus", @@ -21,9 +20,12 @@ $TRANSLATIONS = array( "Disable" => "Lülita välja", "Enable" => "Lülita sisse", "Please wait...." => "Palun oota...", -"Error" => "Viga", +"Error while disabling app" => "Viga rakendi keelamisel", +"Error while enabling app" => "Viga rakendi lubamisel", "Updating...." => "Uuendamine...", "Error while updating app" => "Viga rakenduse uuendamisel", +"Error" => "Viga", +"Update" => "Uuenda", "Updated" => "Uuendatud", "Decrypting files... Please wait, this can take some time." => "Dekrüpteerin faile... Palun oota, see võib võtta veidi aega.", "Saving..." => "Salvestamine...", @@ -79,7 +81,6 @@ $TRANSLATIONS = array( "Select an App" => "Vali programm", "See application page at apps.owncloud.com" => "Vaata rakenduste lehte aadressil apps.owncloud.com", "-licensed by " => "-litsenseeritud ", -"Update" => "Uuenda", "User Documentation" => "Kasutaja dokumentatsioon", "Administrator Documentation" => "Administraatori dokumentatsioon", "Online Documentation" => "Online dokumentatsioon", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 73ca1338a5..6491c7fc2d 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Ezin izan da bistaratze izena aldatu", "Group already exists" => "Taldea dagoeneko existitzenda", "Unable to add group" => "Ezin izan da taldea gehitu", -"Could not enable app. " => "Ezin izan da aplikazioa gaitu.", "Email saved" => "Eposta gorde da", "Invalid email" => "Baliogabeko eposta", "Unable to delete group" => "Ezin izan da taldea ezabatu", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Ez-gaitu", "Enable" => "Gaitu", "Please wait...." => "Itxoin mesedez...", -"Error" => "Errorea", "Updating...." => "Eguneratzen...", "Error while updating app" => "Errorea aplikazioa eguneratzen zen bitartean", +"Error" => "Errorea", +"Update" => "Eguneratu", "Updated" => "Eguneratuta", "Saving..." => "Gordetzen...", "deleted" => "ezabatuta", @@ -75,7 +75,6 @@ $TRANSLATIONS = array( "Select an App" => "Aukeratu programa bat", "See application page at apps.owncloud.com" => "Ikusi programen orria apps.owncloud.com en", "-licensed by " => "-lizentziatua ", -"Update" => "Eguneratu", "User Documentation" => "Erabiltzaile dokumentazioa", "Administrator Documentation" => "Administradore dokumentazioa", "Online Documentation" => "Online dokumentazioa", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 2fd7923554..74a49b9b05 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "امکان تغییر نام نمایشی شما وجود ندارد", "Group already exists" => "این گروه در حال حاضر موجود است", "Unable to add group" => "افزودن گروه امکان پذیر نیست", -"Could not enable app. " => "برنامه را نمی توان فعال ساخت.", "Email saved" => "ایمیل ذخیره شد", "Invalid email" => "ایمیل غیر قابل قبول", "Unable to delete group" => "حذف گروه امکان پذیر نیست", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "غیرفعال", "Enable" => "فعال", "Please wait...." => "لطفا صبر کنید ...", -"Error" => "خطا", "Updating...." => "در حال بروز رسانی...", "Error while updating app" => "خطا در هنگام بهنگام سازی برنامه", +"Error" => "خطا", +"Update" => "به روز رسانی", "Updated" => "بروز رسانی انجام شد", "Saving..." => "در حال ذخیره سازی...", "deleted" => "حذف شده", @@ -68,7 +68,6 @@ $TRANSLATIONS = array( "Select an App" => "یک برنامه انتخاب کنید", "See application page at apps.owncloud.com" => "صفحه این اٌپ را در apps.owncloud.com ببینید", "-licensed by " => "-مجاز از طرف ", -"Update" => "به روز رسانی", "User Documentation" => "مستندات کاربر", "Administrator Documentation" => "مستندات مدیر", "Online Documentation" => "مستندات آنلاین", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 5e80017d3d..cf2ff5041c 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Näyttönimen muuttaminen epäonnistui", "Group already exists" => "Ryhmä on jo olemassa", "Unable to add group" => "Ryhmän lisäys epäonnistui", -"Could not enable app. " => "Sovelluksen käyttöönotto epäonnistui.", "Email saved" => "Sähköposti tallennettu", "Invalid email" => "Virheellinen sähköposti", "Unable to delete group" => "Ryhmän poisto epäonnistui", @@ -21,9 +20,12 @@ $TRANSLATIONS = array( "Disable" => "Poista käytöstä", "Enable" => "Käytä", "Please wait...." => "Odota hetki...", -"Error" => "Virhe", +"Error while disabling app" => "Virhe poistaessa sovellusta käytöstä", +"Error while enabling app" => "Virhe ottaessa sovellusta käyttöön", "Updating...." => "Päivitetään...", "Error while updating app" => "Virhe sovellusta päivittäessä", +"Error" => "Virhe", +"Update" => "Päivitä", "Updated" => "Päivitetty", "Decrypting files... Please wait, this can take some time." => "Puretaan tiedostojen salausta... Odota, tämä voi kestää jonkin aikaa.", "Saving..." => "Tallennetaan...", @@ -39,6 +41,7 @@ $TRANSLATIONS = array( "A valid password must be provided" => "Anna kelvollinen salasana", "__language_name__" => "_kielen_nimi_", "Security Warning" => "Turvallisuusvaroitus", +"Please double check the installation guides." => "Lue asennusohjeet tarkasti.", "Module 'fileinfo' missing" => "Moduuli 'fileinfo' puuttuu", "Internet connection not working" => "Internet-yhteys ei toimi", "Cron" => "Cron", @@ -53,6 +56,7 @@ $TRANSLATIONS = array( "Allow users to only share with users in their groups" => "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken", "Security" => "Tietoturva", "Enforce HTTPS" => "Pakota HTTPS", +"Forces the clients to connect to %s via an encrypted connection." => "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta.", "Log" => "Loki", "Log level" => "Lokitaso", "More" => "Enemmän", @@ -64,7 +68,6 @@ $TRANSLATIONS = array( "Select an App" => "Valitse sovellus", "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", "-licensed by " => "-lisensoija ", -"Update" => "Päivitä", "User Documentation" => "Käyttäjäohjeistus", "Administrator Documentation" => "Ylläpito-ohjeistus", "Online Documentation" => "Verkko-ohjeistus", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 3e1f5ddb5e..536cac9656 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Impossible de modifier le nom d'affichage", "Group already exists" => "Ce groupe existe déjà", "Unable to add group" => "Impossible d'ajouter le groupe", -"Could not enable app. " => "Impossible d'activer l'Application", "Email saved" => "E-mail sauvegardé", "Invalid email" => "E-mail invalide", "Unable to delete group" => "Impossible de supprimer le groupe", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Désactiver", "Enable" => "Activer", "Please wait...." => "Veuillez patienter…", -"Error" => "Erreur", "Updating...." => "Mise à jour...", "Error while updating app" => "Erreur lors de la mise à jour de l'application", +"Error" => "Erreur", +"Update" => "Mettre à jour", "Updated" => "Mise à jour effectuée avec succès", "Saving..." => "Enregistrement...", "deleted" => "supprimé", @@ -68,7 +68,6 @@ $TRANSLATIONS = array( "Select an App" => "Sélectionner une Application", "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", "-licensed by " => "Distribué sous licence , par ", -"Update" => "Mettre à jour", "User Documentation" => "Documentation utilisateur", "Administrator Documentation" => "Documentation administrateur", "Online Documentation" => "Documentation en ligne", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 10f90c89b1..fb51d793c6 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Non é posíbel cambiar o nome visíbel", "Group already exists" => "O grupo xa existe", "Unable to add group" => "Non é posíbel engadir o grupo", -"Could not enable app. " => "Non é posíbel activar o aplicativo.", "Email saved" => "Correo gardado", "Invalid email" => "Correo incorrecto", "Unable to delete group" => "Non é posíbel eliminar o grupo.", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Desactivar", "Enable" => "Activar", "Please wait...." => "Agarde...", -"Error" => "Erro", "Updating...." => "Actualizando...", "Error while updating app" => "Produciuse un erro mentres actualizaba o aplicativo", +"Error" => "Erro", +"Update" => "Actualizar", "Updated" => "Actualizado", "Decrypting files... Please wait, this can take some time." => "Descifrando ficheiros... isto pode levar un anaco.", "Saving..." => "Gardando...", @@ -79,7 +79,6 @@ $TRANSLATIONS = array( "Select an App" => "Escolla un aplicativo", "See application page at apps.owncloud.com" => "Consulte a páxina do aplicativo en apps.owncloud.com", "-licensed by " => "-licenciado por", -"Update" => "Actualizar", "User Documentation" => "Documentación do usuario", "Administrator Documentation" => "Documentación do administrador", "Online Documentation" => "Documentación na Rede", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index c8ef28a261..5207a05de1 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "לא ניתן לשנות את שם התצוגה", "Group already exists" => "הקבוצה כבר קיימת", "Unable to add group" => "לא ניתן להוסיף קבוצה", -"Could not enable app. " => "לא ניתן להפעיל את היישום", "Email saved" => "הדוא״ל נשמר", "Invalid email" => "דוא״ל לא חוקי", "Unable to delete group" => "לא ניתן למחוק את הקבוצה", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "בטל", "Enable" => "הפעלה", "Please wait...." => "נא להמתין…", -"Error" => "שגיאה", "Updating...." => "מתבצע עדכון…", "Error while updating app" => "אירעה שגיאה בעת עדכון היישום", +"Error" => "שגיאה", +"Update" => "עדכון", "Updated" => "מעודכן", "Saving..." => "שמירה…", "deleted" => "נמחק", @@ -66,7 +66,6 @@ $TRANSLATIONS = array( "Select an App" => "בחירת יישום", "See application page at apps.owncloud.com" => "צפה בעמוד הישום ב apps.owncloud.com", "-licensed by " => "ברישיון לטובת ", -"Update" => "עדכון", "User Documentation" => "תיעוד משתמש", "Administrator Documentation" => "תיעוד מנהלים", "Online Documentation" => "תיעוד מקוון", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 997c699ddb..f5a469e3c2 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Nem sikerült megváltoztatni a megjelenítési nevet", "Group already exists" => "A csoport már létezik", "Unable to add group" => "A csoport nem hozható létre", -"Could not enable app. " => "A program nem aktiválható.", "Email saved" => "Email mentve", "Invalid email" => "Hibás email", "Unable to delete group" => "A csoport nem törölhető", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Letiltás", "Enable" => "engedélyezve", "Please wait...." => "Kérem várjon...", -"Error" => "Hiba", "Updating...." => "Frissítés folyamatban...", "Error while updating app" => "Hiba történt a programfrissítés közben", +"Error" => "Hiba", +"Update" => "Frissítés", "Updated" => "Frissítve", "Saving..." => "Mentés...", "deleted" => "törölve", @@ -78,7 +78,6 @@ $TRANSLATIONS = array( "Select an App" => "Válasszon egy alkalmazást", "See application page at apps.owncloud.com" => "Lásd apps.owncloud.com, alkalmazások oldal", "-licensed by " => "-a jogtuladonos ", -"Update" => "Frissítés", "User Documentation" => "Felhasználói leírás", "Administrator Documentation" => "Üzemeltetői leírás", "Online Documentation" => "Online leírás", diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index 3f61ff8eef..91df05ada3 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Language changed" => "Linguage cambiate", "Invalid request" => "Requesta invalide", "Error" => "Error", +"Update" => "Actualisar", "Groups" => "Gruppos", "Delete" => "Deler", "__language_name__" => "Interlingua", @@ -10,7 +11,6 @@ $TRANSLATIONS = array( "More" => "Plus", "Add your App" => "Adder tu application", "Select an App" => "Selectionar un app", -"Update" => "Actualisar", "Get the apps to sync your files" => "Obtene le apps (applicationes) pro synchronizar tu files", "Password" => "Contrasigno", "Unable to change your password" => "Non pote cambiar tu contrasigno", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index abc19560d3..d64f5be3ac 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -5,7 +5,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Tidak dapat mengubah nama tampilan", "Group already exists" => "Grup sudah ada", "Unable to add group" => "Tidak dapat menambah grup", -"Could not enable app. " => "Tidak dapat mengaktifkan aplikasi.", "Email saved" => "Email disimpan", "Invalid email" => "Email tidak valid", "Unable to delete group" => "Tidak dapat menghapus grup", @@ -20,9 +19,10 @@ $TRANSLATIONS = array( "Disable" => "Nonaktifkan", "Enable" => "aktifkan", "Please wait...." => "Mohon tunggu....", -"Error" => "Galat", "Updating...." => "Memperbarui....", "Error while updating app" => "Gagal ketika memperbarui aplikasi", +"Error" => "Galat", +"Update" => "Perbarui", "Updated" => "Diperbarui", "Saving..." => "Menyimpan...", "deleted" => "dihapus", @@ -67,7 +67,6 @@ $TRANSLATIONS = array( "Select an App" => "Pilih Aplikasi", "See application page at apps.owncloud.com" => "Lihat halaman aplikasi di apps.owncloud.com", "-licensed by " => "-dilisensikan oleh ", -"Update" => "Perbarui", "User Documentation" => "Dokumentasi Pengguna", "Administrator Documentation" => "Dokumentasi Administrator", "Online Documentation" => "Dokumentasi Online", diff --git a/settings/l10n/is.php b/settings/l10n/is.php index f803da8756..ce95903df9 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Authentication error" => "Villa við auðkenningu", "Group already exists" => "Hópur er þegar til", "Unable to add group" => "Ekki tókst að bæta við hóp", -"Could not enable app. " => "Gat ekki virkjað forrit", "Email saved" => "Netfang vistað", "Invalid email" => "Ógilt netfang", "Unable to delete group" => "Ekki tókst að eyða hóp", @@ -17,8 +16,9 @@ $TRANSLATIONS = array( "Disable" => "Gera óvirkt", "Enable" => "Virkja", "Please wait...." => "Andartak....", -"Error" => "Villa", "Updating...." => "Uppfæri...", +"Error" => "Villa", +"Update" => "Uppfæra", "Updated" => "Uppfært", "Saving..." => "Er að vista ...", "deleted" => "eytt", @@ -37,7 +37,6 @@ $TRANSLATIONS = array( "Select an App" => "Veldu forrit", "See application page at apps.owncloud.com" => "Skoða síðu forrits hjá apps.owncloud.com", "-licensed by " => "-leyfi skráð af ", -"Update" => "Uppfæra", "User Documentation" => "Notenda handbók", "Administrator Documentation" => "Stjórnenda handbók", "Online Documentation" => "Handbók á netinu", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 003fc5c7bb..0fda130939 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Impossibile cambiare il nome visualizzato", "Group already exists" => "Il gruppo esiste già", "Unable to add group" => "Impossibile aggiungere il gruppo", -"Could not enable app. " => "Impossibile abilitare l'applicazione.", "Email saved" => "Email salvata", "Invalid email" => "Email non valida", "Unable to delete group" => "Impossibile eliminare il gruppo", @@ -21,10 +20,12 @@ $TRANSLATIONS = array( "Disable" => "Disabilita", "Enable" => "Abilita", "Please wait...." => "Attendere...", -"Error" => "Errore", "Updating...." => "Aggiornamento in corso...", "Error while updating app" => "Errore durante l'aggiornamento", +"Error" => "Errore", +"Update" => "Aggiorna", "Updated" => "Aggiornato", +"Decrypting files... Please wait, this can take some time." => "Decifratura dei file in corso... Attendi, potrebbe richiedere del tempo.", "Saving..." => "Salvataggio in corso...", "deleted" => "eliminati", "undo" => "annulla", @@ -78,7 +79,6 @@ $TRANSLATIONS = array( "Select an App" => "Seleziona un'applicazione", "See application page at apps.owncloud.com" => "Vedere la pagina dell'applicazione su apps.owncloud.com", "-licensed by " => "-licenziato da ", -"Update" => "Aggiorna", "User Documentation" => "Documentazione utente", "Administrator Documentation" => "Documentazione amministratore", "Online Documentation" => "Documentazione in linea", @@ -103,6 +103,9 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Utilizza questo indirizzo per accedere ai tuoi file via WebDAV", "Encryption" => "Cifratura", +"The encryption app is no longer enabled, decrypt all your file" => "L'applicazione di cifratura non è più abilitata, decifra tutti i tuoi file", +"Log-in password" => "Password di accesso", +"Decrypt all Files" => "Decifra tutti i file", "Login Name" => "Nome utente", "Create" => "Crea", "Admin Recovery Password" => "Password di ripristino amministrativa", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 6a090c4e01..8bbdc222e4 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "表示名を変更できません", "Group already exists" => "グループは既に存在しています", "Unable to add group" => "グループを追加できません", -"Could not enable app. " => "アプリを有効にできませんでした。", "Email saved" => "メールアドレスを保存しました", "Invalid email" => "無効なメールアドレス", "Unable to delete group" => "グループを削除できません", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "無効", "Enable" => "有効化", "Please wait...." => "しばらくお待ちください。", -"Error" => "エラー", "Updating...." => "更新中....", "Error while updating app" => "アプリの更新中にエラーが発生", +"Error" => "エラー", +"Update" => "更新", "Updated" => "更新済み", "Decrypting files... Please wait, this can take some time." => "ファイルを複合中... しばらくお待ちください、この処理には少し時間がかかるかもしれません。", "Saving..." => "保存中...", @@ -79,7 +79,6 @@ $TRANSLATIONS = array( "Select an App" => "アプリを選択してください", "See application page at apps.owncloud.com" => "apps.owncloud.com でアプリケーションのページを見てください", "-licensed by " => "-ライセンス: ", -"Update" => "更新", "User Documentation" => "ユーザドキュメント", "Administrator Documentation" => "管理者ドキュメント", "Online Documentation" => "オンラインドキュメント", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 6519f239b8..7a0157746b 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "დისფლეის სახელის შეცვლა ვერ მოხერხდა", "Group already exists" => "ჯგუფი უკვე არსებობს", "Unable to add group" => "ჯგუფის დამატება ვერ მოხერხდა", -"Could not enable app. " => "ვერ მოხერხდა აპლიკაციის ჩართვა.", "Email saved" => "იმეილი შენახულია", "Invalid email" => "არასწორი იმეილი", "Unable to delete group" => "ჯგუფის წაშლა ვერ მოხერხდა", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "გამორთვა", "Enable" => "ჩართვა", "Please wait...." => "დაიცადეთ....", -"Error" => "შეცდომა", "Updating...." => "მიმდინარეობს განახლება....", "Error while updating app" => "შეცდომა აპლიკაციის განახლების დროს", +"Error" => "შეცდომა", +"Update" => "განახლება", "Updated" => "განახლებულია", "Saving..." => "შენახვა...", "deleted" => "წაშლილი", @@ -68,7 +68,6 @@ $TRANSLATIONS = array( "Select an App" => "აირჩიეთ აპლიკაცია", "See application page at apps.owncloud.com" => "ნახეთ აპლიკაციის გვერდი apps.owncloud.com –ზე", "-licensed by " => "-ლიცენსირებულია ", -"Update" => "განახლება", "User Documentation" => "მომხმარებლის დოკუმენტაცია", "Administrator Documentation" => "ადმინისტრატორის დოკუმენტაცია", "Online Documentation" => "ონლაინ დოკუმენტაცია", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 0f8f80537f..5feb1d5694 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "표시 이름을 변경할 수 없음", "Group already exists" => "그룹이 이미 존재함", "Unable to add group" => "그룹을 추가할 수 없음", -"Could not enable app. " => "앱을 활성화할 수 없습니다.", "Email saved" => "이메일 저장됨", "Invalid email" => "잘못된 이메일 주소", "Unable to delete group" => "그룹을 삭제할 수 없음", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "비활성화", "Enable" => "사용함", "Please wait...." => "기다려 주십시오....", -"Error" => "오류", "Updating...." => "업데이트 중....", "Error while updating app" => "앱을 업데이트하는 중 오류 발생", +"Error" => "오류", +"Update" => "업데이트", "Updated" => "업데이트됨", "Saving..." => "저장 중...", "deleted" => "삭제됨", @@ -68,7 +68,6 @@ $TRANSLATIONS = array( "Select an App" => "앱 선택", "See application page at apps.owncloud.com" => "apps.owncloud.com에 있는 앱 페이지를 참고하십시오", "-licensed by " => "-라이선스됨: ", -"Update" => "업데이트", "User Documentation" => "사용자 문서", "Administrator Documentation" => "관리자 문서", "Online Documentation" => "온라인 문서", diff --git a/settings/l10n/ku_IQ.php b/settings/l10n/ku_IQ.php index 956df725a7..4549dcea52 100644 --- a/settings/l10n/ku_IQ.php +++ b/settings/l10n/ku_IQ.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Enable" => "چالاککردن", "Error" => "هه‌ڵه", -"Saving..." => "پاشکه‌وتده‌کات...", "Update" => "نوێکردنه‌وه", +"Saving..." => "پاشکه‌وتده‌کات...", "Password" => "وشەی تێپەربو", "New password" => "وشەی نهێنی نوێ", "Email" => "ئیمه‌یل", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 9d3213b173..b80d834db9 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Unmeiglech den Nickname ze änneren.", "Group already exists" => "Group existeiert schon.", "Unable to add group" => "Onmeiglech Grupp beizefügen.", -"Could not enable app. " => "Kann App net aktiveieren.", "Email saved" => "E-mail gespäichert", "Invalid email" => "Ongülteg e-mail", "Unable to delete group" => "Onmeiglech d'Grup ze läschen.", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 016a4fe647..da0fb8f56b 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Authentication error" => "Autentikacijos klaida", "Group already exists" => "Grupė jau egzistuoja", "Unable to add group" => "Nepavyko pridėti grupės", -"Could not enable app. " => "Nepavyksta įjungti aplikacijos.", "Email saved" => "El. paštas išsaugotas", "Invalid email" => "Netinkamas el. paštas", "Unable to delete group" => "Nepavyko ištrinti grupės", @@ -18,9 +17,10 @@ $TRANSLATIONS = array( "Disable" => "Išjungti", "Enable" => "Įjungti", "Please wait...." => "Prašome palaukti...", -"Error" => "Klaida", "Updating...." => "Atnaujinama...", "Error while updating app" => "Įvyko klaida atnaujinant programą", +"Error" => "Klaida", +"Update" => "Atnaujinti", "Updated" => "Atnaujinta", "Saving..." => "Saugoma...", "deleted" => "ištrinta", @@ -49,7 +49,6 @@ $TRANSLATIONS = array( "More Apps" => "Daugiau aplikacijų", "Select an App" => "Pasirinkite programą", "-licensed by " => "- autorius", -"Update" => "Atnaujinti", "Forum" => "Forumas", "Bugtracker" => "Klaidų sekimas", "Get the apps to sync your files" => "Atsisiųskite programėlių, kad sinchronizuotumėte savo failus", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index f492c168bf..66e34f11e6 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Nevarēja mainīt redzamo vārdu", "Group already exists" => "Grupa jau eksistē", "Unable to add group" => "Nevar pievienot grupu", -"Could not enable app. " => "Nevarēja aktivēt lietotni.", "Email saved" => "E-pasts tika saglabāts", "Invalid email" => "Nederīgs epasts", "Unable to delete group" => "Nevar izdzēst grupu", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Deaktivēt", "Enable" => "Aktivēt", "Please wait...." => "Lūdzu, uzgaidiet....", -"Error" => "Kļūda", "Updating...." => "Atjaunina....", "Error while updating app" => "Kļūda, atjauninot lietotni", +"Error" => "Kļūda", +"Update" => "Atjaunināt", "Updated" => "Atjaunināta", "Decrypting files... Please wait, this can take some time." => "Atšifrēju failus... Uzgaidiet tas var ilgt kādu laiku.", "Saving..." => "Saglabā...", @@ -79,7 +79,6 @@ $TRANSLATIONS = array( "Select an App" => "Izvēlies lietotni", "See application page at apps.owncloud.com" => "Apskati lietotņu lapu — apps.owncloud.com", "-licensed by " => "-licencēts no ", -"Update" => "Atjaunināt", "User Documentation" => "Lietotāja dokumentācija", "Administrator Documentation" => "Administratora dokumentācija", "Online Documentation" => "Tiešsaistes dokumentācija", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 9d74b69ccd..42d8311564 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Authentication error" => "Грешка во автентикација", "Group already exists" => "Групата веќе постои", "Unable to add group" => "Неможе да додадам група", -"Could not enable app. " => "Неможе да овозможам апликација.", "Email saved" => "Електронската пошта е снимена", "Invalid email" => "Неисправна електронска пошта", "Unable to delete group" => "Неможе да избришам група", @@ -17,6 +16,7 @@ $TRANSLATIONS = array( "Disable" => "Оневозможи", "Enable" => "Овозможи", "Error" => "Грешка", +"Update" => "Ажурирај", "Saving..." => "Снимам...", "undo" => "врати", "Groups" => "Групи", @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Select an App" => "Избери аппликација", "See application page at apps.owncloud.com" => "Види ја страницата со апликации на apps.owncloud.com", "-licensed by " => "-лиценцирано од ", -"Update" => "Ажурирај", "User Documentation" => "Корисничка документација", "Administrator Documentation" => "Администраторска документација", "Online Documentation" => "Документација на интернет", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index a65afb8ada..3d14df3d65 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "Disable" => "Nyahaktif", "Enable" => "Aktif", "Error" => "Ralat", +"Update" => "Kemaskini", "Saving..." => "Simpan...", "deleted" => "dihapus", "Groups" => "Kumpulan", @@ -20,7 +21,6 @@ $TRANSLATIONS = array( "Add your App" => "Tambah apps anda", "Select an App" => "Pilih aplikasi", "See application page at apps.owncloud.com" => "Lihat halaman applikasi di apps.owncloud.com", -"Update" => "Kemaskini", "Password" => "Kata laluan", "Unable to change your password" => "Gagal mengubah kata laluan anda ", "Current password" => "Kata laluan semasa", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index a31c6e0cd7..e017e965e9 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Kunne ikke endre visningsnavn", "Group already exists" => "Gruppen finnes allerede", "Unable to add group" => "Kan ikke legge til gruppe", -"Could not enable app. " => "Kan ikke aktivere app.", "Email saved" => "Epost lagret", "Invalid email" => "Ugyldig epost", "Unable to delete group" => "Kan ikke slette gruppe", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Slå avBehandle ", "Enable" => "Aktiver", "Please wait...." => "Vennligst vent...", -"Error" => "Feil", "Updating...." => "Oppdaterer...", "Error while updating app" => "Feil ved oppdatering av app", +"Error" => "Feil", +"Update" => "Oppdater", "Updated" => "Oppdatert", "Saving..." => "Lagrer...", "deleted" => "slettet", @@ -68,7 +68,6 @@ $TRANSLATIONS = array( "Select an App" => "Velg en app", "See application page at apps.owncloud.com" => "Se applikasjonens side på apps.owncloud.org", "-licensed by " => "-lisensiert av ", -"Update" => "Oppdater", "User Documentation" => "Brukerdokumentasjon", "Administrator Documentation" => "Administratordokumentasjon", "Online Documentation" => "Online dokumentasjon", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index c32f616c0e..6e82c9c92f 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Kon de weergavenaam niet wijzigen", "Group already exists" => "Groep bestaat al", "Unable to add group" => "Niet in staat om groep toe te voegen", -"Could not enable app. " => "Kan de app. niet activeren", "Email saved" => "E-mail bewaard", "Invalid email" => "Ongeldige e-mail", "Unable to delete group" => "Niet in staat om groep te verwijderen", @@ -21,9 +20,12 @@ $TRANSLATIONS = array( "Disable" => "Uitschakelen", "Enable" => "Activeer", "Please wait...." => "Even geduld aub....", -"Error" => "Fout", +"Error while disabling app" => "Fout tijdens het uitzetten van het programma", +"Error while enabling app" => "Fout tijdens het aanzetten van het programma", "Updating...." => "Bijwerken....", "Error while updating app" => "Fout bij bijwerken app", +"Error" => "Fout", +"Update" => "Bijwerken", "Updated" => "Bijgewerkt", "Decrypting files... Please wait, this can take some time." => "Bestanden worden gedecodeerd... Even geduld alstublieft, dit kan even duren.", "Saving..." => "Opslaan", @@ -79,7 +81,6 @@ $TRANSLATIONS = array( "Select an App" => "Selecteer een app", "See application page at apps.owncloud.com" => "Zie de applicatiepagina op apps.owncloud.com", "-licensed by " => "-Gelicenseerd door ", -"Update" => "Bijwerken", "User Documentation" => "Gebruikersdocumentatie", "Administrator Documentation" => "Beheerdersdocumentatie", "Online Documentation" => "Online documentatie", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 5c7a0756d5..438e21d5bc 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Klarte ikkje endra visingsnamnet", "Group already exists" => "Gruppa finst allereie", "Unable to add group" => "Klarte ikkje leggja til gruppa", -"Could not enable app. " => "Klarte ikkje slå på programmet.", "Email saved" => "E-postadresse lagra", "Invalid email" => "Ugyldig e-postadresse", "Unable to delete group" => "Klarte ikkje å sletta gruppa", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Slå av", "Enable" => "Slå på", "Please wait...." => "Ver venleg og vent …", -"Error" => "Feil", "Updating...." => "Oppdaterer …", "Error while updating app" => "Feil ved oppdatering av app", +"Error" => "Feil", +"Update" => "Oppdater", "Updated" => "Oppdatert", "Saving..." => "Lagrar …", "deleted" => "sletta", @@ -68,7 +68,6 @@ $TRANSLATIONS = array( "Select an App" => "Vel eit program", "See application page at apps.owncloud.com" => "Sjå programsida på apps.owncloud.com", "-licensed by " => "Lisensiert under av ", -"Update" => "Oppdater", "User Documentation" => "Brukardokumentasjon", "Administrator Documentation" => "Administratordokumentasjon", "Online Documentation" => "Dokumentasjon på nett", diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index bcc8d2d033..7606ac5992 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Authentication error" => "Error d'autentificacion", "Group already exists" => "Lo grop existís ja", "Unable to add group" => "Pas capable d'apondre un grop", -"Could not enable app. " => "Pòt pas activar app. ", "Email saved" => "Corrièl enregistrat", "Invalid email" => "Corrièl incorrècte", "Unable to delete group" => "Pas capable d'escafar un grop", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index eb8422631f..1d8619de7e 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Nie można zmienić wyświetlanej nazwy", "Group already exists" => "Grupa już istnieje", "Unable to add group" => "Nie można dodać grupy", -"Could not enable app. " => "Nie można włączyć aplikacji.", "Email saved" => "E-mail zapisany", "Invalid email" => "Nieprawidłowy e-mail", "Unable to delete group" => "Nie można usunąć grupy", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Wyłącz", "Enable" => "Włącz", "Please wait...." => "Proszę czekać...", -"Error" => "Błąd", "Updating...." => "Aktualizacja w toku...", "Error while updating app" => "Błąd podczas aktualizacji aplikacji", +"Error" => "Błąd", +"Update" => "Aktualizuj", "Updated" => "Zaktualizowano", "Saving..." => "Zapisywanie...", "deleted" => "usunięto", @@ -71,7 +71,6 @@ $TRANSLATIONS = array( "Select an App" => "Zaznacz aplikację", "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", "-licensed by " => "-licencjonowane przez ", -"Update" => "Aktualizuj", "User Documentation" => "Dokumentacja użytkownika", "Administrator Documentation" => "Dokumentacja administratora", "Online Documentation" => "Dokumentacja online", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index dfd4649772..7b51025356 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Impossível alterar nome de exibição", "Group already exists" => "Grupo já existe", "Unable to add group" => "Não foi possível adicionar grupo", -"Could not enable app. " => "Não foi possível habilitar aplicativo.", "Email saved" => "E-mail salvo", "Invalid email" => "E-mail inválido", "Unable to delete group" => "Não foi possível remover grupo", @@ -21,9 +20,12 @@ $TRANSLATIONS = array( "Disable" => "Desabilitar", "Enable" => "Habilitar", "Please wait...." => "Por favor, aguarde...", -"Error" => "Erro", +"Error while disabling app" => "Erro enquanto desabilitava o aplicativo", +"Error while enabling app" => "Erro enquanto habilitava o aplicativo", "Updating...." => "Atualizando...", "Error while updating app" => "Erro ao atualizar aplicativo", +"Error" => "Erro", +"Update" => "Atualizar", "Updated" => "Atualizado", "Decrypting files... Please wait, this can take some time." => "Decriptando arquivos... Por favor aguarde, isso pode levar algum tempo.", "Saving..." => "Salvando...", @@ -79,7 +81,6 @@ $TRANSLATIONS = array( "Select an App" => "Selecione um Aplicativo", "See application page at apps.owncloud.com" => "Ver página do aplicativo em apps.owncloud.com", "-licensed by " => "-licenciado por ", -"Update" => "Atualizar", "User Documentation" => "Documentação de Usuário", "Administrator Documentation" => "Documentação de Administrador", "Online Documentation" => "Documentação Online", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 2962fb7f5a..d72bca799d 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Não foi possível alterar o nome", "Group already exists" => "O grupo já existe", "Unable to add group" => "Impossível acrescentar o grupo", -"Could not enable app. " => "Não foi possível activar a app.", "Email saved" => "Email guardado", "Invalid email" => "Email inválido", "Unable to delete group" => "Impossível apagar grupo", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Desactivar", "Enable" => "Activar", "Please wait...." => "Por favor aguarde...", -"Error" => "Erro", "Updating...." => "A Actualizar...", "Error while updating app" => "Erro enquanto actualizava a aplicação", +"Error" => "Erro", +"Update" => "Actualizar", "Updated" => "Actualizado", "Saving..." => "A guardar...", "deleted" => "apagado", @@ -78,7 +78,6 @@ $TRANSLATIONS = array( "Select an App" => "Selecione uma aplicação", "See application page at apps.owncloud.com" => "Ver a página da aplicação em apps.owncloud.com", "-licensed by " => "-licenciado por ", -"Update" => "Actualizar", "User Documentation" => "Documentação de Utilizador", "Administrator Documentation" => "Documentação de administrador.", "Online Documentation" => "Documentação Online", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 839ddf645f..b0735af4aa 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Imposibil de schimbat numele afişat.", "Group already exists" => "Grupul există deja", "Unable to add group" => "Nu s-a putut adăuga grupul", -"Could not enable app. " => "Nu s-a putut activa aplicația.", "Email saved" => "E-mail salvat", "Invalid email" => "E-mail nevalid", "Unable to delete group" => "Nu s-a putut șterge grupul", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Dezactivați", "Enable" => "Activare", "Please wait...." => "Aşteptaţi vă rog....", -"Error" => "Eroare", "Updating...." => "Actualizare în curs....", "Error while updating app" => "Eroare în timpul actualizării aplicaţiei", +"Error" => "Eroare", +"Update" => "Actualizare", "Updated" => "Actualizat", "Saving..." => "Se salvează...", "deleted" => "șters", @@ -67,7 +67,6 @@ $TRANSLATIONS = array( "Select an App" => "Selectează o aplicație", "See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com", "-licensed by " => "-licențiat ", -"Update" => "Actualizare", "User Documentation" => "Documentație utilizator", "Administrator Documentation" => "Documentație administrator", "Online Documentation" => "Documentație online", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 16f8f67481..63e502b8d5 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Невозможно изменить отображаемое имя", "Group already exists" => "Группа уже существует", "Unable to add group" => "Невозможно добавить группу", -"Could not enable app. " => "Не удалось включить приложение.", "Email saved" => "Email сохранен", "Invalid email" => "Неправильный Email", "Unable to delete group" => "Невозможно удалить группу", @@ -21,10 +20,12 @@ $TRANSLATIONS = array( "Disable" => "Выключить", "Enable" => "Включить", "Please wait...." => "Подождите...", -"Error" => "Ошибка", "Updating...." => "Обновление...", "Error while updating app" => "Ошибка при обновлении приложения", +"Error" => "Ошибка", +"Update" => "Обновить", "Updated" => "Обновлено", +"Decrypting files... Please wait, this can take some time." => "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время.", "Saving..." => "Сохранение...", "deleted" => "удален", "undo" => "отмена", @@ -78,7 +79,6 @@ $TRANSLATIONS = array( "Select an App" => "Выберите приложение", "See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", "-licensed by " => " лицензия. Автор ", -"Update" => "Обновить", "User Documentation" => "Пользовательская документация", "Administrator Documentation" => "Документация администратора", "Online Documentation" => "Online документация", diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index c45d67daa7..8c90d1c995 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -3,7 +3,6 @@ $TRANSLATIONS = array( "Authentication error" => "සත්‍යාපන දෝෂයක්", "Group already exists" => "කණ්ඩායම දැනටමත් තිබේ", "Unable to add group" => "කාණඩයක් එක් කළ නොහැකි විය", -"Could not enable app. " => "යෙදුම සක්‍රීය කළ නොහැකි විය.", "Email saved" => "වි-තැපෑල සුරකින ලදී", "Invalid email" => "අවලංගු වි-තැපෑල", "Unable to delete group" => "කණ්ඩායම මැකීමට නොහැක", @@ -15,6 +14,7 @@ $TRANSLATIONS = array( "Disable" => "අක්‍රිය කරන්න", "Enable" => "සක්‍රිය කරන්න", "Error" => "දෝෂයක්", +"Update" => "යාවත්කාල කිරීම", "Saving..." => "සුරැකෙමින් පවතී...", "undo" => "නිෂ්ප්‍රභ කරන්න", "Groups" => "කණ්ඩායම්", @@ -34,7 +34,6 @@ $TRANSLATIONS = array( "Add your App" => "යෙදුමක් එක් කිරීම", "More Apps" => "තවත් යෙදුම්", "Select an App" => "යෙදුමක් තොරන්න", -"Update" => "යාවත්කාල කිරීම", "Password" => "මුර පදය", "Your password was changed" => "ඔබගේ මුර පදය වෙනස් කෙරුණි", "Unable to change your password" => "මුර පදය වෙනස් කළ නොහැකි විය", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index bd7cdd4695..0d22ad1074 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Nemožno zmeniť zobrazované meno", "Group already exists" => "Skupina už existuje", "Unable to add group" => "Nie je možné pridať skupinu", -"Could not enable app. " => "Nie je možné zapnúť aplikáciu.", "Email saved" => "Email uložený", "Invalid email" => "Neplatný email", "Unable to delete group" => "Nie je možné odstrániť skupinu", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Zakázať", "Enable" => "Zapnúť", "Please wait...." => "Čakajte prosím...", -"Error" => "Chyba", "Updating...." => "Aktualizujem...", "Error while updating app" => "chyba pri aktualizácii aplikácie", +"Error" => "Chyba", +"Update" => "Aktualizovať", "Updated" => "Aktualizované", "Decrypting files... Please wait, this can take some time." => "Dešifrujem súbory ... Počkajte prosím, môže to chvíľu trvať.", "Saving..." => "Ukladám...", @@ -79,7 +79,6 @@ $TRANSLATIONS = array( "Select an App" => "Vyberte aplikáciu", "See application page at apps.owncloud.com" => "Pozrite si stránku aplikácií na apps.owncloud.com", "-licensed by " => "-licencované ", -"Update" => "Aktualizovať", "User Documentation" => "Príručka používateľa", "Administrator Documentation" => "Príručka administrátora", "Online Documentation" => "Online príručka", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index eaf975048c..63477b0b9f 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Prikazanega imena ni mogoče spremeniti.", "Group already exists" => "Skupina že obstaja", "Unable to add group" => "Skupine ni mogoče dodati", -"Could not enable app. " => "Programa ni mogoče omogočiti.", "Email saved" => "Elektronski naslov je shranjen", "Invalid email" => "Neveljaven elektronski naslov", "Unable to delete group" => "Skupine ni mogoče izbrisati", @@ -21,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "Onemogoči", "Enable" => "Omogoči", "Please wait...." => "Počakajte ...", -"Error" => "Napaka", "Updating...." => "Poteka posodabljanje ...", "Error while updating app" => "Prišlo je do napake med posodabljanjem programa.", +"Error" => "Napaka", +"Update" => "Posodobi", "Updated" => "Posodobljeno", "Saving..." => "Poteka shranjevanje ...", "deleted" => "izbrisano", @@ -68,7 +68,6 @@ $TRANSLATIONS = array( "Select an App" => "Izbor programa", "See application page at apps.owncloud.com" => "Obiščite spletno stran programa na apps.owncloud.com", "-licensed by " => "-z dovoljenjem ", -"Update" => "Posodobi", "User Documentation" => "Uporabniška dokumentacija", "Administrator Documentation" => "Skrbniška dokumentacija", "Online Documentation" => "Spletna dokumentacija", diff --git a/settings/l10n/sq.php b/settings/l10n/sq.php index 1a8b588c0b..facffb9ba1 100644 --- a/settings/l10n/sq.php +++ b/settings/l10n/sq.php @@ -2,11 +2,11 @@ $TRANSLATIONS = array( "Authentication error" => "Veprim i gabuar gjatë vërtetimit të identitetit", "Error" => "Veprim i gabuar", +"Update" => "Azhurno", "undo" => "anulo", "Delete" => "Elimino", "Security Warning" => "Paralajmërim sigurie", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar.", -"Update" => "Azhurno", "Get the apps to sync your files" => "Merrni app-et për sinkronizimin e skedarëve tuaj", "Password" => "Kodi", "New password" => "Kodi i ri", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 86872df36c..f667a54781 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -5,7 +5,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Не могу да променим име за приказ", "Group already exists" => "Група већ постоји", "Unable to add group" => "Не могу да додам групу", -"Could not enable app. " => "Не могу да укључим програм", "Email saved" => "Е-порука сачувана", "Invalid email" => "Неисправна е-адреса", "Unable to delete group" => "Не могу да уклоним групу", @@ -20,9 +19,10 @@ $TRANSLATIONS = array( "Disable" => "Искључи", "Enable" => "Омогући", "Please wait...." => "Сачекајте…", -"Error" => "Грешка", "Updating...." => "Ажурирам…", "Error while updating app" => "Грешка при ажурирању апликације", +"Error" => "Грешка", +"Update" => "Ажурирај", "Updated" => "Ажурирано", "Saving..." => "Чување у току...", "deleted" => "обрисано", @@ -66,7 +66,6 @@ $TRANSLATIONS = array( "Select an App" => "Изаберите програм", "See application page at apps.owncloud.com" => "Погледајте страницу са програмима на apps.owncloud.com", "-licensed by " => "-лиценцирао ", -"Update" => "Ажурирај", "User Documentation" => "Корисничка документација", "Administrator Documentation" => "Администраторска документација", "Online Documentation" => "Мрежна документација", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 9600b68ff2..15e0ca9b8d 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Kan inte ändra visningsnamn", "Group already exists" => "Gruppen finns redan", "Unable to add group" => "Kan inte lägga till grupp", -"Could not enable app. " => "Kunde inte aktivera appen.", "Email saved" => "E-post sparad", "Invalid email" => "Ogiltig e-post", "Unable to delete group" => "Kan inte radera grupp", @@ -21,9 +20,12 @@ $TRANSLATIONS = array( "Disable" => "Deaktivera", "Enable" => "Aktivera", "Please wait...." => "Var god vänta...", -"Error" => "Fel", +"Error while disabling app" => "Fel vid inaktivering av app", +"Error while enabling app" => "Fel vid aktivering av app", "Updating...." => "Uppdaterar...", "Error while updating app" => "Fel uppstod vid uppdatering av appen", +"Error" => "Fel", +"Update" => "Uppdatera", "Updated" => "Uppdaterad", "Decrypting files... Please wait, this can take some time." => "Dekrypterar filer... Vänligen vänta, detta kan ta en stund.", "Saving..." => "Sparar...", @@ -79,7 +81,6 @@ $TRANSLATIONS = array( "Select an App" => "Välj en App", "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", "-licensed by " => "-licensierad av ", -"Update" => "Uppdatera", "User Documentation" => "Användardokumentation", "Administrator Documentation" => "Administratörsdokumentation", "Online Documentation" => "Onlinedokumentation", diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index e65feedbc9..bfb6cace99 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Authentication error" => "அத்தாட்சிப்படுத்தலில் வழு", "Group already exists" => "குழு ஏற்கனவே உள்ளது", "Unable to add group" => "குழுவை சேர்க்க முடியாது", -"Could not enable app. " => "செயலியை இயலுமைப்படுத்த முடியாது", "Email saved" => "மின்னஞ்சல் சேமிக்கப்பட்டது", "Invalid email" => "செல்லுபடியற்ற மின்னஞ்சல்", "Unable to delete group" => "குழுவை நீக்க முடியாது", @@ -16,6 +15,7 @@ $TRANSLATIONS = array( "Disable" => "இயலுமைப்ப", "Enable" => "இயலுமைப்படுத்துக", "Error" => "வழு", +"Update" => "இற்றைப்படுத்தல்", "Saving..." => "சேமிக்கப்படுகிறது...", "undo" => "முன் செயல் நீக்கம் ", "Groups" => "குழுக்கள்", @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Select an App" => "செயலி ஒன்றை தெரிவுசெய்க", "See application page at apps.owncloud.com" => "apps.owncloud.com இல் செயலி பக்கத்தை பார்க்க", "-licensed by " => "-அனுமதி பெற்ற ", -"Update" => "இற்றைப்படுத்தல்", "You have used %s of the available %s" => "நீங்கள் %s இலுள்ள %sபயன்படுத்தியுள்ளீர்கள்", "Password" => "கடவுச்சொல்", "Your password was changed" => "உங்களுடைய கடவுச்சொல் மாற்றப்பட்டுள்ளது", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 861528742f..ef62f185c5 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Authentication error" => "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน", "Group already exists" => "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว", "Unable to add group" => "ไม่สามารถเพิ่มกลุ่มได้", -"Could not enable app. " => "ไม่สามารถเปิดใช้งานแอปได้", "Email saved" => "อีเมลถูกบันทึกแล้ว", "Invalid email" => "อีเมลไม่ถูกต้อง", "Unable to delete group" => "ไม่สามารถลบกลุ่มได้", @@ -19,9 +18,10 @@ $TRANSLATIONS = array( "Disable" => "ปิดใช้งาน", "Enable" => "เปิดใช้งาน", "Please wait...." => "กรุณารอสักครู่...", -"Error" => "ข้อผิดพลาด", "Updating...." => "กำลังอัพเดทข้อมูล...", "Error while updating app" => "เกิดข้อผิดพลาดในระหว่างการอัพเดทแอปฯ", +"Error" => "ข้อผิดพลาด", +"Update" => "อัพเดท", "Updated" => "อัพเดทแล้ว", "Saving..." => "กำลังบันทึกข้อมูล...", "deleted" => "ลบแล้ว", @@ -53,7 +53,6 @@ $TRANSLATIONS = array( "Select an App" => "เลือก App", "See application page at apps.owncloud.com" => "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com", "-licensed by " => "-ลิขสิทธิ์การใช้งานโดย ", -"Update" => "อัพเดท", "User Documentation" => "เอกสารคู่มือการใช้งานสำหรับผู้ใช้งาน", "Administrator Documentation" => "เอกสารคู่มือการใช้งานสำหรับผู้ดูแลระบบ", "Online Documentation" => "เอกสารคู่มือการใช้งานออนไลน์", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index dd5fb10d96..cd90d2f8a0 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Ekran adı değiştirilemiyor", "Group already exists" => "Grup zaten mevcut", "Unable to add group" => "Gruba eklenemiyor", -"Could not enable app. " => "Uygulama devreye alınamadı", "Email saved" => "Eposta kaydedildi", "Invalid email" => "Geçersiz eposta", "Unable to delete group" => "Grup silinemiyor", @@ -21,9 +20,12 @@ $TRANSLATIONS = array( "Disable" => "Etkin değil", "Enable" => "Etkinleştir", "Please wait...." => "Lütfen bekleyin....", -"Error" => "Hata", +"Error while disabling app" => "Uygulama devre dışı bırakılırken hata", +"Error while enabling app" => "Uygulama etkinleştirilirken hata", "Updating...." => "Güncelleniyor....", "Error while updating app" => "Uygulama güncellenirken hata", +"Error" => "Hata", +"Update" => "Güncelleme", "Updated" => "Güncellendi", "Decrypting files... Please wait, this can take some time." => "Dosyaların şifresi çözülüyor... Lütfen bekleyin, bu biraz zaman alabilir.", "Saving..." => "Kaydediliyor...", @@ -79,7 +81,6 @@ $TRANSLATIONS = array( "Select an App" => "Bir uygulama seçin", "See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ", "-licensed by " => "-lisanslayan ", -"Update" => "Güncelleme", "User Documentation" => "Kullanıcı Belgelendirmesi", "Administrator Documentation" => "Yönetici Belgelendirmesi", "Online Documentation" => "Çevrimiçi Belgelendirme", diff --git a/settings/l10n/ug.php b/settings/l10n/ug.php index 2c5e1a6786..df9b7e988c 100644 --- a/settings/l10n/ug.php +++ b/settings/l10n/ug.php @@ -6,13 +6,13 @@ $TRANSLATIONS = array( "Unable to change display name" => "كۆرسىتىدىغان ئىسىمنى ئۆزگەرتكىلى بولمايدۇ", "Group already exists" => "گۇرۇپپا مەۋجۇت", "Unable to add group" => "گۇرۇپپا قوشقىلى بولمايدۇ", -"Could not enable app. " => "ئەپنى قوزغىتالمىدى. ", "Email saved" => "تورخەت ساقلاندى", "Invalid email" => "ئىناۋەتسىز تورخەت", "Unable to delete group" => "گۇرۇپپىنى ئۆچۈرەلمىدى", "Unable to delete user" => "ئىشلەتكۈچىنى ئۆچۈرەلمىدى", "Language changed" => "تىل ئۆزگەردى", "Invalid request" => "ئىناۋەتسىز ئىلتىماس", +"Admins can't remove themself from the admin group" => "باشقۇرغۇچى ئۆزىنى باشقۇرۇش گۇرۇپپىسىدىن چىقىرىۋېتەلمەيدۇ", "Unable to add user to group %s" => "ئىشلەتكۈچىنى %s گۇرۇپپىغا قوشالمايدۇ", "Unable to remove user from group %s" => "ئىشلەتكۈچىنى %s گۇرۇپپىدىن چىقىرىۋېتەلمەيدۇ", "Couldn't update app." => "ئەپنى يېڭىلىيالمايدۇ.", @@ -20,9 +20,10 @@ $TRANSLATIONS = array( "Disable" => "چەكلە", "Enable" => "قوزغات", "Please wait...." => "سەل كۈتۈڭ…", -"Error" => "خاتالىق", "Updating...." => "يېڭىلاۋاتىدۇ…", "Error while updating app" => "ئەپنى يېڭىلاۋاتقاندا خاتالىق كۆرۈلدى", +"Error" => "خاتالىق", +"Update" => "يېڭىلا", "Updated" => "يېڭىلاندى", "Saving..." => "ساقلاۋاتىدۇ…", "deleted" => "ئۆچۈرۈلگەن", @@ -32,6 +33,14 @@ $TRANSLATIONS = array( "Group Admin" => "گۇرۇپپا باشقۇرغۇچى", "Delete" => "ئۆچۈر", "add group" => "گۇرۇپپا قوش", +"A valid username must be provided" => "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك", +"Error creating user" => "ئىشلەتكۈچى قۇرۇۋاتقاندا خاتالىق كۆرۈلدى", +"A valid password must be provided" => "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك", +"__language_name__" => "ئۇيغۇرچە", +"Security Warning" => "بىخەتەرلىك ئاگاھلاندۇرۇش", +"Setup Warning" => "ئاگاھلاندۇرۇش تەڭشەك", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "سىزنىڭ تور مۇلازىمېتىرىڭىز ھۆججەت قەدەمداشلاشقا يول قويىدىغان قىلىپ توغرا تەڭشەلمەپتۇ، چۈنكى WebDAV نىڭ ئېغىزى بۇزۇلغاندەك تۇرىدۇ.", +"Module 'fileinfo' missing" => "بۆلەك «ھۆججەت ئۇچۇرى» يوقالغان", "Sharing" => "ھەمبەھىر", "Security" => "بىخەتەرلىك", "Log" => "خاتىرە", @@ -42,7 +51,6 @@ $TRANSLATIONS = array( "Add your App" => "ئەپىڭىزنى قوشۇڭ", "More Apps" => "تېخىمۇ كۆپ ئەپلەر", "Select an App" => "بىر ئەپ تاللاڭ", -"Update" => "يېڭىلا", "User Documentation" => "ئىشلەتكۈچى قوللانمىسى", "Administrator Documentation" => "باشقۇرغۇچى قوللانمىسى", "Online Documentation" => "توردىكى قوللانما", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index e58a8b7139..314b7de657 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -5,7 +5,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Не вдалося змінити зображене ім'я", "Group already exists" => "Група вже існує", "Unable to add group" => "Не вдалося додати групу", -"Could not enable app. " => "Не вдалося активувати програму. ", "Email saved" => "Адресу збережено", "Invalid email" => "Невірна адреса", "Unable to delete group" => "Не вдалося видалити групу", @@ -20,9 +19,10 @@ $TRANSLATIONS = array( "Disable" => "Вимкнути", "Enable" => "Включити", "Please wait...." => "Зачекайте, будь ласка...", -"Error" => "Помилка", "Updating...." => "Оновлюється...", "Error while updating app" => "Помилка при оновленні програми", +"Error" => "Помилка", +"Update" => "Оновити", "Updated" => "Оновлено", "Saving..." => "Зберігаю...", "deleted" => "видалені", @@ -67,7 +67,6 @@ $TRANSLATIONS = array( "Select an App" => "Вибрати додаток", "See application page at apps.owncloud.com" => "Перегляньте сторінку програм на apps.owncloud.com", "-licensed by " => "-licensed by ", -"Update" => "Оновити", "User Documentation" => "Документація Користувача", "Administrator Documentation" => "Документація Адміністратора", "Online Documentation" => "Он-Лайн Документація", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 832001a02a..71dbd19825 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -5,7 +5,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "Không thể thay đổi tên hiển thị", "Group already exists" => "Nhóm đã tồn tại", "Unable to add group" => "Không thể thêm nhóm", -"Could not enable app. " => "không thể kích hoạt ứng dụng.", "Email saved" => "Lưu email", "Invalid email" => "Email không hợp lệ", "Unable to delete group" => "Không thể xóa nhóm", @@ -20,9 +19,10 @@ $TRANSLATIONS = array( "Disable" => "Tắt", "Enable" => "Bật", "Please wait...." => "Xin hãy đợi...", -"Error" => "Lỗi", "Updating...." => "Đang cập nhật...", "Error while updating app" => "Lỗi khi cập nhật ứng dụng", +"Error" => "Lỗi", +"Update" => "Cập nhật", "Updated" => "Đã cập nhật", "Saving..." => "Đang lưu...", "deleted" => "đã xóa", @@ -53,7 +53,6 @@ $TRANSLATIONS = array( "Select an App" => "Chọn một ứng dụng", "See application page at apps.owncloud.com" => "Xem nhiều ứng dụng hơn tại apps.owncloud.com", "-licensed by " => "-Giấy phép được cấp bởi ", -"Update" => "Cập nhật", "User Documentation" => "Tài liệu người sử dụng", "Administrator Documentation" => "Tài liệu quản trị", "Online Documentation" => "Tài liệu trực tuyến", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php deleted file mode 100644 index dc760e965f..0000000000 --- a/settings/l10n/zh_CN.GB2312.php +++ /dev/null @@ -1,119 +0,0 @@ - "不能从App Store 中加载列表", -"Authentication error" => "验证错误", -"Your display name has been changed." => "您的显示名称已修改", -"Unable to change display name" => "无法更改显示名称", -"Group already exists" => "群组已存在", -"Unable to add group" => "未能添加群组", -"Could not enable app. " => "未能启用应用", -"Email saved" => "Email 保存了", -"Invalid email" => "非法Email", -"Unable to delete group" => "未能删除群组", -"Unable to delete user" => "未能删除用户", -"Language changed" => "语言改变了", -"Invalid request" => "非法请求", -"Admins can't remove themself from the admin group" => "管理员无法将自己从管理组中移除", -"Unable to add user to group %s" => "未能添加用户到群组 %s", -"Unable to remove user from group %s" => "未能将用户从群组 %s 移除", -"Couldn't update app." => "应用无法升级。", -"Update to {appversion}" => "升级至{appversion}", -"Disable" => "禁用", -"Enable" => "启用", -"Please wait...." => "请稍候……", -"Error" => "出错", -"Updating...." => "升级中……", -"Error while updating app" => "应用升级时出现错误", -"Updated" => "已升级", -"Saving..." => "保存中...", -"deleted" => "删除", -"undo" => "撤销", -"Unable to remove user" => "无法移除用户", -"Groups" => "群组", -"Group Admin" => "群组管理员", -"Delete" => "删除", -"add group" => "添加群组", -"A valid username must be provided" => "请填写有效用户名", -"Error creating user" => "新增用户时出现错误", -"A valid password must be provided" => "请填写有效密码", -"__language_name__" => "Chinese", -"Security Warning" => "安全警告", -"Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和您的文件或许能够从互联网访问。ownCloud 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。", -"Setup Warning" => "配置注意", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。", -"Please double check the installation guides." => "请双击安装向导。", -"Module 'fileinfo' missing" => "模块“fileinfo”丢失。", -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP 模块“fileinfo”丢失。我们强烈建议打开此模块来获得 mine 类型检测的最佳结果。", -"Locale not working" => "区域设置未运作", -"System locale can't be set to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud 服务器不能把系统区域设置为 %s。这意味着文件名可内可能含有某些引起问题的字符。我们强烈建议在您的系统上安装必要的区域/语言支持包来支持 “%s” 。", -"Internet connection not working" => "互联网连接未运作", -"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "服务器没有可用的Internet连接。这意味着像挂载外部储存、版本更新提示和安装第三方插件等功能会失效。远程访问文件和发送邮件提醒也可能会失效。如果您需要这些功能,建议开启服务器的英特网连接。", -"Cron" => "Cron", -"Execute one task with each page loaded" => "在每个页面载入时执行一项任务", -"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php 已作为 webcron 服务注册。owncloud 将通过 http 协议每分钟调用一次 cron.php。", -"Use systems cron service to call the cron.php file once a minute." => "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php", -"Sharing" => "分享", -"Enable Share API" => "开启分享API", -"Allow apps to use the Share API" => "允许应用使用分享API", -"Allow links" => "允许链接", -"Allow users to share items to the public with links" => "允许用户通过链接共享内容", -"Allow public uploads" => "允许公众账户上传", -"Allow users to enable others to upload into their publicly shared folders" => "允许其它人向用户的公众共享文件夹里上传文件", -"Allow resharing" => "允许转帖", -"Allow users to share items shared with them again" => "允许用户再次共享已共享的内容", -"Allow users to share with anyone" => "允许用户向任何人分享", -"Allow users to only share with users in their groups" => "只允许用户向所在群组中的其他用户分享", -"Security" => "安全", -"Enforce HTTPS" => "强制HTTPS", -"Forces the clients to connect to %s via an encrypted connection." => "强制客户端通过加密连接与%s连接", -"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "请通过HTTPS协议连接到 %s,需要启用或者禁止强制SSL的开关。", -"Log" => "日志", -"Log level" => "日志等级", -"More" => "更多", -"Less" => "更少", -"Version" => "版本", -"Developed by the ownCloud community, the source code is licensed under the AGPL." => "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。", -"Add your App" => "添加你的应用程序", -"More Apps" => "更多应用", -"Select an App" => "选择一个程序", -"See application page at apps.owncloud.com" => "在owncloud.com上查看应用程序", -"-licensed by " => "授权协议 ", -"Update" => "更新", -"User Documentation" => "用户文档", -"Administrator Documentation" => "管理员文档", -"Online Documentation" => "在线说明文档", -"Forum" => "论坛", -"Bugtracker" => "Bug追踪者", -"Commercial Support" => "商业支持", -"Get the apps to sync your files" => "获取应用并同步您的文件", -"Show First Run Wizard again" => "再次显示首次运行向导", -"You have used %s of the available %s" => "您已使用%s/%s", -"Password" => "密码", -"Your password was changed" => "您的密码以变更", -"Unable to change your password" => "不能改变你的密码", -"Current password" => "现在的密码", -"New password" => "新密码", -"Change password" => "改变密码", -"Display Name" => "显示名称", -"Email" => "电子邮件", -"Your email address" => "你的email地址", -"Fill in an email address to enable password recovery" => "输入一个邮箱地址以激活密码恢复功能", -"Language" => "语言", -"Help translate" => "帮助翻译", -"WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "访问WebDAV请点击 此处", -"Encryption" => "加密", -"Login Name" => "登录名", -"Create" => "新建", -"Admin Recovery Password" => "管理员恢复密码", -"Enter the recovery password in order to recover the users files during password change" => "在恢复密码的过程中请输入恢复密钥来恢复用户数据", -"Default Storage" => "默认容量", -"Unlimited" => "无限制", -"Other" => "其他", -"Username" => "用户名", -"Storage" => "容量", -"change display name" => "更改显示名称", -"set new password" => "设置新的密码", -"Default" => "默认" -); -$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 385c77645c..cc14a3648a 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "无法修改显示名称", "Group already exists" => "已存在该组", "Unable to add group" => "无法添加组", -"Could not enable app. " => "无法开启App", "Email saved" => "电子邮件已保存", "Invalid email" => "无效的电子邮件", "Unable to delete group" => "无法删除组", @@ -21,10 +20,14 @@ $TRANSLATIONS = array( "Disable" => "禁用", "Enable" => "开启", "Please wait...." => "请稍等....", -"Error" => "错误", +"Error while disabling app" => "禁用 app 时出错", +"Error while enabling app" => "启用 app 时出错", "Updating...." => "正在更新....", "Error while updating app" => "更新 app 时出错", +"Error" => "错误", +"Update" => "更新", "Updated" => "已更新", +"Decrypting files... Please wait, this can take some time." => "正在解密文件... 请稍等,可能需要一些时间。", "Saving..." => "保存中", "deleted" => "已经删除", "undo" => "撤销", @@ -78,7 +81,6 @@ $TRANSLATIONS = array( "Select an App" => "选择一个应用", "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", "-licensed by " => "-核准: ", -"Update" => "更新", "User Documentation" => "用户文档", "Administrator Documentation" => "管理员文档", "Online Documentation" => "在线文档", @@ -103,6 +105,9 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "使用该链接 通过WebDAV访问你的文件", "Encryption" => "加密", +"The encryption app is no longer enabled, decrypt all your file" => "加密 app 未启用,将解密您所有文件", +"Log-in password" => "登录密码", +"Decrypt all Files" => "解密所有文件", "Login Name" => "登录名称", "Create" => "创建", "Admin Recovery Password" => "管理恢复密码", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 7c1a8963cc..5cd3679751 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "Unable to change display name" => "無法更改顯示名稱", "Group already exists" => "群組已存在", "Unable to add group" => "群組增加失敗", -"Could not enable app. " => "未能啟動此app", "Email saved" => "Email已儲存", "Invalid email" => "無效的email", "Unable to delete group" => "群組刪除錯誤", @@ -21,10 +20,14 @@ $TRANSLATIONS = array( "Disable" => "停用", "Enable" => "啟用", "Please wait...." => "請稍候...", -"Error" => "錯誤", +"Error while disabling app" => "停用應用程式錯誤", +"Error while enabling app" => "啓用應用程式錯誤", "Updating...." => "更新中...", "Error while updating app" => "更新應用程式錯誤", +"Error" => "錯誤", +"Update" => "更新", "Updated" => "已更新", +"Decrypting files... Please wait, this can take some time." => "檔案解密中,請稍候。", "Saving..." => "儲存中...", "deleted" => "已刪除", "undo" => "復原", @@ -78,7 +81,6 @@ $TRANSLATIONS = array( "Select an App" => "選擇一個應用程式", "See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", "-licensed by " => "-核准: ", -"Update" => "更新", "User Documentation" => "用戶說明文件", "Administrator Documentation" => "管理者說明文件", "Online Documentation" => "線上說明文件", @@ -103,6 +105,9 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "使用這個網址來透過 WebDAV 存取您的檔案", "Encryption" => "加密", +"The encryption app is no longer enabled, decrypt all your file" => "加密應用程式已經停用,請您解密您所有的檔案", +"Log-in password" => "登入密碼", +"Decrypt all Files" => "解密所有檔案", "Login Name" => "登入名稱", "Create" => "建立", "Admin Recovery Password" => "管理者復原密碼", diff --git a/settings/personal.php b/settings/personal.php index 33c78c0467..b0d62645d5 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -20,7 +20,7 @@ OC_Util::addStyle( '3rdparty', 'chosen' ); \OC_Util::addStyle('3rdparty/Jcrop', 'jquery.Jcrop.min'); OC_App::setActiveNavigationEntry( 'personal' ); -$storageInfo=OC_Helper::getStorageInfo(); +$storageInfo=OC_Helper::getStorageInfo('/'); $email=OC_Preferences::getValue(OC_User::getUser(), 'settings', 'email', ''); diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 9602414b66..b94b845258 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -40,7 +40,7 @@ if($_['passwordChangeSupported']) {
t('Your password was changed');?>
t('Unable to change your password');?>
- diff --git a/tests/lib/appconfig.php b/tests/lib/appconfig.php new file mode 100644 index 0000000000..4d82cd5ba7 --- /dev/null +++ b/tests/lib/appconfig.php @@ -0,0 +1,132 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Appconfig extends PHPUnit_Framework_TestCase { + public static function setUpBeforeClass() { + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*appconfig` VALUES (?, ?, ?)'); + + $query->execute(array('testapp', 'enabled', 'true')); + $query->execute(array('testapp', 'installed_version', '1.2.3')); + $query->execute(array('testapp', 'depends_on', 'someapp')); + $query->execute(array('testapp', 'deletethis', 'deletethis')); + $query->execute(array('testapp', 'key', 'value')); + + $query->execute(array('someapp', 'key', 'value')); + $query->execute(array('someapp', 'otherkey', 'othervalue')); + + $query->execute(array('123456', 'key', 'value')); + $query->execute(array('123456', 'enabled', 'false')); + + $query->execute(array('anotherapp', 'key', 'value')); + $query->execute(array('anotherapp', 'enabled', 'false')); + } + + public static function tearDownAfterClass() { + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ?'); + $query->execute(array('testapp')); + $query->execute(array('someapp')); + $query->execute(array('123456')); + $query->execute(array('anotherapp')); + } + + public function testGetApps() { + $query = \OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`'); + $result = $query->execute(); + $expected = array(); + while ($row = $result->fetchRow()) { + $expected[] = $row['appid']; + } + $apps = \OC_Appconfig::getApps(); + $this->assertEquals($expected, $apps); + } + + public function testGetKeys() { + $query = \OC_DB::prepare('SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?'); + $result = $query->execute(array('testapp')); + $expected = array(); + while($row = $result->fetchRow()) { + $expected[] = $row["configkey"]; + } + $keys = \OC_Appconfig::getKeys('testapp'); + $this->assertEquals($expected, $keys); + } + + public function testGetValue() { + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?'); + $result = $query->execute(array('testapp', 'installed_version')); + $expected = $result->fetchRow(); + $value = \OC_Appconfig::getValue('testapp', 'installed_version'); + $this->assertEquals($expected['configvalue'], $value); + + $value = \OC_Appconfig::getValue('testapp', 'nonexistant'); + $this->assertNull($value); + + $value = \OC_Appconfig::getValue('testapp', 'nonexistant', 'default'); + $this->assertEquals('default', $value); + } + + public function testHasKey() { + $value = \OC_Appconfig::hasKey('testapp', 'installed_version'); + $this->assertTrue($value); + + $value = \OC_Appconfig::hasKey('nonexistant', 'nonexistant'); + $this->assertFalse($value); + } + + public function testSetValue() { + \OC_Appconfig::setValue('testapp', 'installed_version', '1.33.7'); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?'); + $result = $query->execute(array('testapp', 'installed_version')); + $value = $result->fetchRow(); + $this->assertEquals('1.33.7', $value['configvalue']); + + \OC_Appconfig::setValue('someapp', 'somekey', 'somevalue'); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?'); + $result = $query->execute(array('someapp', 'somekey')); + $value = $result->fetchRow(); + $this->assertEquals('somevalue', $value['configvalue']); + } + + public function testDeleteKey() { + \OC_Appconfig::deleteKey('testapp', 'deletethis'); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?'); + $query->execute(array('testapp', 'deletethis')); + $result = (bool)$query->fetchRow(); + $this->assertFalse($result); + } + + public function testDeleteApp() { + \OC_Appconfig::deleteApp('someapp'); + $query = \OC_DB::prepare('SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?'); + $query->execute(array('someapp')); + $result = (bool)$query->fetchRow(); + $this->assertFalse($result); + } + + public function testGetValues() { + $this->assertFalse(\OC_Appconfig::getValues('testapp', 'enabled')); + + $query = \OC_DB::prepare('SELECT `configkey`, `configvalue` FROM `*PREFIX*appconfig` WHERE `appid` = ?'); + $query->execute(array('testapp')); + $expected = array(); + while ($row = $query->fetchRow()) { + $expected[$row['configkey']] = $row['configvalue']; + } + $values = \OC_Appconfig::getValues('testapp', false); + $this->assertEquals($expected, $values); + + $query = \OC_DB::prepare('SELECT `appid`, `configvalue` FROM `*PREFIX*appconfig` WHERE `configkey` = ?'); + $query->execute(array('enabled')); + $expected = array(); + while ($row = $query->fetchRow()) { + $expected[$row['appid']] = $row['configvalue']; + } + $values = \OC_Appconfig::getValues(false, 'enabled'); + $this->assertEquals($expected, $values); + } +} diff --git a/tests/lib/connector/sabre/quotaplugin.php b/tests/lib/connector/sabre/quotaplugin.php new file mode 100644 index 0000000000..1186de2874 --- /dev/null +++ b/tests/lib/connector/sabre/quotaplugin.php @@ -0,0 +1,101 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_OC_Connector_Sabre_QuotaPlugin extends PHPUnit_Framework_TestCase { + + /** + * @var Sabre_DAV_Server + */ + private $server; + + /** + * @var OC_Connector_Sabre_QuotaPlugin + */ + private $plugin; + + public function setUp() { + $this->server = new Sabre_DAV_Server(); + $this->plugin = new OC_Connector_Sabre_QuotaPlugin(); + $this->plugin->initialize($this->server); + } + + /** + * @dataProvider lengthProvider + */ + public function testLength($expected, $headers) + { + $this->server->httpRequest = new Sabre_HTTP_Request($headers); + $length = $this->plugin->getLength(); + $this->assertEquals($expected, $length); + } + + /** + * @dataProvider quotaOkayProvider + */ + public function testCheckQuota($quota, $headers) + { + $this->plugin->fileView = $this->buildFileViewMock($quota); + + $this->server->httpRequest = new Sabre_HTTP_Request($headers); + $result = $this->plugin->checkQuota(''); + $this->assertTrue($result); + } + + /** + * @expectedException Sabre_DAV_Exception_InsufficientStorage + * @dataProvider quotaExceededProvider + */ + public function testCheckExceededQuota($quota, $headers) + { + $this->plugin->fileView = $this->buildFileViewMock($quota); + + $this->server->httpRequest = new Sabre_HTTP_Request($headers); + $this->plugin->checkQuota(''); + } + + public function quotaOkayProvider() { + return array( + array(1024, array()), + array(1024, array('HTTP_X_EXPECTED_ENTITY_LENGTH' => '1024')), + array(1024, array('HTTP_CONTENT_LENGTH' => '512')), + array(1024, array('HTTP_OC_TOTAL_LENGTH' => '1024', 'HTTP_CONTENT_LENGTH' => '512')), + // OC\Files\FREE_SPACE_UNKNOWN = -2 + array(-2, array()), + array(-2, array('HTTP_X_EXPECTED_ENTITY_LENGTH' => '1024')), + array(-2, array('HTTP_CONTENT_LENGTH' => '512')), + array(-2, array('HTTP_OC_TOTAL_LENGTH' => '1024', 'HTTP_CONTENT_LENGTH' => '512')), + ); + } + + public function quotaExceededProvider() { + return array( + array(1023, array('HTTP_X_EXPECTED_ENTITY_LENGTH' => '1024')), + array(511, array('HTTP_CONTENT_LENGTH' => '512')), + array(2047, array('HTTP_OC_TOTAL_LENGTH' => '2048', 'HTTP_CONTENT_LENGTH' => '1024')), + ); + } + + public function lengthProvider() { + return array( + array(null, array()), + array(1024, array('HTTP_X_EXPECTED_ENTITY_LENGTH' => '1024')), + array(512, array('HTTP_CONTENT_LENGTH' => '512')), + array(2048, array('HTTP_OC_TOTAL_LENGTH' => '2048', 'HTTP_CONTENT_LENGTH' => '1024')), + array(4096, array('HTTP_OC_TOTAL_LENGTH' => '2048', 'HTTP_X_EXPECTED_ENTITY_LENGTH' => '4096')), + ); + } + + private function buildFileViewMock($quota) { + // mock filesysten + $view = $this->getMock('\OC\Files\View', array('free_space'), array(), '', FALSE); + $view->expects($this->any())->method('free_space')->withAnyParameters()->will($this->returnValue($quota)); + + return $view; + } + +} diff --git a/tests/lib/group/group.php b/tests/lib/group/group.php index 75e975d9e6..f1fda3b928 100644 --- a/tests/lib/group/group.php +++ b/tests/lib/group/group.php @@ -43,8 +43,8 @@ class Group extends \PHPUnit_Framework_TestCase { $users = $group->getUsers(); $this->assertEquals(2, count($users)); - $user1 = $users[0]; - $user2 = $users[1]; + $user1 = $users['user1']; + $user2 = $users['user2']; $this->assertEquals('user1', $user1->getUID()); $this->assertEquals('user2', $user2->getUID()); } @@ -68,9 +68,9 @@ class Group extends \PHPUnit_Framework_TestCase { $users = $group->getUsers(); $this->assertEquals(3, count($users)); - $user1 = $users[0]; - $user2 = $users[1]; - $user3 = $users[2]; + $user1 = $users['user1']; + $user2 = $users['user2']; + $user3 = $users['user3']; $this->assertEquals('user1', $user1->getUID()); $this->assertEquals('user2', $user2->getUID()); $this->assertEquals('user3', $user3->getUID());