diff options
578 files changed, 4483 insertions, 3829 deletions
diff --git a/.gitignore b/.gitignore index 68977ad0775..6259482c002 100644 --- a/.gitignore +++ b/.gitignore @@ -72,7 +72,10 @@ nbproject .well-known /.buildpath -#tests - autogenerated filed +# Tests +/tests/phpunit.xml + +# Tests - auto-generated files data-autotest /tests/coverage* /tests/autoconfig* diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index e1263744e1b..12db682c1e2 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -1,17 +1,53 @@ <?php -// Init owncloud - - // Firefox and Konqueror tries to download application/json for me. --Arthur OCP\JSON::setContentTypeHeader('text/plain'); -OCP\JSON::checkLoggedIn(); -OCP\JSON::callCheck(); +// If a directory token is sent along check if public upload is permitted. +// If not, check the login. +// If no token is sent along, rely on login only + $l = OC_L10N::get('files'); +if (!$_POST['dirToken']) { + // The standard case, files are uploaded through logged in users :) + OCP\JSON::checkLoggedIn(); + $dir = isset($_POST['dir']) ? $_POST['dir'] : ""; + if (!$dir || empty($dir) || $dir === false) { + OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Unable to set upload directory.'))))); + die(); + } +} else { + $linkItem = OCP\Share::getShareByToken($_POST['dirToken']); + + if ($linkItem === false) { + OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Invalid Token'))))); + die(); + } + + if (!($linkItem['permissions'] & OCP\PERMISSION_CREATE)) { + OCP\JSON::checkLoggedIn(); + } else { + + // The token defines the target directory (security reasons) + $dir = sprintf( + "/%s/%s", + $linkItem['file_target'], + isset($_POST['subdir']) ? $_POST['subdir'] : '' + ); + + if (!$dir || empty($dir) || $dir === false) { + OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Unable to set upload directory.'))))); + die(); + } + // Setup FS with owner + OC_Util::setupFS($linkItem['uid_owner']); + } +} + + +OCP\JSON::callCheck(); -$dir = $_POST['dir']; // get array with current storage stats (e.g. max file size) $storageStats = \OCA\files\lib\Helper::buildFileStorageStatistics($dir); diff --git a/apps/files/index.php b/apps/files/index.php index 20fbf7f93be..640c28c0075 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -26,6 +26,7 @@ OCP\User::checkLoggedIn(); // Load the files we need OCP\Util::addStyle('files', 'files'); +OCP\Util::addscript('files', 'file-upload'); OCP\Util::addscript('files', 'jquery.iframe-transport'); OCP\Util::addscript('files', 'jquery.fileupload'); OCP\Util::addscript('files', 'jquery-visibility'); @@ -137,4 +138,4 @@ if ($needUpgrade) { $tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $tmpl->assign('usedSpacePercent', (int)$storageInfo['relative']); $tmpl->printPage(); -}
\ No newline at end of file +} diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js new file mode 100644 index 00000000000..942a07dfccc --- /dev/null +++ b/apps/files/js/file-upload.js @@ -0,0 +1,343 @@ +$(document).ready(function() { + + file_upload_param = { + dropZone: $('#content'), // restrict dropZone to content div + //singleFileUploads is on by default, so the data.files array will always have length 1 + add: function(e, data) { + + if(data.files[0].type === '' && data.files[0].size == 4096) + { + data.textStatus = 'dirorzero'; + data.errorThrown = t('files','Unable to upload your file as it is a directory or has 0 bytes'); + var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); + fu._trigger('fail', e, data); + return true; //don't upload this file but go on with next in queue + } + + var totalSize=0; + $.each(data.originalFiles, function(i,file){ + totalSize+=file.size; + }); + + if(totalSize>$('#max_upload').val()){ + data.textStatus = 'notenoughspace'; + data.errorThrown = t('files','Not enough space available'); + var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); + fu._trigger('fail', e, data); + return false; //don't upload anything + } + + // start the actual file upload + var jqXHR = data.submit(); + + // remember jqXHR to show warning to user when he navigates away but an upload is still in progress + if (typeof data.context !== 'undefined' && data.context.data('type') === 'dir') { + var dirName = data.context.data('file'); + if(typeof uploadingFiles[dirName] === 'undefined') { + uploadingFiles[dirName] = {}; + } + uploadingFiles[dirName][data.files[0].name] = jqXHR; + } else { + uploadingFiles[data.files[0].name] = jqXHR; + } + + //show cancel button + if($('html.lte9').length === 0 && data.dataType !== 'iframe') { + $('#uploadprogresswrapper input.stop').show(); + } + }, + /** + * called after the first add, does NOT have the data param + * @param e + */ + start: function(e) { + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { + return; + } + $('#uploadprogressbar').progressbar({value:0}); + $('#uploadprogressbar').fadeIn(); + }, + fail: function(e, data) { + if (typeof data.textStatus !== 'undefined' && data.textStatus !== 'success' ) { + if (data.textStatus === 'abort') { + $('#notification').text(t('files', 'Upload cancelled.')); + } else { + // HTTP connection problem + $('#notification').text(data.errorThrown); + } + $('#notification').fadeIn(); + //hide notification after 5 sec + setTimeout(function() { + $('#notification').fadeOut(); + }, 5000); + } + delete uploadingFiles[data.files[0].name]; + }, + progress: function(e, data) { + // TODO: show nice progress bar in file row + }, + progressall: function(e, data) { + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { + return; + } + var progress = (data.loaded/data.total)*100; + $('#uploadprogressbar').progressbar('value',progress); + }, + /** + * called for every successful upload + * @param e + * @param data + */ + done:function(e, data) { + // handle different responses (json or body from iframe for ie) + var response; + if (typeof data.result === 'string') { + response = data.result; + } else { + //fetch response from iframe + response = data.result[0].body.innerText; + } + var result=$.parseJSON(response); + + if(typeof result[0] !== 'undefined' && result[0].status === 'success') { + var file = result[0]; + } else { + data.textStatus = 'servererror'; + data.errorThrown = t('files', result.data.message); + 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 + * @param e + * @param data + */ + stop: function(e, data) { + if(data.dataType !== 'iframe') { + $('#uploadprogresswrapper input.stop').hide(); + } + + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { + return; + } + + $('#uploadprogressbar').progressbar('value',100); + $('#uploadprogressbar').fadeOut(); + } + } + var file_upload_handler = function() { + $('#file_upload_start').fileupload(file_upload_param); + }; + + + + if ( document.getElementById('data-upload-form') ) { + $(file_upload_handler); + } + $.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('<p>'+$(element).data('text')+'</p>'); + } + }); + }); + $('#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('<p>'+$(element).data('text')+'</p>'); + } + }); + + var type=$(this).data('type'); + var text=$(this).children('p').text(); + $(this).data('text',text); + $(this).children('p').remove(); + var form=$('<form></form>'); + var input=$('<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-id', result.data.id); + 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('<p>'+li.data('text')+'</p>'); + $('#new>a').click(); + }); + }); +}); diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 14fca6f1482..aa66a57a7b5 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -200,7 +200,11 @@ FileActions.register('all', 'Rename', OC.PERMISSION_UPDATE, function () { FileActions.register('dir', 'Open', OC.PERMISSION_READ, '', function (filename) { - window.location = OC.linkTo('files', 'index.php') + '?dir=' + encodeURIComponent($('#dir').val()).replace(/%2F/g, '/') + '/' + encodeURIComponent(filename); + var dir = $('#dir').val() + if (dir !== '/') { + dir = dir + '/'; + } + window.location = OC.linkTo('files', 'index.php') + '?dir=' + encodeURIComponent(dir + filename); }); FileActions.setDefault('dir', 'Open'); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index e19a35bbc5b..f4ca098eed1 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -71,8 +71,20 @@ var FileList={ tr.append(td); return tr; }, - addFile:function(name,size,lastModified,loading,hidden){ + addFile:function(name,size,lastModified,loading,hidden,param){ var imgurl; + + if (!param) { + param = {}; + } + + var download_url = null; + if (!param.download_url) { + download_url = OC.Router.generate('download', { file: $('#dir').val()+'/'+name }); + } else { + download_url = param.download_url; + } + if (loading) { imgurl = OC.imagePath('core', 'loading.gif'); } else { @@ -82,7 +94,7 @@ var FileList={ 'file', name, imgurl, - OC.Router.generate('download', { file: $('#dir').val()+'/'+name }), + download_url, size, lastModified, $('#permissions').val() @@ -197,7 +209,7 @@ var FileList={ len = input.val().length; } input.selectRange(0,len); - + form.submit(function(event){ event.stopPropagation(); event.preventDefault(); @@ -423,8 +435,12 @@ $(document).ready(function(){ size=data.files[0].size; } var date=new Date(); + var param = {}; + if ($('#publicUploadRequestToken')) { + param.download_url = document.location.href + '&download&path=/' + $('#dir').val() + '/' + uniqueName; + } // create new file context - data.context = FileList.addFile(uniqueName,size,date,true,false); + data.context = FileList.addFile(uniqueName,size,date,true,false,param); } } diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 3438c1c30a1..51b3f31fb96 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -251,153 +251,6 @@ $(document).ready(function() { e.preventDefault(); // prevent browser from doing anything, if file isn't dropped in dropZone }); - if ( document.getElementById('data-upload-form') ) { - $(function() { - $('#file_upload_start').fileupload({ - dropZone: $('#content'), // restrict dropZone to content div - //singleFileUploads is on by default, so the data.files array will always have length 1 - add: function(e, data) { - - if(data.files[0].type === '' && data.files[0].size == 4096) - { - data.textStatus = 'dirorzero'; - data.errorThrown = t('files','Unable to upload your file as it is a directory or has 0 bytes'); - var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); - fu._trigger('fail', e, data); - return true; //don't upload this file but go on with next in queue - } - - var totalSize=0; - $.each(data.originalFiles, function(i,file){ - totalSize+=file.size; - }); - - if(totalSize>$('#max_upload').val()){ - data.textStatus = 'notenoughspace'; - data.errorThrown = t('files','Not enough space available'); - var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); - fu._trigger('fail', e, data); - return false; //don't upload anything - } - - // start the actual file upload - var jqXHR = data.submit(); - - // remember jqXHR to show warning to user when he navigates away but an upload is still in progress - if (typeof data.context !== 'undefined' && data.context.data('type') === 'dir') { - var dirName = data.context.data('file'); - if(typeof uploadingFiles[dirName] === 'undefined') { - uploadingFiles[dirName] = {}; - } - uploadingFiles[dirName][data.files[0].name] = jqXHR; - } else { - uploadingFiles[data.files[0].name] = jqXHR; - } - - //show cancel button - if($('html.lte9').length === 0 && data.dataType !== 'iframe') { - $('#uploadprogresswrapper input.stop').show(); - } - }, - /** - * called after the first add, does NOT have the data param - * @param e - */ - start: function(e) { - //IE < 10 does not fire the necessary events for the progress bar. - if($('html.lte9').length > 0) { - return; - } - $('#uploadprogressbar').progressbar({value:0}); - $('#uploadprogressbar').fadeIn(); - }, - fail: function(e, data) { - if (typeof data.textStatus !== 'undefined' && data.textStatus !== 'success' ) { - if (data.textStatus === 'abort') { - $('#notification').text(t('files', 'Upload cancelled.')); - } else { - // HTTP connection problem - $('#notification').text(data.errorThrown); - } - $('#notification').fadeIn(); - //hide notification after 5 sec - setTimeout(function() { - $('#notification').fadeOut(); - }, 5000); - } - delete uploadingFiles[data.files[0].name]; - }, - progress: function(e, data) { - // TODO: show nice progress bar in file row - }, - progressall: function(e, data) { - //IE < 10 does not fire the necessary events for the progress bar. - if($('html.lte9').length > 0) { - return; - } - var progress = (data.loaded/data.total)*100; - $('#uploadprogressbar').progressbar('value',progress); - }, - /** - * called for every successful upload - * @param e - * @param data - */ - done:function(e, data) { - // handle different responses (json or body from iframe for ie) - var response; - if (typeof data.result === 'string') { - response = data.result; - } else { - //fetch response from iframe - response = data.result[0].body.innerText; - } - var result=$.parseJSON(response); - - if(typeof result[0] !== 'undefined' && result[0].status === 'success') { - var file = result[0]; - } else { - data.textStatus = 'servererror'; - data.errorThrown = t('files', result.data.message); - 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 - * @param e - * @param data - */ - stop: function(e, data) { - if(data.dataType !== 'iframe') { - $('#uploadprogresswrapper input.stop').hide(); - } - - //IE < 10 does not fire the necessary events for the progress bar. - if($('html.lte9').length > 0) { - return; - } - - $('#uploadprogressbar').progressbar('value',100); - $('#uploadprogressbar').fadeOut(); - } - }) - }); - } $.assocArraySize = function(obj) { // http://stackoverflow.com/a/6700/11236 var size = 0, key; @@ -804,7 +657,7 @@ var dragOptions={ // sane browsers support using the distance option if ( $('html.ie').length === 0) { dragOptions['distance'] = 20; -} +} var folderDropOptions={ drop: function( event, ui ) { diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 6902d311ab7..ed6391a588e 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -46,6 +46,7 @@ "{count} folders" => "{count} map", "1 file" => "1 datoteka", "{count} files" => "{count} datotek", +"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Ime mape je neveljavno. Uporaba oznake \"Souporaba\" je rezervirana za ownCloud", "Unable to rename file" => "Ni mogoče preimenovati datoteke", "Upload" => "Pošlji", "File handling" => "Upravljanje z datotekami", diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index b576253f4f0..b9119f2cb62 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -50,7 +50,7 @@ </div> </div> <div id="file_action_panel"></div> - <?php else:?> + <?php elseif( !$_['isPublic'] ):?> <div class="actions"><input type="button" disabled value="<?php p($l->t('You don’t have write permissions here.'))?>"></div> <input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir"> <?php endif;?> diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 74891279355..a88eccc0e41 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -7,12 +7,30 @@ "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", "Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", "Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.", +"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus ficheros", +"PHP module OpenSSL is not installed." => "El módulo OpenSSL de PHP no está instalado.", +"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Por favor pida al administrador de su servidor que le instale el módulo. De momento la aplicación de cifrado está deshabilitada.", "Saving..." => "Guardando...", +"Your private key is not valid! Maybe the your password was changed from outside." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera.", +"You can unlock your private key in your " => "Puede desbloquear su clave privada en su", +"personal settings" => "opciones personales", "Encryption" => "Cifrado", +"Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar la clave de recuperación (permite recuperar los ficheros del usuario en caso de pérdida de la contraseña);", +"Recovery key password" => "Contraseña de clave de recuperación", "Enabled" => "Habilitar", "Disabled" => "Deshabilitado", +"Change recovery key password:" => "Cambiar la contraseña de la clave de recuperación", +"Old Recovery key password" => "Contraseña de la antigua clave de recuperación", +"New Recovery key password" => "Contraseña de la nueva clave de recuperación", "Change Password" => "Cambiar contraseña", +"Your private key password no longer match your log-in password:" => "Su contraseña de clave privada ya no coincide con su contraseña de acceso:", +"Set your old private key password to your current log-in password." => "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus ficheros.", +"Old log-in password" => "Contraseña de acceso antigua", +"Current log-in password" => "Contraseña de acceso actual", +"Update Private Key Password" => "Actualizar Contraseña de Clave Privada", "Enable password recovery:" => "Habilitar la recuperación de contraseña:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Habilitar esta opción le permitirá volver a tener acceso a sus ficheros cifrados en caso de pérdida de contraseña", "File recovery settings updated" => "Opciones de recuperación de archivos actualizada", "Could not update file recovery" => "No se pudo actualizar la recuperación de archivos" ); diff --git a/apps/files_encryption/l10n/eu.php b/apps/files_encryption/l10n/eu.php index 253953e5c52..5f6208bffd7 100644 --- a/apps/files_encryption/l10n/eu.php +++ b/apps/files_encryption/l10n/eu.php @@ -1,4 +1,7 @@ <?php $TRANSLATIONS = array( "Saving..." => "Gordetzen...", -"Encryption" => "Enkriptazioa" +"Encryption" => "Enkriptazioa", +"Enabled" => "Gaitua", +"Disabled" => "Ez-gaitua", +"Change Password" => "Aldatu Pasahitza" ); diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 94d27f5501e..52a970d68bf 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -1,20 +1,27 @@ <?php $TRANSLATIONS = array( "Recovery key successfully enabled" => "Clé de récupération activée avec succès", -"Could not enable recovery key. Please check your recovery key password!" => "Ne peut pas activer la clé de récupération. s'il vous plait vérifiez votre mot de passe de clé de récupération!", -"Recovery key successfully disabled" => "Clé de récupération désactivée avc succès", -"Could not disable recovery key. Please check your recovery key password!" => "Ne peut pas désactiver la clé de récupération. S'il vous plait vérifiez votre mot de passe de clé de récupération!", +"Could not enable recovery key. Please check your recovery key password!" => "Impossible d'activer la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !", +"Recovery key successfully disabled" => "Clé de récupération désactivée avec succès", +"Could not disable recovery key. Please check your recovery key password!" => "Impossible de désactiver la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !", "Password successfully changed." => "Mot de passe changé avec succès ", "Could not change the password. Maybe the old password was not correct." => "Ne peut pas changer le mot de passe. L'ancien mot de passe est peut-être incorrect.", "Private key password successfully updated." => "Mot de passe de la clé privé mis à jour avec succès.", "Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.", "Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur. Vous pouvez mettre à jour le mot de passe de votre clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers", +"PHP module OpenSSL is not installed." => "Le module OpenSSL de PHP n'est pas installé.", +"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Veuillez demander à l'administrateur du serveur d'installer le module. Pour l'instant l'application de chiffrement a été désactivé.", "Saving..." => "Enregistrement...", "Your private key is not valid! Maybe the your password was changed from outside." => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur.", "You can unlock your private key in your " => "Vous pouvez déverrouiller votre clé privée dans votre", "personal settings" => "paramètres personnel", "Encryption" => "Chiffrement", +"Enable recovery key (allow to recover users files in case of password loss):" => "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe).", +"Recovery key password" => "Mot de passe de la clef de récupération", "Enabled" => "Activer", "Disabled" => "Désactiver", +"Change recovery key password:" => "Modifier le mot de passe de la clef de récupération :", +"Old Recovery key password" => "Ancien mot de passe de la clef de récupération", +"New Recovery key password" => "Nouveau mot de passe de la clef de récupération", "Change Password" => "Changer de mot de passe", "Your private key password no longer match your log-in password:" => "Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion :", "Set your old private key password to your current log-in password." => "Configurez le mot de passe de votre ancienne clef privée avec votre mot de passe courant de connexion. ", @@ -22,8 +29,8 @@ "Old log-in password" => "Ancien mot de passe de connexion", "Current log-in password" => "Actuel mot de passe de connexion", "Update Private Key Password" => "Mettre à jour le mot de passe de votre clé privée", -"Enable password recovery:" => "Activer la récupération du mot de passe:", +"Enable password recovery:" => "Activer la récupération du mot de passe :", "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe", -"File recovery settings updated" => "Mise à jour des paramètres de récupération de fichiers ", +"File recovery settings updated" => "Paramètres de récupération de fichiers mis à jour", "Could not update file recovery" => "Ne peut pas remettre à jour les fichiers de récupération" ); diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index a420fe161df..d80613b4b12 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -1,4 +1,14 @@ <?php $TRANSLATIONS = array( +"Password successfully changed." => "Geslo je bilo uspešno spremenjeno.", +"Could not change the password. Maybe the old password was not correct." => "Gesla ni bilo mogoče spremeniti. Morda vnos starega gesla ni bil pravilen.", "Saving..." => "Poteka shranjevanje ...", -"Encryption" => "Šifriranje" +"personal settings" => "osebne nastavitve", +"Encryption" => "Šifriranje", +"Enabled" => "Omogočeno", +"Disabled" => "Onemogočeno", +"Change Password" => "Spremeni geslo", +"Old log-in password" => "Staro geslo", +"Current log-in password" => "Trenutno geslo", +"File recovery settings updated" => "Nastavitve obnavljanja dokumentov so bile posodobljene", +"Could not update file recovery" => "Nastavitev za obnavljanje dokumentov ni bilo mogoče posodobiti" ); diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index e8e53859bd8..b3de85254e2 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -362,17 +362,7 @@ class Util { } - $query = \OCP\DB::prepare($sql); - - if ($query->execute($args)) { - - return true; - - } else { - - return false; - - } + return is_numeric(\OC_DB::executeAudited($sql, $args)); } @@ -1063,8 +1053,7 @@ class Util { $sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ? and `migration_status` = ?'; $args = array(self::MIGRATION_IN_PROGRESS, $this->userId, self::MIGRATION_OPEN); $query = \OCP\DB::prepare($sql); - $result = $query->execute($args); - $manipulatedRows = $result->numRows(); + $manipulatedRows = $query->execute($args); if ($manipulatedRows === 1) { $return = true; @@ -1087,8 +1076,7 @@ class Util { $sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ? and `migration_status` = ?'; $args = array(self::MIGRATION_COMPLETED, $this->userId, self::MIGRATION_IN_PROGRESS); $query = \OCP\DB::prepare($sql); - $result = $query->execute($args); - $manipulatedRows = $result->numRows(); + $manipulatedRows = $query->execute($args); if ($manipulatedRows === 1) { $return = true; diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index 13298f113f8..71133145c87 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -17,14 +17,25 @@ body { #details { color:#fff; + float: left; } -#header #download { +#public_upload, +#download { font-weight:700; - margin-left:2em; + margin: 0 0.4em 0 2em; + padding: 0 5px; + height: 27px; + float: left; + +} + +#public_upload { + margin-left: 0.3em; } -#header #download img { +#public_upload img, +#download img { padding-left:.1em; padding-right:.3em; vertical-align:text-bottom; @@ -73,3 +84,49 @@ thead{ background-color: white; padding-left:0 !important; /* fixes multiselect bar offset on shared page */ } + +#data-upload-form { + position: relative; + right: 0; + height: 27px; + overflow: hidden; + padding: 0; + float: right; + display: inline; + margin: 0; +} + +#file_upload_start { + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; + filter: alpha(opacity=0); + opacity: 0; + z-index: 20; + position: absolute !important; + top: 0; + left: 0; + width: 100% !important; +} + +#download span { + position: relative; + bottom: 3px; +} + +#publicUploadButtonMock { + position:relative; + display:block; + width:100%; + height:27px; + cursor:pointer; + z-index:10; + background-image:url('%webroot%/core/img/actions/upload.svg'); + background-repeat:no-repeat; + background-position:7px 6px; +} + +#publicUploadButtonMock span { + margin: 0 5px 0 28px; + position: relative; + top: -2px; + color: #555; +} diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index 916e35419c1..0244f392a0e 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -7,6 +7,8 @@ function fileDownloadPath(dir, file) { return url; } +var form_data; + $(document).ready(function() { if (typeof FileActions !== 'undefined') { @@ -46,4 +48,19 @@ $(document).ready(function() { }); } -});
\ No newline at end of file + // Add some form data to the upload handler + file_upload_param.formData = { + MAX_FILE_SIZE: $('#uploadMaxFilesize').val(), + requesttoken: $('#publicUploadRequestToken').val(), + dirToken: $('#dirToken').val(), + appname: 'files_sharing', + subdir: $('input#dir').val() + }; + + // Add Uploadprogress Wrapper to controls bar + $('#controls').append($('#additional_controls div#uploadprogresswrapper')); + + // Cancel upload trigger + $('#cancel_upload_button').click(Files.cancelUploads); + +}); diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 98d2a84fb66..fa8c25fc98d 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -132,15 +132,25 @@ if (isset($path)) { } exit(); } else { + OCP\Util::addScript('files', 'file-upload'); OCP\Util::addStyle('files_sharing', 'public'); OCP\Util::addScript('files_sharing', 'public'); OCP\Util::addScript('files', 'fileactions'); + OCP\Util::addScript('files', 'jquery.iframe-transport'); + OCP\Util::addScript('files', 'jquery.fileupload'); + $maxUploadFilesize=OCP\Util::maxUploadFilesize($path); $tmpl = new OCP\Template('files_sharing', 'public', 'base'); $tmpl->assign('uidOwner', $shareOwner); $tmpl->assign('displayName', \OCP\User::getDisplayName($shareOwner)); $tmpl->assign('filename', $file); + $tmpl->assign('directory_path', $linkItem['file_target']); $tmpl->assign('mimetype', \OC\Files\Filesystem::getMimeType($path)); $tmpl->assign('fileTarget', basename($linkItem['file_target'])); + $tmpl->assign('dirToken', $linkItem['token']); + $tmpl->assign('allowPublicUploadEnabled', (($linkItem['permissions'] & OCP\PERMISSION_CREATE) ? true : false )); + $tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); + $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); + $urlLinkIdentifiers= (isset($token)?'&t='.$token:'') .(isset($_GET['dir'])?'&dir='.$_GET['dir']:'') .(isset($_GET['file'])?'&file='.$_GET['file']:''); @@ -191,15 +201,17 @@ if (isset($path)) { $breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', ''); $breadcrumbNav->assign('breadcrumb', $breadcrumb); $breadcrumbNav->assign('baseURL', OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&path='); + $maxUploadFilesize=OCP\Util::maxUploadFilesize($path); $folder = new OCP\Template('files', 'index', ''); $folder->assign('fileList', $list->fetchPage()); $folder->assign('breadcrumb', $breadcrumbNav->fetchPage()); $folder->assign('dir', $getPath); $folder->assign('isCreatable', false); - $folder->assign('permissions', 0); + $folder->assign('permissions', OCP\PERMISSION_READ); + $folder->assign('isPublic',true); $folder->assign('files', $files); - $folder->assign('uploadMaxFilesize', 0); - $folder->assign('uploadMaxHumanFilesize', 0); + $folder->assign('uploadMaxFilesize', $maxUploadFilesize); + $folder->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); $folder->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $folder->assign('usedSpacePercent', 0); $tmpl->assign('folder', $folder->fetchPage()); diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index adf3c3e9cc8..3a1c370b4c0 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -1,3 +1,7 @@ +<div id="notification-container"> + <div id="notification" style="display: none;"></div> +</div> + <input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir"> <input type="hidden" name="downloadURL" value="<?php p($_['downloadURL']) ?>" id="downloadURL"> <input type="hidden" name="filename" value="<?php p($_['filename']) ?>" id="filename"> @@ -13,13 +17,49 @@ <span id="details"><?php p($l->t('%s shared the file %s with you', array($_['displayName'], $_['fileTarget']))) ?></span> <?php endif; ?> + + <?php if (!isset($_['folder']) || $_['allowZipDownload']): ?> <a href="<?php p($_['downloadURL']); ?>" class="button" id="download"><img class="svg" alt="Download" src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>" - /><?php p($l->t('Download'))?></a> + /><span><?php p($l->t('Download'))?></span></a> <?php endif; ?> + + <?php if ($_['allowPublicUploadEnabled']):?> + + + <input type="hidden" id="publicUploadRequestToken" name="requesttoken" value="<?php p($_['requesttoken']) ?>" /> + <input type="hidden" id="dirToken" name="dirToken" value="<?php p($_['dirToken']) ?>" /> + <input type="hidden" id="uploadMaxFilesize" name="uploadMaxFilesize" value="<?php p($_['uploadMaxFilesize']) ?>" /> + <input type="hidden" id="uploadMaxHumanFilesize" name="uploadMaxHumanFilesize" value="<?php p($_['uploadMaxHumanFilesize']) ?>" /> + <input type="hidden" id="directory_path" name="directory_path" value="<?php p($_['directory_path']) ?>" /> + + + <div id="data-upload-form" class="button"> + <input id="file_upload_start" type="file" name="files[]" data-url="<?php print_unescaped(OCP\Util::linkTo('files', 'ajax/upload.php')); ?>" multiple> + <a href="#" id="publicUploadButtonMock" class="svg"> + <span><?php p($l->t('Upload'))?></span> + </a> + </div> + + </div> + + <div id="additional_controls" style="display:none"> + <div id="uploadprogresswrapper"> + <div id="uploadprogressbar"></div> + <input id="cancel_upload_button" type="button" class="stop" style="display:none" + value="<?php p($l->t('Cancel upload'));?>" + /> + </div> + + + + + <?php endif; ?> + </div> </div></header> +<div id="content"> <div id="preview"> <?php if (isset($_['folder'])): ?> <?php print_unescaped($_['folder']); ?> diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 04f73cf01fe..6f6b8d0f016 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -578,14 +578,12 @@ abstract class Access { '); //feed the DB - $res = $insert->execute(array($dn, $ocname, $this->getUUID($dn), $dn, $ocname)); + $insRows = $insert->execute(array($dn, $ocname, $this->getUUID($dn), $dn, $ocname)); - if(\OCP\DB::isError($res)) { + if(\OCP\DB::isError($insRows)) { return false; } - $insRows = $res->numRows(); - if($insRows === 0) { return false; } diff --git a/apps/user_ldap/lib/helper.php b/apps/user_ldap/lib/helper.php index 10ed40ebd6a..f65f466789f 100644 --- a/apps/user_ldap/lib/helper.php +++ b/apps/user_ldap/lib/helper.php @@ -90,13 +90,13 @@ class Helper { AND `appid` = \'user_ldap\' AND `configkey` NOT IN (\'enabled\', \'installed_version\', \'types\', \'bgjUpdateGroupsLastRun\') '); - $res = $query->execute(array($prefix.'%')); + $delRows = $query->execute(array($prefix.'%')); - if(\OCP\DB::isError($res)) { + if(\OCP\DB::isError($delRows)) { return false; } - if($res->numRows() === 0) { + if($delRows === 0) { return false; } diff --git a/core/css/jquery.multiselect.css b/core/css/jquery.multiselect.css index 156799f0869..898786a6157 100644 --- a/core/css/jquery.multiselect.css +++ b/core/css/jquery.multiselect.css @@ -11,7 +11,7 @@ .ui-multiselect-header span.ui-icon { float:left } .ui-multiselect-header li.ui-multiselect-close { float:right; text-align:right; padding-right:0 } -.ui-multiselect-menu { display:none; padding:3px; position:absolute; z-index:10000 } +.ui-multiselect-menu { display:none; padding:3px; position:absolute; z-index:10000; text-align: left } .ui-multiselect-checkboxes { position:relative /* fixes bug in IE6/7 */; overflow-y:scroll } .ui-multiselect-checkboxes label { cursor:default; display:block; border:1px solid transparent; padding:3px 1px } .ui-multiselect-checkboxes label input { position:relative; top:1px } diff --git a/core/js/jquery.multiselect.js b/core/js/jquery.multiselect.js index 46aab7ebf01..16ae4264177 100644 --- a/core/js/jquery.multiselect.js +++ b/core/js/jquery.multiselect.js @@ -1,6 +1,7 @@ +/* jshint forin:true, noarg:true, noempty:true, eqeqeq:true, boss:true, undef:true, curly:true, browser:true, jquery:true */ /* - * jQuery MultiSelect UI Widget 1.11 - * Copyright (c) 2011 Eric Hynds + * jQuery MultiSelect UI Widget 1.13 + * Copyright (c) 2012 Eric Hynds * * http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/ * @@ -34,8 +35,8 @@ $.widget("ech.multiselect", { noneSelectedText: 'Select options', selectedText: '# selected', selectedList: 0, - show: '', - hide: '', + show: null, + hide: null, autoOpen: false, multiple: true, position: {} @@ -62,7 +63,7 @@ $.widget("ech.multiselect", { menu = (this.menu = $('<div />')) .addClass('ui-multiselect-menu ui-widget ui-widget-content ui-corner-all') .addClass( o.classes ) - .insertAfter( button ), + .appendTo( document.body ), header = (this.header = $('<div />')) .addClass('ui-widget-header ui-corner-all ui-multiselect-header ui-helper-clearfix') @@ -119,70 +120,72 @@ $.widget("ech.multiselect", { menu = this.menu, checkboxContainer = this.checkboxContainer, optgroups = [], - html = [], + html = "", id = el.attr('id') || multiselectID++; // unique ID for the label & option tags // build items - this.element.find('option').each(function( i ){ + el.find('option').each(function( i ){ var $this = $(this), parent = this.parentNode, title = this.innerHTML, description = this.title, value = this.value, - inputID = this.id || 'ui-multiselect-'+id+'-option-'+i, + inputID = 'ui-multiselect-' + (this.id || id + '-option-' + i), isDisabled = this.disabled, isSelected = this.selected, - labelClasses = ['ui-corner-all'], + labelClasses = [ 'ui-corner-all' ], + liClasses = (isDisabled ? 'ui-multiselect-disabled ' : ' ') + this.className, optLabel; // is this an optgroup? - if( parent.tagName.toLowerCase() === 'optgroup' ){ - optLabel = parent.getAttribute('label'); + if( parent.tagName === 'OPTGROUP' ){ + optLabel = parent.getAttribute( 'label' ); // has this optgroup been added already? if( $.inArray(optLabel, optgroups) === -1 ){ - html.push('<li class="ui-multiselect-optgroup-label"><a href="#">' + optLabel + '</a></li>'); + html += '<li class="ui-multiselect-optgroup-label ' + parent.className + '"><a href="#">' + optLabel + '</a></li>'; optgroups.push( optLabel ); } } if( isDisabled ){ - labelClasses.push('ui-state-disabled'); + labelClasses.push( 'ui-state-disabled' ); } // browsers automatically select the first option // by default with single selects if( isSelected && !o.multiple ){ - labelClasses.push('ui-state-active'); + labelClasses.push( 'ui-state-active' ); } - html.push('<li class="' + (isDisabled ? 'ui-multiselect-disabled' : '') + '">'); + html += '<li class="' + liClasses + '">'; // create the label - html.push('<label for="'+inputID+'" title="'+description+'" class="'+labelClasses.join(' ')+ '">'); - html.push('<input id="'+inputID+'" name="multiselect_'+id+'" type="'+(o.multiple ? "checkbox" : "radio")+'" value="'+value+'" title="'+title+'"'); + html += '<label for="' + inputID + '" title="' + description + '" class="' + labelClasses.join(' ') + '">'; + html += '<input id="' + inputID + '" name="multiselect_' + id + '" type="' + (o.multiple ? "checkbox" : "radio") + '" value="' + value + '" title="' + title + '"'; // pre-selected? if( isSelected ){ - html.push(' checked="checked"'); - html.push(' aria-selected="true"'); + html += ' checked="checked"'; + html += ' aria-selected="true"'; } // disabled? if( isDisabled ){ - html.push(' disabled="disabled"'); - html.push(' aria-disabled="true"'); + html += ' disabled="disabled"'; + html += ' aria-disabled="true"'; } // add the title and close everything off - html.push(' /><span>' + title + '</span></label></li>'); + html += ' /><span>' + title + '</span></label></li>'; }); // insert into the DOM - checkboxContainer.html( html.join('') ); + checkboxContainer.html( html ); // cache some moar useful elements this.labels = menu.find('label'); + this.inputs = this.labels.children('input'); // set widths this._setButtonWidth(); @@ -197,10 +200,10 @@ $.widget("ech.multiselect", { } }, - // updates the button text. call refresh() to rebuild + // updates the button text. call refresh() to rebuild update: function(){ var o = this.options, - $inputs = this.labels.find('input'), + $inputs = this.inputs, $checked = $inputs.filter(':checked'), numChecked = $checked.length, value; @@ -211,7 +214,7 @@ $.widget("ech.multiselect", { if($.isFunction( o.selectedText )){ value = o.selectedText.call(this, numChecked, $inputs.length, $checked.get()); } else if( /\d/.test(o.selectedList) && o.selectedList > 0 && numChecked <= o.selectedList){ - value = $checked.map(function(){ return this.title; }).get().join(', '); + value = $checked.map(function(){ return $(this).next().html(); }).get().join(', '); } else { value = o.selectedText.replace('#', numChecked).replace('#', $inputs.length); } @@ -291,8 +294,8 @@ $.widget("ech.multiselect", { var $this = $(this), $inputs = $this.parent().nextUntil('li.ui-multiselect-optgroup-label').find('input:visible:not(:disabled)'), - nodes = $inputs.get(), - label = $this.parent().text(); + nodes = $inputs.get(), + label = $this.parent().text(); // trigger event and bail if the return is false if( self._trigger('beforeoptgrouptoggle', e, { inputs:nodes, label:label }) === false ){ @@ -343,11 +346,15 @@ $.widget("ech.multiselect", { tags = self.element.find('option'); // bail if this input is disabled or the event is cancelled - if( this.disabled || self._trigger('click', e, { value:val, text:this.title, checked:checked }) === false ){ + if( this.disabled || self._trigger('click', e, { value: val, text: this.title, checked: checked }) === false ){ e.preventDefault(); return; } + // make sure the input has focus. otherwise, the esc key + // won't close the menu after clicking an item. + $this.focus(); + // toggle aria state $this.attr('aria-selected', checked); @@ -389,7 +396,7 @@ $.widget("ech.multiselect", { // handler fires before the form is actually reset. delaying it a bit // gives the form inputs time to clear. $(this.element[0].form).bind('reset.multiselect', function(){ - setTimeout(function(){ self.update(); }, 10); + setTimeout($.proxy(self.refresh, self), 10); }); }, @@ -428,7 +435,7 @@ $.widget("ech.multiselect", { // if at the first/last element if( !$next.length ){ - var $container = this.menu.find('ul:last'); + var $container = this.menu.find('ul').last(); // move to the first/last this.menu.find('label')[ moveToLast ? 'last' : 'first' ]().trigger('mouseover'); @@ -445,27 +452,29 @@ $.widget("ech.multiselect", { // other related attributes of a checkbox. // // The context of this function should be a checkbox; do not proxy it. - _toggleCheckbox: function( prop, flag ){ + _toggleState: function( prop, flag ){ return function(){ - !this.disabled && (this[ prop ] = flag); + if( !this.disabled ) { + this[ prop ] = flag; + } if( flag ){ this.setAttribute('aria-selected', true); } else { this.removeAttribute('aria-selected'); } - } + }; }, _toggleChecked: function( flag, group ){ - var $inputs = (group && group.length) ? - group : - this.labels.find('input'), - + var $inputs = (group && group.length) ? group : this.inputs, self = this; // toggle state on inputs - $inputs.each(this._toggleCheckbox('checked', flag)); + $inputs.each(this._toggleState('checked', flag)); + + // give the first input focus + $inputs.eq(0).focus(); // update button text this.update(); @@ -480,7 +489,7 @@ $.widget("ech.multiselect", { .find('option') .each(function(){ if( !this.disabled && $.inArray(this.value, values) > -1 ){ - self._toggleCheckbox('selected', flag).call( this ); + self._toggleState('selected', flag).call( this ); } }); @@ -494,9 +503,22 @@ $.widget("ech.multiselect", { this.button .attr({ 'disabled':flag, 'aria-disabled':flag })[ flag ? 'addClass' : 'removeClass' ]('ui-state-disabled'); - this.menu - .find('input') - .attr({ 'disabled':flag, 'aria-disabled':flag }) + var inputs = this.menu.find('input'); + var key = "ech-multiselect-disabled"; + + if(flag) { + // remember which elements this widget disabled (not pre-disabled) + // elements, so that they can be restored if the widget is re-enabled. + inputs = inputs.filter(':enabled') + .data(key, true) + } else { + inputs = inputs.filter(function() { + return $.data(this, key) === true; + }).removeData(key); + } + + inputs + .attr({ 'disabled':flag, 'arial-disabled':flag }) .parent()[ flag ? 'addClass' : 'removeClass' ]('ui-state-disabled'); this.element @@ -509,16 +531,17 @@ $.widget("ech.multiselect", { button = this.button, menu = this.menu, speed = this.speed, - o = this.options; + o = this.options, + args = []; // bail if the multiselectopen event returns false, this widget is disabled, or is already open if( this._trigger('beforeopen') === false || button.hasClass('ui-state-disabled') || this._isOpen ){ return; } - var $container = menu.find('ul:last'), + var $container = menu.find('ul').last(), effect = o.show, - pos = button.position(); + pos = button.offset(); // figure out opening effects/speeds if( $.isArray(o.show) ){ @@ -526,6 +549,12 @@ $.widget("ech.multiselect", { speed = o.show[1] || self.speed; } + // if there's an effect, assume jQuery UI is in use + // build the arguments to pass to show() + if( effect ) { + args = [ effect, speed ]; + } + // set the scroll of the checkbox container $container.scrollTop(0).height(o.height); @@ -536,17 +565,19 @@ $.widget("ech.multiselect", { menu .show() .position( o.position ) - .hide() - .show( effect, speed ); + .hide(); // if position utility is not available... } else { menu.css({ - top: pos.top+button.outerHeight(), + top: pos.top + button.outerHeight(), left: pos.left - }).show( effect, speed ); + }); } + // show the menu, maybe with a speed/effect combo + $.fn.show.apply(menu, args); + // select the first option // triggering both mouseover and mouseover because 1.4.2+ has a bug where triggering mouseover // will actually trigger mouseenter. the mouseenter trigger is there for when it's eventually fixed @@ -563,7 +594,10 @@ $.widget("ech.multiselect", { return; } - var o = this.options, effect = o.hide, speed = this.speed; + var o = this.options, + effect = o.hide, + speed = this.speed, + args = []; // figure out opening effects/speeds if( $.isArray(o.hide) ){ @@ -571,7 +605,11 @@ $.widget("ech.multiselect", { speed = o.hide[1] || this.speed; } - this.menu.hide(effect, speed); + if( effect ) { + args = [ effect, speed ]; + } + + $.fn.hide.apply(this.menu, args); this.button.removeClass('ui-state-active').trigger('blur').trigger('mouseleave'); this._isOpen = false; this._trigger('close'); @@ -618,6 +656,10 @@ $.widget("ech.multiselect", { return this.menu; }, + getButton: function(){ + return this.button; + }, + // react to option changes after initialization _setOption: function( key, value ){ var menu = this.menu; @@ -633,7 +675,7 @@ $.widget("ech.multiselect", { menu.find('a.ui-multiselect-none span').eq(-1).text(value); break; case 'height': - menu.find('ul:last').height( parseInt(value,10) ); + menu.find('ul').last().height( parseInt(value,10) ); break; case 'minWidth': this.options[ key ] = parseInt(value,10); @@ -649,6 +691,11 @@ $.widget("ech.multiselect", { case 'classes': menu.add(this.button).removeClass(this.options.classes).addClass(value); break; + case 'multiple': + menu.toggleClass('ui-multiselect-single', !value); + this.options.multiple = value; + this.element[0].multiple = value; + this.refresh(); } $.Widget.prototype._setOption.apply( this, arguments ); diff --git a/core/js/share.js b/core/js/share.js index 36e4babedf9..cb37dd70366 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -156,6 +156,19 @@ OC.Share={ html += '<br />'; } if (possiblePermissions & OC.PERMISSION_SHARE) { + // Determine the Allow Public Upload status. + // Used later on to determine if the + // respective checkbox should be checked or + // not. + + var allowPublicUploadStatus = false; + $.each(data.shares, function(key, value) { + if (allowPublicUploadStatus) { + return true; + } + allowPublicUploadStatus = (value.permissions & OC.PERMISSION_CREATE) ? true : false; + }); + html += '<input id="shareWith" type="text" placeholder="'+t('core', 'Share with')+'" />'; html += '<ul id="shareWithList">'; html += '</ul>'; @@ -168,12 +181,16 @@ OC.Share={ html += '<div id="linkPass">'; html += '<input id="linkPassText" type="password" placeholder="'+t('core', 'Password')+'" />'; html += '</div>'; - html += '</div>'; + html += '<div id="allowPublicUploadWrapper" style="display:none;">'; + html += '<input type="checkbox" value="1" name="allowPublicUpload" id="sharingDialogAllowPublicUpload"' + ((allowPublicUploadStatus) ? 'checked="checked"' : '') + ' />'; + html += '<label for="sharingDialogAllowPublicUpload">' + t('core', 'Allow Public Upload') + '</label>'; + html += '</div></div>'; html += '<form id="emailPrivateLink" >'; html += '<input id="email" style="display:none; width:62%;" value="" placeholder="'+t('core', 'Email link to person')+'" type="text" />'; html += '<input id="emailButton" style="display:none;" type="submit" value="'+t('core', 'Send')+'" />'; html += '</form>'; } + html += '<div id="expiration">'; html += '<input type="checkbox" name="expirationCheckbox" id="expirationCheckbox" value="1" /><label for="expirationCheckbox">'+t('core', 'Set expiration date')+'</label>'; html += '<input id="expirationDate" type="text" placeholder="'+t('core', 'Expiration date')+'" style="display:none; width:90%;" />'; @@ -370,6 +387,7 @@ OC.Share={ $('#expiration').show(); $('#emailPrivateLink #email').show(); $('#emailPrivateLink #emailButton').show(); + $('#allowPublicUploadWrapper').show(); }, hideLink:function() { $('#linkText').hide('blind'); @@ -378,6 +396,7 @@ OC.Share={ $('#linkPass').hide(); $('#emailPrivateLink #email').hide(); $('#emailPrivateLink #emailButton').hide(); + $('#allowPublicUploadWrapper').hide(); }, dirname:function(path) { return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, ''); @@ -543,6 +562,28 @@ $(document).ready(function() { $(this).select(); }); + // Handle the Allow Public Upload Checkbox + $(document).on('click', '#sharingDialogAllowPublicUpload', function() { + + // Gather data + var allowPublicUpload = $(this).is(':checked'); + var itemType = $('#dropdown').data('item-type'); + var itemSource = $('#dropdown').data('item-source'); + var permissions = 0; + + // Calculate permissions + if (allowPublicUpload) { + permissions = OC.PERMISSION_UPDATE + OC.PERMISSION_CREATE + OC.PERMISSION_READ; + } else { + permissions = OC.PERMISSION_READ; + } + + // Update the share information + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', permissions, function(data) { + return; + }); + }); + $(document).on('click', '#dropdown #showPassword', function() { $('#linkPass').toggle('blind'); if (!$('#showPassword').is(':checked') ) { diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 77c3fb854b4..8bef5151163 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -7,7 +7,7 @@ "%s ID not provided." => "%s ID no provista. ", "Error adding %s to favorites." => "Error al agregar %s a favoritos. ", "No categories selected for deletion." => "No se seleccionaron categorías para borrar.", -"Error removing %s from favorites." => "Error al remover %s de favoritos. ", +"Error removing %s from favorites." => "Error al borrar %s de favoritos. ", "Sunday" => "Domingo", "Monday" => "Lunes", "Tuesday" => "Martes", @@ -32,7 +32,7 @@ "1 minute ago" => "hace 1 minuto", "{minutes} minutes ago" => "hace {minutes} minutos", "1 hour ago" => "1 hora atrás", -"{hours} hours ago" => "{hours} horas atrás", +"{hours} hours ago" => "hace {hours} horas", "today" => "hoy", "yesterday" => "ayer", "{days} days ago" => "hace {days} días", @@ -47,51 +47,51 @@ "Yes" => "Sí", "No" => "No", "Ok" => "Aceptar", -"The object type is not specified." => "El tipo de objeto no esta especificado. ", +"The object type is not specified." => "El tipo de objeto no está especificado. ", "Error" => "Error", -"The app name is not specified." => "El nombre de la aplicación no esta especificado.", +"The app name is not specified." => "El nombre de la App no está especificado.", "The required file {file} is not installed!" => "¡El archivo requerido {file} no está instalado!", "Shared" => "Compartido", "Share" => "Compartir", "Error while sharing" => "Error al compartir", -"Error while unsharing" => "Error en el procedimiento de ", +"Error while unsharing" => "Error en al dejar de compartir", "Error while changing permissions" => "Error al cambiar permisos", "Shared with you and the group {group} by {owner}" => "Compartido con vos y el grupo {group} por {owner}", "Shared with you by {owner}" => "Compartido con vos por {owner}", "Share with" => "Compartir con", -"Share with link" => "Compartir con link", +"Share with link" => "Compartir con enlace", "Password protect" => "Proteger con contraseña ", "Password" => "Contraseña", -"Email link to person" => "Enviar el link por e-mail.", -"Send" => "Enviar", +"Email link to person" => "Enviar el enlace por e-mail.", +"Send" => "Mandar", "Set expiration date" => "Asignar fecha de vencimiento", "Expiration date" => "Fecha de vencimiento", -"Share via email:" => "compartido a través de e-mail:", +"Share via email:" => "Compartir a través de e-mail:", "No people found" => "No se encontraron usuarios", "Resharing is not allowed" => "No se permite volver a compartir", "Shared in {item} with {user}" => "Compartido en {item} con {user}", "Unshare" => "Dejar de compartir", -"can edit" => "puede editar", +"can edit" => "podés editar", "access control" => "control de acceso", "create" => "crear", "update" => "actualizar", "delete" => "borrar", "share" => "compartir", "Password protected" => "Protegido por contraseña", -"Error unsetting expiration date" => "Error al remover la fecha de caducidad", +"Error unsetting expiration date" => "Error al remover la fecha de vencimiento", "Error setting expiration date" => "Error al asignar fecha de vencimiento", -"Sending ..." => "Enviando...", -"Email sent" => "Email enviado", +"Sending ..." => "Mandando...", +"Email sent" => "e-mail mandado", "The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "La actualización no pudo ser completada. Por favor, reportá el inconveniente a la comunidad <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud</a>.", "The update was successful. Redirecting you to ownCloud now." => "La actualización fue exitosa. Estás siendo redirigido a ownCloud.", "ownCloud password reset" => "Restablecer contraseña de ownCloud", "Use the following link to reset your password: {link}" => "Usá este enlace para restablecer tu contraseña: {link}", -"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "El enlace para restablecer la contraseña fue enviada a tu correo electrónico. <br> Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado. <br> Si no está ahí, preguntale a tu administrador.", +"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "El enlace para restablecer la contraseña fue enviada a tu e-mail. <br> Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado. <br> Si no está ahí, preguntale a tu administrador.", "Request failed!<br>Did you make sure your email/username was right?" => "¡Error en el pedido! <br> ¿Estás seguro de que tu dirección de correo electrónico o nombre de usuario son correcto?", -"You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña", +"You will receive a link to reset your password via Email." => "Vas a recibir un enlace por e-mail para restablecer tu contraseña.", "Username" => "Nombre de usuario", -"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?" => "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se resetee tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a de querer continuar?", -"Yes, I really want to reset my password now" => "Sí, definitivamente quiero resetear mi contraseña ahora", +"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?" => "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se restablezca tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a que querés continuar?", +"Yes, I really want to reset my password now" => "Sí, definitivamente quiero restablecer mi contraseña ahora", "Request reset" => "Solicitar restablecimiento", "Your password was reset" => "Tu contraseña fue restablecida", "To login page" => "A la página de inicio de sesión", @@ -99,44 +99,44 @@ "Reset password" => "Restablecer contraseña", "Personal" => "Personal", "Users" => "Usuarios", -"Apps" => "Aplicaciones", +"Apps" => "Apps", "Admin" => "Administración", "Help" => "Ayuda", -"Access forbidden" => "Acceso denegado", +"Access forbidden" => "Acceso prohibido", "Cloud not found" => "No se encontró ownCloud", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!", -"web services under your control" => "servicios web controlados por vos", +"web services under your control" => "servicios web que controlás", "Edit categories" => "Editar categorías", "Add" => "Agregar", "Security Warning" => "Advertencia de seguridad", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La versión de PHP que tenés, es vulnerable al ataque de byte NULL (CVE-2006-7243)", "Please update your PHP installation to use ownCloud securely." => "Actualizá tu instalación de PHP para usar ownCloud de manera segura.", -"No secure random number generator is available, please enable the PHP OpenSSL extension." => "No hay disponible ningún generador de números aleatorios seguro. Por favor habilitá la extensión OpenSSL de PHP.", -"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro un atacante podría predecir los tokens de reinicio de tu contraseña y tomar control de tu cuenta.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "No hay disponible ningún generador de números aleatorios seguro. Por favor, habilitá la extensión OpenSSL de PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de números aleatorios seguro un atacante podría predecir las pruebas de reinicio de tu contraseña y tomar control de tu cuenta.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Tu directorio de datos y tus archivos probablemente son accesibles a través de internet, ya que el archivo .htaccess no está funcionando.", "For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "Para información sobre cómo configurar adecuadamente tu servidor, por favor mirá la <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentación</a>.", "Create an <strong>admin account</strong>" => "Crear una <strong>cuenta de administrador</strong>", "Advanced" => "Avanzado", "Data folder" => "Directorio de almacenamiento", "Configure the database" => "Configurar la base de datos", -"will be used" => "se utilizarán", +"will be used" => "se usarán", "Database user" => "Usuario de la base de datos", "Database password" => "Contraseña de la base de datos", "Database name" => "Nombre de la base de datos", "Database tablespace" => "Espacio de tablas de la base de datos", -"Database host" => "Host de la base de datos", +"Database host" => "Huésped de la base de datos", "Finish setup" => "Completar la instalación", "%s is available. Get more information on how to update." => "%s está disponible. Obtené más información sobre cómo actualizar.", "Log out" => "Cerrar la sesión", "Automatic logon rejected!" => "¡El inicio de sesión automático fue rechazado!", "If you did not change your password recently, your account may be compromised!" => "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta esté comprometida!", -"Please change your password to secure your account again." => "Por favor, cambiá tu contraseña para fortalecer nuevamente la seguridad de tu cuenta.", +"Please change your password to secure your account again." => "Por favor, cambiá tu contraseña para incrementar la seguridad de tu cuenta.", "Lost your password?" => "¿Perdiste tu contraseña?", "remember" => "recordame", -"Log in" => "Entrar", +"Log in" => "Iniciar sesión", "Alternative Logins" => "Nombre alternativos de usuarios", "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hola,<br><br>Simplemente te informo que %s compartió %s con vos.<br><a href=\"%s\">Miralo acá:</a><br><br>¡Chau!", "prev" => "anterior", "next" => "siguiente", -"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, puede domorar un rato." +"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, puede demorar un rato." ); diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 3b539f7fe22..81440044adb 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"%s shared »%s« with you" => "%s je delil »%s« z vami", "Category type not provided." => "Vrsta kategorije ni podana.", "No category to add?" => "Ali ni kategorije za dodajanje?", "This category already exists: %s" => "Kategorija že obstaja: %s", @@ -42,6 +43,7 @@ "years ago" => "let nazaj", "Choose" => "Izbor", "Cancel" => "Prekliči", +"Error loading file picker template" => "Napaka pri nalaganju predloge za izbor dokumenta", "Yes" => "Da", "No" => "Ne", "Ok" => "V redu", @@ -88,6 +90,8 @@ "Request failed!<br>Did you make sure your email/username was right?" => "Zahteva je spodletela!<br>Ali sta elektronski naslov oziroma uporabniško ime navedena pravilno?", "You will receive a link to reset your password via Email." => "Na elektronski naslov boste prejeli povezavo za ponovno nastavitev gesla.", "Username" => "Uporabniško ime", +"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?" => "Datoteke so šifrirane. Če niste omogočili ključa za obnovitev, žal podatkov ne bo mogoče pridobiti nazaj, ko boste geslo enkrat spremenili. Če niste prepričani, kaj storiti, se obrnite na skrbnika storitve. Ste prepričani, da želite nadaljevati?", +"Yes, I really want to reset my password now" => "Da, potrjujem ponastavitev gesla", "Request reset" => "Zahtevaj ponovno nastavitev", "Your password was reset" => "Geslo je ponovno nastavljeno", "To login page" => "Na prijavno stran", @@ -100,6 +104,7 @@ "Help" => "Pomoč", "Access forbidden" => "Dostop je prepovedan", "Cloud not found" => "Oblaka ni mogoče najti", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Pozdravljen/a,⏎\n⏎\nsporočam, da je %s delil %s s teboj.⏎\nPoglej na: %s⏎\n⏎\nLep pozdrav!", "web services under your control" => "spletne storitve pod vašim nadzorom", "Edit categories" => "Uredi kategorije", "Add" => "Dodaj", @@ -130,6 +135,7 @@ "remember" => "zapomni si", "Log in" => "Prijava", "Alternative Logins" => "Druge prijavne možnosti", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Pozdravljen/a,<br><br>sporočam, da je %s delil »%s« s teboj.<br><a href=\"%s\">Poglej vsebine!</a><br><br>Lep pozdrav!", "prev" => "nazaj", "next" => "naprej", "Updating ownCloud to version %s, this may take a while." => "Posodabljanje sistema ownCloud na različico %s je lahko dolgotrajno." diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 41e885396d7..5db20885a18 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 00:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Instellings" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index d0aaba84772..f224d863f24 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index cafbf8b0d93..3e2a0420f83 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "لم يتم اختيار فئة للحذف" msgid "Error removing %s from favorites." msgstr "خطأ في حذف %s من المفضلة" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "الاحد" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "الأثنين" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "الثلاثاء" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "الاربعاء" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "الخميس" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "الجمعه" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "السبت" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "كانون الثاني" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "شباط" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "آذار" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "نيسان" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "أيار" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "حزيران" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "تموز" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "آب" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "أيلول" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "تشرين الاول" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "تشرين الثاني" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "كانون الاول" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "إعدادات" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "منذ دقيقة" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "قبل ساعة مضت" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ساعة مضت" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "اليوم" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} يوم سابق" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} شهر مضت" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "سنة مضت" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index f3cafe7a6e7..a12ca80f12a 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 6f517e7c90a..7edca4cb77e 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 3f47cdeda06..4898a1ad46c 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 1b87c576798..5c502f84616 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 5d21c869ed6..150b89490da 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index f19133fabb0..7016b07b452 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 12b60c39728..c673a183e3d 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index df6f19e4e53..2df1ed86ae7 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Няма избрани категории за изтриване" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Неделя" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понеделник" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Вторник" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Сряда" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четвъртък" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Петък" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Събота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Януари" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Февруари" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Март" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Април" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Май" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Юни" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Юли" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Август" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Септември" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Октомври" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Ноември" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Декември" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Настройки" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "преди 1 минута" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "преди 1 час" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "днес" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "вчера" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "последният месец" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "последната година" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "последните години" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 00812512505..fc7c0813dc0 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 40ddac8dbdd..b00a21cd12f 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index f024808d5a6..928620c8c8d 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 63b2b436ea8..6b77c507fad 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Димитър Кръстев <dimitar.t.krastev@gmail.com>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index e195eb4ba19..ba5eafd89a2 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Димитър Кръстев <dimitar.t.krastev@gmail.com>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index eb25bb66484..0425d5bcd12 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index e500fe54fd7..7d892caddca 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 0a3a474d3e2..d2244f8f26d 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "মুছে ফেলার জন্য কনো ক্যাটে msgid "Error removing %s from favorites." msgstr "প্রিয় থেকে %s সরিয়ে ফেলতে সমস্যা দেখা দিয়েছে।" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "রবিবার" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "সোমবার" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "বুধবার" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "বৃহস্পতিবার" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "শুক্রবার" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "শনিবার" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "জানুয়ারি" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "ফেব্রুয়ারি" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "মার্চ" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "এপ্রিল" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "মে" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "জুন" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "জুলাই" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "অগাষ্ট" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "সেপ্টেম্বর" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "অক্টোবর" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "নভেম্বর" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "১ মিনিট পূর্বে" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূর্বে" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ঘন্টা পূর্বে" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "আজ" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} দিন পূর্বে" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "গত মাস" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} মাস পূর্বে" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "গত বছর" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "বছর পূর্বে" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 81d1cf99871..b95e2af8542 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 25bef73f5e7..f602aa8001f 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 0b17a43cbaf..50c519a6f8a 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index b7d203caa12..f1eaee6bfdf 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 78a9b05024a..d814ba94101 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index bf61fd2004b..bdea723e5bf 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index b934bec3990..044795a52b8 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index a56fe6475db..12302412a5a 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index bc87fa7673a..4a591c91667 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index baa1264b2f4..a2a5ebbb22a 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 74b3246d057..708f20fc338 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "No hi ha categories per eliminar." msgid "Error removing %s from favorites." msgstr "Error en eliminar %s dels preferits." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Diumenge" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Dilluns" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dimarts" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Dimecres" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Dijous" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Divendres" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Dissabte" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Gener" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Febrer" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Març" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maig" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juny" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juliol" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agost" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Setembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Octubre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configuració" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "avui" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ahir" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "el mes passat" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "l'any passat" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anys enrere" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 3848fb765d1..b18273dc29e 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 380d2ad0e62..30c99fd9486 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 32b91213c24..258170d04a7 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index f4c82a2a13c..488533bdbbc 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 21e1e2b42bd..c221d72cae0 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index f3d1dacbdb8..c1200a5a33c 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 095ed8b8723..2981c3293a1 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index f914ae46947..dcfd934eeb4 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Žádné kategorie nebyly vybrány ke smazání." msgid "Error removing %s from favorites." msgstr "Chyba při odebírání %s z oblíbených." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Neděle" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pondělí" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Úterý" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Středa" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Čtvrtek" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Pátek" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sobota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Leden" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Únor" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Březen" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Duben" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Květen" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Červen" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Červenec" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Srpen" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Září" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Říjen" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Listopad" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Prosinec" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Nastavení" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "dnes" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "včera" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "před měsíci" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "minulý rok" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "před lety" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 8e82ebd7f83..46deef94bdf 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index e3716085af2..cd1cd3a4145 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 7ca1084cbab..856f3b65b7c 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 4c929a0feb4..ebd413ab142 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 9ce3a578284..b6bb1f9903a 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index e20ff07ce6f..3a490d2e8a4 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 9c2f882ee6f..d3acf48c8b8 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 2fdd1c36335..7e99e29fbb5 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Ni ddewiswyd categorïau i'w dileu." msgid "Error removing %s from favorites." msgstr "Gwall wrth dynnu %s o ffefrynnau." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sul" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Llun" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Mawrth" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mercher" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Iau" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Gwener" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sadwrn" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Ionawr" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Chwefror" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mawrth" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Ebrill" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Mehefin" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Gorffennaf" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Awst" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Medi" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Hydref" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Tachwedd" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Rhagfyr" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 munud yn ôl" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} munud yn ôl" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 awr yn ôl" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} awr yn ôl" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "heddiw" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ddoe" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} diwrnod yn ôl" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} mis yn ôl" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "y llynedd" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "blwyddyn yn ôl" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 901b0210895..562a37a0ab3 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 4d2a2eae5c0..991a0e37e35 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 0a57a9cde56..5fab9dbda4a 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 5788c4b356c..e4455094971 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index d36b3089295..4b5340d0bae 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 8c3ebe31740..5bea91c7269 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 0cafa6fa3fe..7150bd64251 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index ee143650862..1265ff42843 100644 --- a/l10n/da/core.po +++ b/l10n/da/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Ingen kategorier valgt" msgid "Error removing %s from favorites." msgstr "Fejl ved fjernelse af %s fra favoritter." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Søndag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Mandag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Tirsdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Fredag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Lørdag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marts" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "December" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "i dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "i går" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "sidste måned" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "måneder siden" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "sidste år" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "år siden" diff --git a/l10n/da/files.po b/l10n/da/files.po index 14ec9de6698..fa812cc588f 100644 --- a/l10n/da/files.po +++ b/l10n/da/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Ole Holm Frandsen <froksen@gmail.com>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 360b6a00758..a712dfd102b 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 63aa4bc1737..a26ce5d0035 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index c0a227946da..32bf2873a4f 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 3e77cbaf0d0..ac032032948 100644 --- a/l10n/da/lib.po +++ b/l10n/da/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Ole Holm Frandsen <froksen@gmail.com>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index d95f5c114dc..cfd49d83c9d 100644 --- a/l10n/da/settings.po +++ b/l10n/da/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index e6f5ed9d780..9c5188d8109 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 3329cb8d3ff..b0da1cfe8d5 100644 --- a/l10n/de/core.po +++ b/l10n/de/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -65,135 +65,135 @@ msgstr "Es wurde keine Kategorien zum Löschen ausgewählt." msgid "Error removing %s from favorites." msgstr "Fehler beim Entfernen von %s von den Favoriten." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sonntag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Montag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dienstag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mittwoch" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Donnerstag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Freitag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Samstag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "März" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dezember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "Heute" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "Gestern" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/files.po b/l10n/de/files.po index ee99969b612..d96655c4797 100644 --- a/l10n/de/files.po +++ b/l10n/de/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: ninov <ninovdl@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 36c2eaf3742..5b305c5dbce 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 47a0b7c931b..9c4b571c803 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 0febaa69c38..79b9329c532 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 8694bc30450..408a6dfca92 100644 --- a/l10n/de/lib.po +++ b/l10n/de/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: ninov <ninovdl@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index b193c6a20d7..2c00a1416b5 100644 --- a/l10n/de/settings.po +++ b/l10n/de/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 81d2d4aaa21..53e2496a595 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index b3b252cecb7..e575a9af183 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -66,135 +66,135 @@ msgstr "Es wurden keine Kategorien zum Löschen ausgewählt." msgid "Error removing %s from favorites." msgstr "Fehler beim Entfernen von %s von den Favoriten." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sonntag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Montag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dienstag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mittwoch" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Donnerstag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Freitag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Samstag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "März" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dezember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "Heute" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "Gestern" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index d1dd4477eb4..d35729d292a 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: a.tangemann <a.tangemann@web.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 36c187ac1f2..641765eb02e 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 10fc41ca5d1..72762135d66 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index af00f22b582..a5e4564dce1 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index d150c9ea1f2..7ed7abf5d23 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 518f1aa7485..ba9f27815a7 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 393a83e49f5..fe391ef40d3 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 7522d7cf10c..f2f00ba65fc 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -68,135 +68,135 @@ msgstr "Δεν επιλέχτηκαν κατηγορίες για διαγραφ msgid "Error removing %s from favorites." msgstr "Σφάλμα αφαίρεσης %s από τα αγαπημένα." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Κυριακή" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Δευτέρα" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Τρίτη" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Τετάρτη" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Πέμπτη" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Παρασκευή" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Σάββατο" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Ιανουάριος" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Φεβρουάριος" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Μάρτιος" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Απρίλιος" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Μάϊος" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Ιούνιος" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Ιούλιος" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Αύγουστος" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Σεπτέμβριος" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Οκτώβριος" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Νοέμβριος" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "σήμερα" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "χτες" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "χρόνια πριν" diff --git a/l10n/el/files.po b/l10n/el/files.po index b6072df48b8..7b1288ee4d7 100644 --- a/l10n/el/files.po +++ b/l10n/el/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index b06796c7f85..77745124699 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: KAT.RAT12 <spanish.katerina@gmail.com>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index d6cfe458552..4f087b7f5a4 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index d15ee15a56b..f7864d342c4 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 6098e170aa9..ee0e8201baf 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index f8360c568f8..eb144433628 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index d1fbba123f7..da12f71303d 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 309bf275953..f16709aa46f 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 7ceb81b1df6..df4c76d7a7f 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 38371de9a25..0b98d4ec9c3 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Mariano <mstreet@kde.org.ar>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Neniu kategorio elektiĝis por forigo." msgid "Error removing %s from favorites." msgstr "Eraro dum forigo de %s el favoratoj." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "dimanĉo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "lundo" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "mardo" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "merkredo" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "ĵaŭdo" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "vendredo" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "sabato" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januaro" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februaro" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marto" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprilo" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Majo" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Junio" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Aŭgusto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembro" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktobro" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembro" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembro" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Agordo" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "antaŭ {minutes} minutoj" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "antaŭ {hours} horoj" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hodiaŭ" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "antaŭ {days} tagoj" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "lastamonate" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "antaŭ {months} monatoj" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "lastajare" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "jaroj antaŭe" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 55a57eb0438..a1d4af7ac84 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mariano <mstreet@kde.org.ar>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index b19e65069ec..96490ba84d4 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index e55df6f34d8..a2d2fd645a5 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 9889535bc5a..ce955376cee 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 80a9c4ce8c4..2fd12e9d9d6 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mariano <mstreet@kde.org.ar>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index d3fc64da1d9..bf19cd385f4 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 6b8a1a6a30c..e627a09f323 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 3a028120c63..1e17f88fcee 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Art O. Pal <artopal@fastmail.fm>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -67,135 +67,135 @@ msgstr "No hay categorías seleccionadas para borrar." msgid "Error removing %s from favorites." msgstr "Error eliminando %s de los favoritos." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lunes" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martes" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Miércoles" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Jueves" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Viernes" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Enero" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Febrero" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marzo" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mayo" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Junio" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septiembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Octubre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Noviembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Diciembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ajustes" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoy" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ayer" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "el mes pasado" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "hace meses" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "el año pasado" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "hace años" diff --git a/l10n/es/files.po b/l10n/es/files.po index eaa87e4858e..651ab1e521b 100644 --- a/l10n/es/files.po +++ b/l10n/es/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Art O. Pal <artopal@fastmail.fm>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index 7a064fb6f37..9508abeb49c 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# asaez <asaez@asaez.eu>, 2013 # gmoriello <gmoriello@gmail.com>, 2013 # saskarip <saskarip@gmail.com>, 2013 # William Díaz <wdiazux@gmail.com>, 2013 @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 21:40+0000\n" -"Last-Translator: xhiena <xhiena@gmail.com>\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 08:10+0000\n" +"Last-Translator: asaez <asaez@asaez.eu>\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" @@ -62,17 +63,17 @@ msgid "" "Your private key is not valid! Maybe your password was changed from outside." " You can update your private key password in your personal settings to " "regain access to your files" -msgstr "" +msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus ficheros" #: hooks/hooks.php:44 msgid "PHP module OpenSSL is not installed." -msgstr "" +msgstr "El módulo OpenSSL de PHP no está instalado." #: hooks/hooks.php:45 msgid "" "Please ask your server administrator to install the module. For now the " "encryption app was disabled." -msgstr "" +msgstr "Por favor pida al administrador de su servidor que le instale el módulo. De momento la aplicación de cifrado está deshabilitada." #: js/settings-admin.js:11 msgid "Saving..." @@ -82,15 +83,15 @@ msgstr "Guardando..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Puede desbloquear su clave privada en su" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "opciones personales" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -99,11 +100,11 @@ msgstr "Cifrado" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Habilitar la clave de recuperación (permite recuperar los ficheros del usuario en caso de pérdida de la contraseña);" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Contraseña de clave de recuperación" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -115,15 +116,15 @@ msgstr "Deshabilitado" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Cambiar la contraseña de la clave de recuperación" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Contraseña de la antigua clave de recuperación" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Contraseña de la nueva clave de recuperación" #: templates/settings-admin.php:53 msgid "Change Password" @@ -131,29 +132,29 @@ msgstr "Cambiar contraseña" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Su contraseña de clave privada ya no coincide con su contraseña de acceso:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus ficheros." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Contraseña de acceso antigua" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Contraseña de acceso actual" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Actualizar Contraseña de Clave Privada" #: templates/settings-personal.php:45 msgid "Enable password recovery:" @@ -163,7 +164,7 @@ msgstr "Habilitar la recuperación de contraseña:" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Habilitar esta opción le permitirá volver a tener acceso a sus ficheros cifrados en caso de pérdida de contraseña" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index b4100782eb4..0832ba47682 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index ef1b9977dce..937cc081cb7 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 8a72120f5d9..2633f603a89 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 9cfbcf417e3..d09099c11a7 100644 --- a/l10n/es/lib.po +++ b/l10n/es/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: xhiena <xhiena@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index d4aef6810bd..4c337ee3b54 100644 --- a/l10n/es/settings.po +++ b/l10n/es/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 9b35e733847..49dc4d4b9bb 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: xhiena <xhiena@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 8fbf7359904..3f8490c0844 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: cjtess <claudio.tessone@gmail.com>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -60,137 +60,137 @@ msgstr "No se seleccionaron categorías para borrar." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Error al remover %s de favoritos. " +msgstr "Error al borrar %s de favoritos. " -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lunes" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martes" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Miércoles" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Jueves" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Viernes" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "enero" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "febrero" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "marzo" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "mayo" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "junio" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "julio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "septiembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "octubre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "noviembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "diciembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configuración" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" -msgstr "{hours} horas atrás" +msgstr "hace {hours} horas" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoy" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ayer" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "el mes pasado" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses atrás" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "el año pasado" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "años atrás" @@ -221,7 +221,7 @@ msgstr "Aceptar" #: 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 "El tipo de objeto no esta especificado. " +msgstr "El tipo de objeto no está especificado. " #: 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 @@ -233,7 +233,7 @@ msgstr "Error" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "El nombre de la aplicación no esta especificado." +msgstr "El nombre de la App no está especificado." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" @@ -253,7 +253,7 @@ msgstr "Error al compartir" #: js/share.js:136 msgid "Error while unsharing" -msgstr "Error en el procedimiento de " +msgstr "Error en al dejar de compartir" #: js/share.js:143 msgid "Error while changing permissions" @@ -273,7 +273,7 @@ msgstr "Compartir con" #: js/share.js:164 msgid "Share with link" -msgstr "Compartir con link" +msgstr "Compartir con enlace" #: js/share.js:167 msgid "Password protect" @@ -285,11 +285,11 @@ msgstr "Contraseña" #: js/share.js:173 msgid "Email link to person" -msgstr "Enviar el link por e-mail." +msgstr "Enviar el enlace por e-mail." #: js/share.js:174 msgid "Send" -msgstr "Enviar" +msgstr "Mandar" #: js/share.js:178 msgid "Set expiration date" @@ -301,7 +301,7 @@ msgstr "Fecha de vencimiento" #: js/share.js:211 msgid "Share via email:" -msgstr "compartido a través de e-mail:" +msgstr "Compartir a través de e-mail:" #: js/share.js:213 msgid "No people found" @@ -321,7 +321,7 @@ msgstr "Dejar de compartir" #: js/share.js:320 msgid "can edit" -msgstr "puede editar" +msgstr "podés editar" #: js/share.js:322 msgid "access control" @@ -349,7 +349,7 @@ msgstr "Protegido por contraseña" #: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "Error al remover la fecha de caducidad" +msgstr "Error al remover la fecha de vencimiento" #: js/share.js:589 msgid "Error setting expiration date" @@ -357,11 +357,11 @@ msgstr "Error al asignar fecha de vencimiento" #: js/share.js:604 msgid "Sending ..." -msgstr "Enviando..." +msgstr "Mandando..." #: js/share.js:615 msgid "Email sent" -msgstr "Email enviado" +msgstr "e-mail mandado" #: js/update.js:14 msgid "" @@ -387,7 +387,7 @@ msgid "" "The link to reset your password has been sent to your email.<br>If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.<br>If it is not there ask your local administrator ." -msgstr "El enlace para restablecer la contraseña fue enviada a tu correo electrónico. <br> Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado. <br> Si no está ahí, preguntale a tu administrador." +msgstr "El enlace para restablecer la contraseña fue enviada a tu e-mail. <br> Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado. <br> Si no está ahí, preguntale a tu administrador." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!<br>Did you make sure your email/username was right?" @@ -395,7 +395,7 @@ msgstr "¡Error en el pedido! <br> ¿Estás seguro de que tu dirección de corre #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." -msgstr "Vas a recibir un enlace por e-mail para restablecer tu contraseña" +msgstr "Vas a recibir un enlace por e-mail para restablecer tu contraseña." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 #: templates/login.php:19 @@ -408,11 +408,11 @@ msgid "" "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 "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se resetee tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a de querer continuar?" +msgstr "Tus archivos están encriptados. Si no habilitaste la clave de recuperación, no vas a tener manera de obtener nuevamente tus datos después que se restablezca tu contraseña. Si no estás seguro sobre qué hacer, ponete en contacto con el administrador antes de seguir. ¿Estás seguro/a que querés continuar?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "Sí, definitivamente quiero resetear mi contraseña ahora" +msgstr "Sí, definitivamente quiero restablecer mi contraseña ahora" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -444,7 +444,7 @@ msgstr "Usuarios" #: strings.php:7 msgid "Apps" -msgstr "Aplicaciones" +msgstr "Apps" #: strings.php:8 msgid "Admin" @@ -456,7 +456,7 @@ msgstr "Ayuda" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Acceso denegado" +msgstr "Acceso prohibido" #: templates/404.php:12 msgid "Cloud not found" @@ -475,7 +475,7 @@ msgstr "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo ac #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" -msgstr "servicios web controlados por vos" +msgstr "servicios web que controlás" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -502,13 +502,13 @@ msgstr "Actualizá tu instalación de PHP para usar ownCloud de manera segura." msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "No hay disponible ningún generador de números aleatorios seguro. Por favor habilitá la extensión OpenSSL de PHP." +msgstr "No hay disponible ningún generador de números aleatorios seguro. Por favor, habilitá la extensión OpenSSL de PHP." #: 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 "Sin un generador de números aleatorios seguro un atacante podría predecir los tokens de reinicio de tu contraseña y tomar control de tu cuenta." +msgstr "Sin un generador de números aleatorios seguro un atacante podría predecir las pruebas de reinicio de tu contraseña y tomar control de tu cuenta." #: templates/installation.php:39 msgid "" @@ -543,7 +543,7 @@ msgstr "Configurar la base de datos" #: templates/installation.php:102 templates/installation.php:113 #: templates/installation.php:125 msgid "will be used" -msgstr "se utilizarán" +msgstr "se usarán" #: templates/installation.php:137 msgid "Database user" @@ -563,7 +563,7 @@ msgstr "Espacio de tablas de la base de datos" #: templates/installation.php:166 msgid "Database host" -msgstr "Host de la base de datos" +msgstr "Huésped de la base de datos" #: templates/installation.php:172 msgid "Finish setup" @@ -590,7 +590,7 @@ msgstr "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Por favor, cambiá tu contraseña para fortalecer nuevamente la seguridad de tu cuenta." +msgstr "Por favor, cambiá tu contraseña para incrementar la seguridad de tu cuenta." #: templates/login.php:34 msgid "Lost your password?" @@ -602,7 +602,7 @@ msgstr "recordame" #: templates/login.php:41 msgid "Log in" -msgstr "Entrar" +msgstr "Iniciar sesión" #: templates/login.php:47 msgid "Alternative Logins" @@ -626,4 +626,4 @@ msgstr "siguiente" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "Actualizando ownCloud a la versión %s, puede domorar un rato." +msgstr "Actualizando ownCloud a la versión %s, puede demorar un rato." diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index fec836f5f22..f1153d0a932 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" -"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" +"Last-Translator: cjtess <claudio.tessone@gmail.com>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 924acbadc41..ba9405f152a 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: cjtess <claudio.tessone@gmail.com>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 40f68783157..40a8978f029 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 6448c511db4..a856cf6327d 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index e953455fb68..86c1c1ab6da 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: cjtess <claudio.tessone@gmail.com>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index e3d1016a35a..1cb59f7906a 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" +"Last-Translator: cjtess <claudio.tessone@gmail.com>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +30,7 @@ msgstr "Error al autenticar" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "El nombre mostrado fue cambiado" +msgstr "El nombre mostrado que usás fue cambiado." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -46,7 +46,7 @@ msgstr "No fue posible añadir el grupo" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "No se puede habilitar la aplicación." +msgstr "No se pudo habilitar la App." #: ajax/lostpassword.php:12 msgid "Email saved" @@ -54,15 +54,15 @@ msgstr "e-mail guardado" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "el e-mail no es válido " +msgstr "El e-mail no es válido " #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "No fue posible eliminar el grupo" +msgstr "No fue posible borrar el grupo" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "No fue posible eliminar el usuario" +msgstr "No fue posible borrar el usuario" #: ajax/setlanguage.php:15 msgid "Language changed" @@ -70,29 +70,29 @@ msgstr "Idioma cambiado" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "Pedido no válido" +msgstr "Pedido inválido" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Los administradores no se pueden quitar a ellos mismos del grupo administrador. " +msgstr "Los administradores no se pueden quitar a si mismos del grupo administrador. " #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "No fue posible añadir el usuario al grupo %s" +msgstr "No fue posible agregar el usuario al grupo %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "No es posible eliminar al usuario del grupo %s" +msgstr "No es posible borrar al usuario del grupo %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "No se pudo actualizar la aplicación." +msgstr "No se pudo actualizar la App." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "Actualizado a {appversion}" +msgstr "Actualizar a {appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -116,7 +116,7 @@ msgstr "Actualizando...." #: js/apps.js:93 msgid "Error while updating app" -msgstr "Error al actualizar" +msgstr "Error al actualizar App" #: js/apps.js:96 msgid "Updated" @@ -136,7 +136,7 @@ msgstr "deshacer" #: js/users.js:79 msgid "Unable to remove user" -msgstr "Imposible remover usuario" +msgstr "Imposible borrar usuario" #: js/users.js:92 templates/users.php:26 templates/users.php:87 #: templates/users.php:112 @@ -153,7 +153,7 @@ msgstr "Borrar" #: js/users.js:269 msgid "add group" -msgstr "Agregar grupo" +msgstr "agregar grupo" #: js/users.js:428 msgid "A valid username must be provided" @@ -201,13 +201,13 @@ msgstr "Por favor, comprobá nuevamente la <a href='%s'>guía de instalación</a #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "Modulo 'fileinfo' no existe" +msgstr "El módulo 'fileinfo' no existe" #: 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 "El modulo PHP 'fileinfo' no existe. Es muy recomendable que active este modulo para obtener mejores resultados con la detección mime-type" +msgstr "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type" #: templates/admin.php:58 msgid "Locale not working" @@ -219,7 +219,7 @@ msgid "" "This ownCloud server can't set system locale 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 "El servidor ownCloud no pude asignar la localización de sistema a %s. Esto puede hacer que hayan problemas con algunos caracteres en los nombres de los archivos. Te sugerimos que instales los paquetes necesarios en tu sistema para dar soporte a %s." +msgstr "El servidor ownCloud no puede asignar la localización de sistema a %s. Esto puede provocar que existan problemas con algunos caracteres en los nombres de los archivos. Te sugerimos que instales los paquetes necesarios en tu sistema para dar soporte a %s." #: templates/admin.php:75 msgid "Internet connection not working" @@ -233,7 +233,7 @@ msgid "" "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" " of ownCloud." -msgstr "Este servidor ownCloud no tiene una conexión a internet que funcione. Esto significa que alguno de sus servicios como montar dispositivos externos, notificaciones de actualizaciones o instalar aplicaciones de otros desarrolladores no funcionan. Acceder a archivos remotos y mandar e-mails puede ser que tampoco funcione. Te sugerimos que actives una conexión a internet si querés estas características de ownCloud." +msgstr "Este servidor ownCloud no tiene una conexión a internet que funcione. Esto significa que alguno de sus servicios, tales como montar dispositivos externos, notificación de actualizaciones o instalar Apps de otros desarrolladores no funcionan. Puede ser que tampoco puedas acceder a archivos remotos y mandar e-mails. Te sugerimos que actives una conexión a internet si querés estas características en ownCloud." #: templates/admin.php:92 msgid "Cron" @@ -241,7 +241,7 @@ msgstr "Cron" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Ejecute una tarea con cada pagina cargada." +msgstr "Ejecutá una tarea con cada pagina cargada." #: templates/admin.php:111 msgid "" @@ -253,7 +253,7 @@ msgstr "cron.php está registrado como un servicio webcron. Llamar la página cr msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "Usa el servicio de sistema cron. Llama al archivo cron.php en la carpeta de ownCloud a través del sistema cronjob cada un minuto." +msgstr "Usar el servicio de sistema cron. Llama al archivo cron.php en la carpeta de ownCloud a través del sistema cronjob cada un minuto." #: templates/admin.php:128 msgid "Sharing" @@ -281,15 +281,15 @@ msgstr "Permitir Re-Compartir" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "Permite a los usuarios volver a compartir items que le han compartido" +msgstr "Permite a los usuarios volver a compartir items que les fueron compartidos" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "Permitir a los usuarios compartir con todos." +msgstr "Permitir a los usuarios compartir con cualquiera." #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "Permitir a los usuarios compartir solo con los de su propio grupo" +msgstr "Permitir a los usuarios compartir sólo con los de sus mismos grupos" #: templates/admin.php:168 msgid "Security" @@ -302,13 +302,13 @@ msgstr "Forzar HTTPS" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Forzar a los clientes conectar a ownCloud vía conexión encriptada" +msgstr "Forzar a los clientes conectar a ownCloud vía conexión encriptada." #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Por favor conectese a este ownCloud vía HTTPS para habilitar o des-habilitar el forzado de SSL" +msgstr "Por favor conectate a este ownCloud vía HTTPS para habilitar o deshabilitar el SSL." #: templates/admin.php:195 msgid "Log" @@ -342,15 +342,15 @@ msgstr "Desarrollado por la <a href=\"http://ownCloud.org/contact\" target=\"_bl #: templates/apps.php:13 msgid "Add your App" -msgstr "Añadí tu aplicación" +msgstr "Añadí tu App" #: templates/apps.php:28 msgid "More Apps" -msgstr "Más aplicaciones" +msgstr "Más Apps" #: templates/apps.php:33 msgid "Select an App" -msgstr "Seleccionar una aplicación" +msgstr "Elegí una App" #: templates/apps.php:39 msgid "See application page at apps.owncloud.com" @@ -390,7 +390,7 @@ msgstr "Soporte comercial" #: templates/personal.php:9 msgid "Get the apps to sync your files" -msgstr "Obtené aplicaciones para sincronizar tus archivos" +msgstr "Obtené Apps para sincronizar tus archivos" #: templates/personal.php:20 msgid "Show First Run Wizard again" @@ -399,7 +399,7 @@ msgstr "Mostrar de nuevo el asistente de primera ejecución" #: templates/personal.php:28 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" -msgstr "Usaste <strong>%s</strong> de los <strong>%s</strong> disponibles" +msgstr "Usás <strong>%s</strong> de los <strong>%s</strong> disponibles" #: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" @@ -431,7 +431,7 @@ msgstr "Nombre a mostrar" #: templates/personal.php:74 msgid "Email" -msgstr "Correo Electrónico" +msgstr "e-mail" #: templates/personal.php:76 msgid "Your email address" @@ -439,7 +439,7 @@ msgstr "Tu dirección de e-mail" #: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" -msgstr "Escribí una dirección de correo electrónico para restablecer la contraseña" +msgstr "Escribí una dirección de e-mail para restablecer la contraseña" #: templates/personal.php:86 templates/personal.php:87 msgid "Language" @@ -455,11 +455,11 @@ msgstr "WebDAV" #: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Utiliza esta dirección para conectarte con ownCloud en tu Administrador de Archivos" +msgstr "Usá esta dirección para conectarte con ownCloud en tu Administrador de Archivos" #: templates/users.php:21 msgid "Login Name" -msgstr "Nombre de " +msgstr "Nombre de Usuario" #: templates/users.php:30 msgid "Create" @@ -497,7 +497,7 @@ msgstr "Almacenamiento" #: templates/users.php:102 msgid "change display name" -msgstr "Cambiar el nombre que se muestra" +msgstr "Cambiar el nombre mostrado" #: templates/users.php:106 msgid "set new password" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 6c5085952d2..95060d06053 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: cjtess <claudio.tessone@gmail.com>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index cf57d1175c9..acf4a2aee0b 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Kustutamiseks pole kategooriat valitud." msgid "Error removing %s from favorites." msgstr "Viga %s eemaldamisel lemmikutest." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Pühapäev" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Esmaspäev" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Teisipäev" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Kolmapäev" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Neljapäev" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Reede" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Laupäev" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Jaanuar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Veebruar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Märts" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprill" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juuni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juuli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktoober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Detsember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Seaded" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 tund tagasi" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} tundi tagasi" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "täna" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "eile" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} kuud tagasi" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "aastat tagasi" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index c07fd0d3169..d7d7419fd63 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Rivo Zängov <eraser@eraser.ee>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index bb43b85a2f3..09fe97dce37 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Rivo Zängov <eraser@eraser.ee>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 0ea609f1c01..d03bcb2b112 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 1d550e0201f..e54855152d6 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Rivo Zängov <eraser@eraser.ee>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 84997870013..ffbf7712bb2 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 6113a81c875..c5e28c9fc1b 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 633c23e05e1..4b0628f61b1 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 4075125d91e..facc076fe9c 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Ez da ezabatzeko kategoriarik hautatu." msgid "Error removing %s from favorites." msgstr "Errorea gertatu da %s gogokoetatik ezabatzean." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Igandea" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Astelehena" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Asteartea" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Asteazkena" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Osteguna" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Ostirala" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Larunbata" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Urtarrila" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Otsaila" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Martxoa" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Apirila" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maiatza" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Ekaina" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Uztaila" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Abuztua" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Iraila" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Urria" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Azaroa" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Abendua" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segundu" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "gaur" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "atzo" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "hilabete" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "joan den urtean" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "urte" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index e56b4fdfcf4..577c3f8256c 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index 304cd86c002..b855eec29a2 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# asaez <asaez@asaez.eu>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 08:10+0000\n" +"Last-Translator: asaez <asaez@asaez.eu>\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" @@ -103,11 +104,11 @@ msgstr "" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" -msgstr "" +msgstr "Gaitua" #: templates/settings-admin.php:29 templates/settings-personal.php:62 msgid "Disabled" -msgstr "" +msgstr "Ez-gaitua" #: templates/settings-admin.php:34 msgid "Change recovery key password:" @@ -123,7 +124,7 @@ msgstr "" #: templates/settings-admin.php:53 msgid "Change Password" -msgstr "" +msgstr "Aldatu Pasahitza" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 2b0ef136fa7..e4bf9af5aa9 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 0d033e3d96e..7bee0182248 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 8a909233408..7d549149859 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index f5ed84b74d7..065623f8839 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index f1faa72a3fb..0d9fb511a57 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 56e299b9131..8eeb819e80a 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 1cc51050faa..c31972fc137 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "هیج دسته ای برای پاک شدن انتخاب نشده است msgid "Error removing %s from favorites." msgstr "خطای پاک کردن %s از علاقه مندی ها." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "یکشنبه" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "دوشنبه" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "سه شنبه" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "چهارشنبه" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "پنجشنبه" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "جمعه" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "شنبه" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "ژانویه" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "فبریه" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "مارس" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "آوریل" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "می" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ژوئن" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "جولای" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "آگوست" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "سپتامبر" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "اکتبر" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "نوامبر" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "دسامبر" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "ثانیهها پیش" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{دقیقه ها} دقیقه های پیش" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{ساعت ها} ساعت ها پیش" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "امروز" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "دیروز" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{روزها} روزهای پیش" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "ماه قبل" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیش" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "ماههای قبل" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "سال قبل" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "سالهای قبل" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 3a5b7779bd4..cdc3359a6ca 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index a8224ed9b2d..4ae449d89a7 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 9e3677fcdd7..43386b56af2 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 54e6f844568..3929758448a 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index a9ac1b53c73..e12808e6c81 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 9a6956a5514..cfdf0806735 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index c09193d7c95..8e91ec15fdb 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 509eb435e39..108f9b29249 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Luokkia ei valittu poistettavaksi." msgid "Error removing %s from favorites." msgstr "Virhe poistaessa kohdetta %s suosikeista." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "sunnuntai" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "maanantai" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "tiistai" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "keskiviikko" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "torstai" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "perjantai" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "lauantai" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "tammikuu" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "helmikuu" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "maaliskuu" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "huhtikuu" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "toukokuu" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "kesäkuu" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "heinäkuu" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "elokuu" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "syyskuu" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "lokakuu" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "marraskuu" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "joulukuu" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Asetukset" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "tänään" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "eilen" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "viime kuussa" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "viime vuonna" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "vuotta sitten" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index b5f034992c5..dbca58cb19a 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 14a8a6d025a..9ca64b8defe 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 4d175ceb535..1cda97e3888 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index b801dab5012..bc6d599442e 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 3bb2c74afca..4b128fed3cf 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 2a3545238a2..6795aab9e51 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index af5ea17cd63..b1e8900dbd5 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 38f654610fc..b6652f1f5e0 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -66,135 +66,135 @@ msgstr "Pas de catégorie sélectionnée pour la suppression." msgid "Error removing %s from favorites." msgstr "Erreur lors de la suppression de %s des favoris." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Dimanche" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lundi" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Mardi" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mercredi" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Jeudi" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Vendredi" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Samedi" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "janvier" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "février" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "avril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "juin" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "juillet" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "août" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "septembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "octobre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "décembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Paramètres" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "aujourd'hui" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "hier" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "le mois dernier" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "l'année dernière" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "il y a plusieurs années" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index e383782a587..09fb95edf55 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 8b042476584..512b7f10e68 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.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-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-26 12:22+0000\n" +"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,16 +28,16 @@ msgstr "Clé de récupération activée avec succès" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "Ne peut pas activer la clé de récupération. s'il vous plait vérifiez votre mot de passe de clé de récupération!" +msgstr "Impossible d'activer la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "Clé de récupération désactivée avc succès" +msgstr "Clé de récupération désactivée avec succès" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "Ne peut pas désactiver la clé de récupération. S'il vous plait vérifiez votre mot de passe de clé de récupération!" +msgstr "Impossible de désactiver la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -66,13 +66,13 @@ msgstr "Votre clef privée est invalide ! Votre mot de passe a peut-être été #: hooks/hooks.php:44 msgid "PHP module OpenSSL is not installed." -msgstr "" +msgstr "Le module OpenSSL de PHP n'est pas installé." #: hooks/hooks.php:45 msgid "" "Please ask your server administrator to install the module. For now the " "encryption app was disabled." -msgstr "" +msgstr "Veuillez demander à l'administrateur du serveur d'installer le module. Pour l'instant l'application de chiffrement a été désactivé." #: js/settings-admin.js:11 msgid "Saving..." @@ -99,11 +99,11 @@ msgstr "Chiffrement" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe)." #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Mot de passe de la clef de récupération" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -115,15 +115,15 @@ msgstr "Désactiver" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Modifier le mot de passe de la clef de récupération :" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Ancien mot de passe de la clef de récupération" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Nouveau mot de passe de la clef de récupération" #: templates/settings-admin.php:53 msgid "Change Password" @@ -157,7 +157,7 @@ msgstr "Mettre à jour le mot de passe de votre clé privée" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "Activer la récupération du mot de passe:" +msgstr "Activer la récupération du mot de passe :" #: templates/settings-personal.php:47 msgid "" @@ -167,7 +167,7 @@ msgstr "Activer cette option vous permettra d'obtenir à nouveau l'accès à vos #: templates/settings-personal.php:63 msgid "File recovery settings updated" -msgstr "Mise à jour des paramètres de récupération de fichiers " +msgstr "Paramètres de récupération de fichiers mis à jour" #: templates/settings-personal.php:64 msgid "Could not update file recovery" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index bfb9c872a9b..e00eff2f21a 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 06fd8fa8cb8..78d54bd5b77 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 7d5f29bf0a0..af9bdc98b80 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index a5f08d463f6..cf41c399b15 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Cyril Glapa <kyriog@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 08e7fed71fd..518ee15872d 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index c4b7ee0fee8..be0621492f2 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: plachance <patlachance@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 4ae5147bca8..55f954086a5 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Non se seleccionaron categorías para eliminación." msgid "Error removing %s from favorites." msgstr "Produciuse un erro ao eliminar %s dos favoritos." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Luns" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martes" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mércores" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Xoves" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Venres" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "xaneiro" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "febreiro" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "marzo" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "maio" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "xuño" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "xullo" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "setembro" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "outubro" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "novembro" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "decembro" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Axustes" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Vai 1 hora" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoxe" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "onte" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "hai {days} días" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "último mes" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses atrás" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "último ano" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 684d45ae22f..40c4c782a4b 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index c03d12e2685..beadabb66a8 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 432220cf0a2..30209872a77 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 23c264433c8..e9aff1df343 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 750805bb5b0..d28e4d61712 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index c25f1a45148..8407c00a149 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 5d626e7ef43..98a8bacb335 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index 96d097adf83..34d8fe556fd 100644 --- a/l10n/he/core.po +++ b/l10n/he/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "לא נבחרו קטגוריות למחיקה" msgid "Error removing %s from favorites." msgstr "שגיאה בהסרת %s מהמועדפים." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "יום ראשון" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "יום שני" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "יום שלישי" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "יום רביעי" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "יום חמישי" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "יום שישי" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "שבת" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "ינואר" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "פברואר" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "מרץ" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "אפריל" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "מאי" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "יוני" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "יולי" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "אוגוסט" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "ספטמבר" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "אוקטובר" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "נובמבר" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "דצמבר" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "הגדרות" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "שניות" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "היום" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "אתמול" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "חודשים" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "שנים" diff --git a/l10n/he/files.po b/l10n/he/files.po index 833ad6436c3..89d028103aa 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 7db359cc679..d31c639e912 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index e1a1fbc7809..2fa14e6c5a2 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 3093babfb45..c844e366216 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 5d16ab1f58e..ada7f390dd8 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index e9072e8a080..ee845f2ea24 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index e287c5fe8f9..ed6c15221fb 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 16cd4bf3461..345b1c3aecd 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "जनवरी" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "फरवरी" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "मार्च" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "अप्रैल" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "मई" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "जून" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "जुलाई" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "अगस्त" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "सितम्बर" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "अक्टूबर" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "नवंबर" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "दिसम्बर" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 118e99b7e50..cefdec303da 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index f8ac471b2ba..308868022e2 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index fcb4fb73049..82a5073eafe 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Niti jedna kategorija nije odabrana za brisanje." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "nedelja" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "ponedeljak" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "utorak" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "srijeda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "četvrtak" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "petak" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "subota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Siječanj" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Veljača" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Ožujak" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Travanj" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Svibanj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Lipanj" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Srpanj" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Kolovoz" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Rujan" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Listopad" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Studeni" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Prosinac" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Postavke" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "danas" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "jučer" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mjeseci" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "godina" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index f2b442e6d78..2160e5500ab 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 65a5177cdba..1245a6aa379 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 7ca4969c3ba..0354e57049f 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index fac04e71f06..546533e36fd 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 02db02f21fa..ec1f077d07a 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index c05a173698b..4b67d6c0e37 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 19364072edd..81888094082 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index ebc29ae86cb..d9db452c8a4 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Nincs törlésre jelölt kategória" msgid "Error removing %s from favorites." msgstr "Nem sikerült a kedvencekből törölni ezt: %s" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "vasárnap" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "hétfő" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "kedd" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "szerda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "csütörtök" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "péntek" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "szombat" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "január" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "február" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "március" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "április" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "május" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "június" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "július" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "augusztus" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "szeptember" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "október" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "november" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "december" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Beállítások" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "ma" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "tegnap" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "több hónapja" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "tavaly" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "több éve" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index ea61959f14b..c68d300e34a 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 26b1d2e455d..e9b24ea7229 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index bc1e33cad00..39182d45c3b 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 160a54c12c1..f94c4cebc24 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index be74cef5361..824b501e256 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index c31be35ab08..54accf91765 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 76b57d1474f..3b5ed8de083 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 830ee08a234..81912b15e8f 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index b09b8cf248c..8adcaa76c5d 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index 516a9ae1379..6456e045272 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index d78ba4b31e5..bd5f27c97a5 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index d38be332ec5..e925f9b40a7 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index b4c9764d4ca..52bda8e75f6 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Dominica" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lunedi" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martedi" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mercuridi" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Jovedi" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Venerdi" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sabbato" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "januario" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februario" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Martio" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Junio" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Augusto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Octobre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configurationes" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 13c98472dc3..b459b18d253 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index f04d0346a57..070d58a0dc7 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 4b3ff1b6caf..ff4b3ecca13 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index dbd84ee318f..fffe1794a25 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 9d6bb20c703..859b676d9a4 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index fe1b763855c..63f11f3d0f1 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index eca8b4b8f6e..00a472c3dde 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 2636b71dfcd..907030c9f8c 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Tidak ada kategori terpilih untuk dihapus." msgid "Error removing %s from favorites." msgstr "Galat ketika menghapus %s dari favorit" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Minggu" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Senin" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Selasa" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Rabu" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Kamis" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Jumat" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sabtu" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januari" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februari" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Maret" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mei" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agustus" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Setelan" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 menit yang lalu" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} menit yang lalu" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} jam yang lalu" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hari ini" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "kemarin" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} hari yang lalu" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} bulan yang lalu" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "beberapa tahun lalu" diff --git a/l10n/id/files.po b/l10n/id/files.po index 7879939ac5a..5dae3f8ba93 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 749189c5713..f49d387f8de 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index be8fb9a574f..ef8795e0c89 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index f4afa3dfdbc..d0548e0d662 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 9e877f02f3c..e8eec74f576 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 40f8eedd3fb..cf5f6f310f6 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index a46f1e833ee..be9201ab06b 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 330ad870c16..6bff8ba3cdc 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Enginn flokkur valinn til eyðingar." msgid "Error removing %s from favorites." msgstr "Villa við að fjarlægja %s úr eftirlæti." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sunnudagur" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Mánudagur" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Þriðjudagur" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Miðvikudagur" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Fimmtudagur" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Föstudagur" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Laugardagur" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Janúar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Febrúar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Apríl" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maí" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Júní" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Júlí" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Ágúst" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Október" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Nóvember" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Stillingar" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sek." -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Fyrir 1 mínútu" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "í dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "í gær" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "síðasta ári" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "einhverjum árum" diff --git a/l10n/is/files.po b/l10n/is/files.po index 34340946f1a..2aa94029fcb 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 573c7054e9c..f2317464af3 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index b5018ef31a5..69552d4a9c3 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 1ab495a8a04..4f2e9d15957 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 6ca4b051a2a..c0eba8974e1 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 92852949b2c..b9fdd156edb 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 1d4fbf8f8d9..2c3099a95bb 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Magnus Magnusson <maggiymir@gmail.com>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 6a3e978763e..61d91e8bc42 100644 --- a/l10n/it/core.po +++ b/l10n/it/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Nessuna categoria selezionata per l'eliminazione." msgid "Error removing %s from favorites." msgstr "Errore durante la rimozione di %s dai preferiti." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domenica" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Lunedì" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Martedì" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mercoledì" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Giovedì" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Venerdì" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sabato" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Gennaio" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Febbraio" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marzo" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprile" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maggio" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Giugno" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Luglio" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Settembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Ottobre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dicembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "oggi" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ieri" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "mese scorso" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mesi fa" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "anno scorso" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anni fa" diff --git a/l10n/it/files.po b/l10n/it/files.po index fcdf9ed4491..28d0802c6a5 100644 --- a/l10n/it/files.po +++ b/l10n/it/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index cf8defcbfff..bed57bb1db6 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 579178888ec..eec68bfd4d3 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index a3c37675feb..5e8efda062e 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index ef76904aae0..f340eb819b9 100644 --- a/l10n/it/lib.po +++ b/l10n/it/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 78802e5f8aa..6b3651733c0 100644 --- a/l10n/it/settings.po +++ b/l10n/it/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 7d3a36edcd4..3dcaacb2e8c 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 486239368ec..bce6a040033 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: plazmism <gomidori@live.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "削除するカテゴリが選択されていません。" msgid "Error removing %s from favorites." msgstr "お気に入りから %s の削除エラー" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "日" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "月" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "火" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "水" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "木" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "金" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "土" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "1月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "2月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "3月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "4月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "5月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "6月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "7月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "8月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "9月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "10月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "11月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "12月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "設定" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 時間前" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} 時間前" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今日" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨日" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} 日前" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "一月前" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "月前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "一年前" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "年前" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 2a02df7abff..e9ebc8f02b3 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 9641d4ea4c1..8fbd486144d 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 2ed082766ac..9808cc86b86 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 929e166861b..c06465a2fc0 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 00e48278dd6..981f77294af 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: tt yn <tetuyano+transi@gmail.com>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 7a5ee41ff87..64a89c39803 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: plazmism <gomidori@live.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index f273abf31cf..dabb24fc9bb 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 7e0a6087cb1..32d5e38e004 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 2c43aa9d884..edb5cf3ce4c 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index f71135a4048..05a773e94d9 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "სარედაქტირებელი კატეგორი msgid "Error removing %s from favorites." msgstr "შეცდომა %s–ის ფევორიტებიდან წაშლის დროს." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "კვირა" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "ორშაბათი" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "სამშაბათი" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "ოთხშაბათი" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "ხუთშაბათი" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "პარასკევი" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "შაბათი" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "იანვარი" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "თებერვალი" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "მარტი" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "აპრილი" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "მაისი" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ივნისი" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "ივლისი" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "აგვისტო" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "სექტემბერი" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ოქტომბერი" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "ნოემბერი" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "დეკემბერი" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} საათის წინ" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "დღეს" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} თვის წინ" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "წლის წინ" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 246c9919055..a0c179d9644 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 6b5d02a2118..b358a724cba 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: drlinux64 <romeo@energo-pro.ge>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index aee96750929..5994fd902e6 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index f7a8d12a954..a989f2ef7c5 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: drlinux64 <romeo@energo-pro.ge>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index a9416312adb..ab52f3b3044 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index db3f481b551..6ab28f43288 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 4326c97a246..807ff227866 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 1a06f9ff89a..0bd8b13cd88 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "삭제할 분류를 선택하지 않았습니다. " msgid "Error removing %s from favorites." msgstr "책갈피에서 %s을(를) 삭제할 수 없었습니다." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "일요일" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "월요일" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "화요일" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "수요일" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "목요일" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "금요일" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "토요일" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "1월" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "2월" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "3월" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "4월" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "5월" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "6월" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "7월" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "8월" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "9월" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "10월" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "11월" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "12월" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "설정" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "초 전" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1분 전" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes}분 전" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1시간 전" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours}시간 전" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "오늘" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "어제" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days}일 전" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "지난 달" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months}개월 전" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "개월 전" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "작년" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "년 전" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index a74387a3f44..6af34a21b42 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 0606fb0befd..1d1247b10a2 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Shinjo Park <kde@peremen.name>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index b9ed8f63e2b..6481e296206 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Shinjo Park <kde@peremen.name>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 2ae1c30a58a..7d08a0e7025 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 8702193d425..e4c656629bc 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 640e2b716b8..6ae819962c1 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index b8c1652f407..0f83269b4b9 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 6f028252c5f..95826e76113 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "دهستكاری" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 7e56ad50b9f..fd5dd0f5455 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 59c485719c6..b6a8f53842f 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 430deabcf51..413ac49b299 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 91e8e03ad68..1eee07fc309 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 42d84255765..fc512bc10b0 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index bf2b259100d..f3e00a1d001 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 6ed7a21be02..60379686dff 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Keng Kategorien ausgewielt fir ze läschen." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sonndes" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Méindes" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dënschdes" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Mëttwoch" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Donneschdes" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Freides" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Samschdes" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mäerz" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Abrëll" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mee" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dezember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Astellungen" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "vrun 1 Stonn" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "vru {hours} Stonnen" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "Läschte Mount" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "vru {months} Méint" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "Méint hier" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "Läscht Joer" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "Joren hier" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 87834dbf1b7..fb1d1b19a23 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 8a0f12b4a8e..687547dc58c 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index a9c0f94523c..f8d20ffebad 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index ba8b049e877..ae374f29da4 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 60fc60b4e98..37d15bb4faa 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 47f293f5bbf..ba1bad3a5f5 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 898ef2e3a59..52c2fd0104c 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index acf0e28b8af..c957d083e92 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Trynimui nepasirinkta jokia kategorija." msgid "Error removing %s from favorites." msgstr "Klaida ištrinant %s iš jūsų mėgstamiausius." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Sekmadienis" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pirmadienis" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Antradienis" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Trečiadienis" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Ketvirtadienis" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Penktadienis" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Šeštadienis" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Sausis" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Vasaris" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Kovas" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Balandis" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Gegužė" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Birželis" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Liepa" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Rugpjūtis" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Rugsėjis" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Spalis" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Lapkritis" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Gruodis" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "Prieš {count} minutes" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "prieš 1 valandą" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "prieš {hours} valandas" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "šiandien" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "vakar" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "Prieš {days} dienas" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "prieš {months} mėnesių" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "praeitais metais" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "prieš metus" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 2028ee0aced..cfdd8b6575b 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: fizikiukas <fizikiukas@gmail.com>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index ba74135ddaf..dd9aa2f02be 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Min2liz <min2lizz@gmail.com>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 1bc412436fe..734ee14a825 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 195fdcf27ed..b7ae4ad9435 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: fizikiukas <fizikiukas@gmail.com>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 939a04910b2..848fe52f63f 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: fizikiukas <fizikiukas@gmail.com>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index f609ccc3801..64fcf37368e 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index d9934d3d7cb..eb4dbf3f604 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index d89c0e2266c..6002386da9a 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Neviena kategorija nav izvēlēta dzēšanai." msgid "Error removing %s from favorites." msgstr "Kļūda, izņemot %s no izlases." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Svētdiena" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pirmdiena" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Otrdiena" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Trešdiena" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Ceturtdiena" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Piektdiena" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sestdiena" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Janvāris" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februāris" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marts" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprīlis" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maijs" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Jūnijs" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Jūlijs" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Augusts" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembris" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktobris" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembris" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembris" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "pirms 1 minūtes" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "pirms {minutes} minūtēm" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "pirms {hours} stundām" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "šodien" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "vakar" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "pirms {days} dienām" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "pirms {months} mēnešiem" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "gadus atpakaļ" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 5b5938acad3..02cd9f6e388 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index e5edb12e983..14951bb69da 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 8575c230061..e4081286a6f 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 6533f9f9e21..adebb46906c 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 25b9d7cae55..86bfdc9e251 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index ad414f1eba4..f526323be1d 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 4bf9f4e471c..b9c512c2c76 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 6a84676919d..718319d4cc4 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Не е одбрана категорија за бришење." msgid "Error removing %s from favorites." msgstr "Грешка при бришење на %s од омилени." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Недела" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понеделник" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Вторник" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Среда" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четврток" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Петок" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Сабота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Јануари" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Февруари" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Март" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Април" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Мај" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Јуни" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Јули" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Август" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Септември" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Октомври" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Ноември" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Декември" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Подесувања" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "пред 1 минута" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "пред {minutes} минути" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "пред 1 час" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "пред {hours} часови" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "денеска" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "вчера" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "пред {days} денови" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "минатиот месец" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "пред {months} месеци" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "пред месеци" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "минатата година" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "пред години" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index f77534ce047..4e860715010 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 6bb215dc2fb..77a8be9cbf7 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index d1af7482439..97121ec6373 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index a0b4bc4a155..bd067e7a54a 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 4cd7f8ed54c..2e0892bc2a3 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 8391e49a28f..2a9ec9349a2 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 97a0b85713c..acebfc52293 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 843daf97d54..3e28ed0e240 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Tiada kategori dipilih untuk dibuang." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Ahad" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Isnin" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Selasa" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Rabu" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Khamis" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Jumaat" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sabtu" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januari" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februari" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mac" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mei" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Jun" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julai" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Ogos" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Disember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Tetapan" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 17c0d30f7a7..055e2cb85c7 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index adf2524588b..81a80fd753c 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 235ff893169..7464b2a5374 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 5fdf6338aa6..145b71f254e 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 2eb4f60fc04..18ce9f932fc 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index a6041e01c60..c77c38892a9 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 3d198f9dd9f..8010f193890 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 516852def2f..3b7d5c135d3 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "ဖျက်ရန်အတွက်ခေါင်းစဉ်မရွ msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "ဇန်နဝါရီ" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "ဖေဖော်ဝါရီ" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "မတ်" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "ဧပြီ" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "မေ" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ဇွန်" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "ဇူလိုင်" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "ဩဂုတ်" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "စက်တင်ဘာ" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "အောက်တိုဘာ" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "နိုဝင်ဘာ" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "၁ မိနစ်အရင်က" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "၁ နာရီ အရင်က" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "ယနေ့" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "နှစ် အရင်က" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 950211e9b2d..ca690e8ed9f 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index a2fd69ceacf..750c64be623 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 78a5dd6e1d4..4c8f5e09540 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index b44d52211e6..e2dc45df485 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Ingen kategorier merket for sletting." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Søndag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Mandag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Tirsdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Fredag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Lørdag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "i dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "i går" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "forrige måned" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "måneder siden" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "forrige år" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "år siden" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 36898ad1be3..3837df8a46a 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 61769ee279e..e36cecb173b 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index fe4c94e896f..077acf860ab 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 51f52b419bc..341c3a23eca 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 0b6240bd983..09b406d78ae 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index b1d3711727e..112621ccdb6 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 07f39f2fbe4..a984f8c98e1 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index acf73fb8fdb..9ec6ccadd11 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: Jorcee <mail@jordyc.nl>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Geen categorie geselecteerd voor verwijdering." msgid "Error removing %s from favorites." msgstr "Verwijderen %s van favorieten is mislukt." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "zondag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "maandag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "dinsdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "woensdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "donderdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "vrijdag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "zaterdag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "januari" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "februari" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "maart" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "april" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "mei" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "augustus" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "september" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "november" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "december" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Instellingen" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "vandaag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "gisteren" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "vorige maand" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "vorig jaar" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "jaar geleden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 63ab584db3c..8cf5a719db8 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 22b31b7cb68..1bd4a361e6f 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 3030a7ff093..03c4e6932f7 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 5ca2b42dbdc..04ca2571dda 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 63a62f4fc18..09be9b42296 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 1d99995b01c..f43902599e1 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index ab687b7d61d..67939315958 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 6f2f75d30a3..2d30acb1c54 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Ingen kategoriar valt for sletting." msgid "Error removing %s from favorites." msgstr "Klarte ikkje fjerna %s frå favorittar." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Søndag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Måndag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Tysdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Fredag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Laurdag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Desember" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minutt sidan" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutt sidan" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 time sidan" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} timar sidan" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "i dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "i går" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dagar sidan" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "førre månad" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} månadar sidan" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "i fjor" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "år sidan" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index d01efdeb832..3087ed3cf1e 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: unhammer <unhammer+dill@mm.st>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index cda028d5e38..4551949b914 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 372ed6d6c18..99bf605abe3 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 6d56f2fd622..61073816937 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: unhammer <unhammer+dill@mm.st>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 7c40ad0267f..c8103a81f06 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: unhammer <unhammer+dill@mm.st>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 916a72b757f..ecc510d450e 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index ebfd177d97b..2e852e78df6 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 4b2117cfc89..d6a716a1ee9 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Pas de categorias seleccionadas per escafar." msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Dimenge" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Diluns" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Dimarç" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Dimecres" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Dijòus" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Divendres" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Dissabte" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "genièr" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "febrièr" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "març" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "junh" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "julhet" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "agost" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "septembre" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "octobre" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembre" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembre" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configuracion" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "uèi" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ièr" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "mes passat" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses a" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "an passat" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "ans a" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 8af162e48ab..dbbb4e64a32 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 60201730b47..34979c609ae 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index f1a7e52a4a4..283838c7503 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 2fb04aa5672..ff584fc95b2 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index a5c02474d03..dfcb460322f 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 78869cc489a..9cd1ed21b92 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 0885215d87f..bbb86578fe7 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 0fd55c50939..fed18b1364e 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Nie zaznaczono kategorii do usunięcia." msgid "Error removing %s from favorites." msgstr "Błąd podczas usuwania %s z ulubionych." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Niedziela" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Poniedziałek" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Wtorek" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Środa" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Czwartek" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Piątek" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sobota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Styczeń" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Luty" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marzec" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Kwiecień" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Czerwiec" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Lipiec" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Sierpień" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Wrzesień" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Październik" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Listopad" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Grudzień" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minutę temu" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 godzinę temu" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "dziś" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "lat temu" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index b5f3a722169..4dc1fdd0f92 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: adbrand <pkwiecin@adbrand.pl>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index b990d3c0a44..9637649dad3 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index dfcc243b6a1..3292ddb72ce 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 08717d2bdff..79274126b21 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index cc92491605f..e581df953fb 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 082c0cc5bf2..47d0c9cb838 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 0ff7668ea88..f030e64c156 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: orcio6 <orcio6@o2.pl>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 94b3ebe752c..a5b7064a87a 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: bjamalaro <bjamalaro@yahoo.com.br>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Nenhuma categoria selecionada para remoção." msgid "Error removing %s from favorites." msgstr "Erro ao remover %s dos favoritos." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Segunda-feira" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Terça-feira" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Quarta-feira" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Quinta-feira" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Sexta-feira" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "janeiro" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "fevereiro" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "março" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "maio" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "junho" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "julho" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "setembro" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "outubro" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "novembro" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "dezembro" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ajustes" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minuto atrás" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoje" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ontem" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "último mês" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses atrás" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "último ano" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 0ac745ad1d1..bd532d1bb69 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index cd1675f0031..dfc8f3c16e4 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 2efb9557a97..d1357b46fef 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 2edfad3f0dc..35d5b0bf2af 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index b4a3db18b80..f02e915c59d 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 414a167813a..3635a680125 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 89992c98c99..73855c9833c 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index b8860022ff1..c8649b00617 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Nenhuma categoria seleccionada para eliminar." msgid "Error removing %s from favorites." msgstr "Erro a remover %s dos favoritos." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Domingo" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Segunda" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Terça" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Quarta" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Quinta" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Sexta" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sábado" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Janeiro" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Fevereiro" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Março" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Abril" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maio" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Junho" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Julho" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Agosto" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Setembro" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Outubro" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembro" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dezembro" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Configurações" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "Há 1 minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Há 1 horas" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hoje" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ontem" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "ultímo mês" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "meses atrás" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "ano passado" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 4fa324ebddb..00b15a7e250 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: bmgmatias <bmgmatias@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 44332f4b485..c83a5469d00 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mouxy <daniel@mouxy.net>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 17f46670277..2acaa60f6e7 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 596e24663d7..74a586bbc03 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index d6de5ad4d99..11b6f2909ab 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Helder Meneses <helder.meneses@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 58ef49215bc..e7f6707a803 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 9044a8477d5..02e393392e6 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Mouxy <daniel@mouxy.net>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index cf70fffebd1..5aee1b4308d 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: dimaursu16 <dima@ceata.org>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "Nici o categorie selectată pentru ștergere." msgid "Error removing %s from favorites." msgstr "Eroare la ștergerea %s din favorite" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Duminică" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Luni" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Marți" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Miercuri" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Joi" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Vineri" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sâmbătă" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Ianuarie" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februarie" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Martie" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Aprilie" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mai" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Iunie" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Iulie" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembrie" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Octombrie" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Noiembrie" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembrie" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Setări" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urma" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Acum o ora" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ore în urmă" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "astăzi" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ieri" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} zile in urma" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "ultima lună" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} luni în urmă" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "ultimul an" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "ani în urmă" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index da1208a7e0e..d18aff5d9f0 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: dimaursu16 <dima@ceata.org>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index ed306efb07f..c3e1a1bb204 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 51f776e22f2..d0ecabab213 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 634a5214ee9..2824e6ffdb6 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index de27c52e960..e78dba3f95e 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 2e425be1a89..89a441d9c99 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index efa83ef2e69..9b5d62d9fc5 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 85820493c4d..8dd82d91a31 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -65,135 +65,135 @@ msgstr "Нет категорий для удаления." msgid "Error removing %s from favorites." msgstr "Ошибка удаления %s из избранного" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Воскресенье" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понедельник" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Вторник" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Среда" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четверг" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Пятница" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Суббота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Январь" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Февраль" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Март" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Апрель" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Май" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Июнь" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Июль" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Август" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Сентябрь" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Октябрь" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Ноябрь" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Декабрь" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Конфигурация" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "час назад" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} часов назад" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "сегодня" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "вчера" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} месяцев назад" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "в прошлом году" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "несколько лет назад" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index ff958e37045..e0d4fbd1f19 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Friktor <antonshramko@yandex.ru>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 577f1c2213e..88de492f664 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 7e9d5b98c8d..80293f2202f 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index c5626e33fcb..d0754a7372f 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index f9e070170a2..b8374044a84 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Friktor <antonshramko@yandex.ru>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 2ea3ed59461..e17505980a4 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index aa89e80f4a2..8219ee4f256 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: alfsoft <alfsoft@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index d90c370aac3..f1e11c51f01 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "මකා දැමීම සඳහා ප්රවර්ගයන් msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "ඉරිදා" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "සඳුදා" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "අඟහරුවාදා" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "බදාදා" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "බ්රහස්පතින්දා" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "සිකුරාදා" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "සෙනසුරාදා" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "ජනවාරි" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "පෙබරවාරි" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "මාර්තු" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "අප්රේල්" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "මැයි" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ජූනි" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "ජූලි" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "අගෝස්තු" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "සැප්තැම්බර්" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ඔක්තෝබර" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "නොවැම්බර්" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "අද" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index da362147611..3a8fae78eb0 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index c8a65d793df..aa5c56f882b 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index c692d99227a..7bf51d3f37b 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index ffdf208d5b3..9f5d1239e8a 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 1ee104b8966..376ba2e096e 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 34cfc0f75db..1cc01c12470 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 0fd859b2036..1504391bd74 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 79e8f21840f..37374394a06 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Neboli vybrané žiadne kategórie pre odstránenie." msgid "Error removing %s from favorites." msgstr "Chyba pri odstraňovaní %s z obľúbených položiek." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Nedeľa" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pondelok" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Utorok" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Streda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Štvrtok" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Piatok" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Sobota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Január" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Február" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Marec" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Apríl" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Máj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Jún" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Júl" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "August" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Október" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "December" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Pred 1 hodinou" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "dnes" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "včera" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "minulý rok" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "pred rokmi" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 031de089cfc..4ce24c410d1 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 1e74ef99333..7ab402ce02b 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 0292e541077..53f76634f11 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 3a8a680f289..e1081c7e3c8 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 10e0f7ec21a..42a799aa554 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 3b296582a89..668a6830fea 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 20c80449a9c..64d59799192 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 3bde3a9618a..5c00676c0b2 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# barbarak <barbarak@arnes.si>, 2013 # mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" +"Last-Translator: barbarak <barbarak@arnes.si>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s je delil »%s« z vami" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -62,135 +63,135 @@ msgstr "Za izbris ni izbrana nobena kategorija." msgid "Error removing %s from favorites." msgstr "Napaka odstranjevanja %s iz priljubljenih predmetov." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "nedelja" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "ponedeljek" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "torek" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "sreda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "četrtek" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "petek" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "sobota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "marec" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "april" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "junij" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "julij" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "avgust" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "september" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "november" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "december" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Pred 1 uro" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "danes" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "včeraj" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "lansko leto" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "let nazaj" @@ -204,7 +205,7 @@ msgstr "Prekliči" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "Napaka pri nalaganju predloge za izbor dokumenta" #: js/oc-dialogs.js:164 msgid "Yes" @@ -408,11 +409,11 @@ msgid "" "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 "" +msgstr "Datoteke so šifrirane. Če niste omogočili ključa za obnovitev, žal podatkov ne bo mogoče pridobiti nazaj, ko boste geslo enkrat spremenili. Če niste prepričani, kaj storiti, se obrnite na skrbnika storitve. Ste prepričani, da želite nadaljevati?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Da, potrjujem ponastavitev gesla" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -471,7 +472,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Pozdravljen/a,⏎\n⏎\nsporočam, da je %s delil %s s teboj.⏎\nPoglej na: %s⏎\n⏎\nLep pozdrav!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -613,7 +614,7 @@ msgstr "Druge prijavne možnosti" msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " "href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "" +msgstr "Pozdravljen/a,<br><br>sporočam, da je %s delil »%s« s teboj.<br><a href=\"%s\">Poglej vsebine!</a><br><br>Lep pozdrav!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 5c3ee02506c..b51480aae34 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# barbarak <barbarak@arnes.si>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" +"Last-Translator: barbarak <barbarak@arnes.si>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -217,7 +218,7 @@ msgstr "{count} datotek" #: lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +msgstr "Ime mape je neveljavno. Uporaba oznake \"Souporaba\" je rezervirana za ownCloud" #: lib/app.php:73 msgid "Unable to rename file" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 3b256579813..67799e2eea8 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# barbarak <barbarak@arnes.si>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-22 02:06+0200\n" -"PO-Revision-Date: 2013-06-22 00:07+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 07:49+0000\n" +"Last-Translator: barbarak <barbarak@arnes.si>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,11 +38,11 @@ msgstr "" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "Geslo je bilo uspešno spremenjeno." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "Gesla ni bilo mogoče spremeniti. Morda vnos starega gesla ni bil pravilen." #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." @@ -86,7 +87,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "osebne nastavitve" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -103,11 +104,11 @@ msgstr "" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" -msgstr "" +msgstr "Omogočeno" #: templates/settings-admin.php:29 templates/settings-personal.php:62 msgid "Disabled" -msgstr "" +msgstr "Onemogočeno" #: templates/settings-admin.php:34 msgid "Change recovery key password:" @@ -123,7 +124,7 @@ msgstr "" #: templates/settings-admin.php:53 msgid "Change Password" -msgstr "" +msgstr "Spremeni geslo" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" @@ -141,11 +142,11 @@ msgstr "" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Staro geslo" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Trenutno geslo" #: templates/settings-personal.php:35 msgid "Update Private Key Password" @@ -163,8 +164,8 @@ msgstr "" #: templates/settings-personal.php:63 msgid "File recovery settings updated" -msgstr "" +msgstr "Nastavitve obnavljanja dokumentov so bile posodobljene" #: templates/settings-personal.php:64 msgid "Could not update file recovery" -msgstr "" +msgstr "Nastavitev za obnavljanje dokumentov ni bilo mogoče posodobiti" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 1a077ab4058..a11446a0926 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index ddf9328eb3f..5026134d207 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 58a0639be39..b1a18d468a5 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 8ce3264d144..007381649ce 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# barbarak <barbarak@arnes.si>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" +"Last-Translator: barbarak <barbarak@arnes.si>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,7 +124,7 @@ msgstr "Prijaviti se je treba v obstoječi ali pa skrbniški račun." #: setup.php:152 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Povezava z bazo Oracle ni uspela." #: setup.php:234 msgid "MySQL username and/or password not valid" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index a25daf32280..bac19715193 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# barbarak <barbarak@arnes.si>, 2013 # mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" +"Last-Translator: barbarak <barbarak@arnes.si>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -466,13 +467,13 @@ msgstr "Ustvari" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "" +msgstr "Obnovitev administratorjevega gesla" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Vnesite geslo za obnovitev, ki ga boste uporabljali za obnovitev datotek uporabnikov med spremembo gesla" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index fb976fa8eda..fac01f35126 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index c859d4089bb..c32653c1086 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Nuk selektuar për tu eliminuar asnjë kategori." msgid "Error removing %s from favorites." msgstr "Veprim i gabuar gjatë heqjes së %s nga të parapëlqyerat." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "E djelë" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "E hënë" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "E martë" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "E mërkurë" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "E enjte" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "E premte" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "E shtunë" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Janar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Shkurt" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Prill" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Qershor" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Korrik" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Gusht" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Shtator" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Tetor" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Nëntor" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Dhjetor" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Parametra" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minutë më parë" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuta më parë" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 orë më parë" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} orë më parë" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "sot" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "dje" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} ditë më parë" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} muaj më parë" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "vite më parë" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 0bb091ddfe1..c8d5052678a 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 97bd48d0f4a..ca51a60fa34 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 0f78a0428ca..7836344e86d 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 9c51d0d918a..2af30e5d349 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index bdce0babf2c..a4bd842432d 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 2ddb2f8fb2d..6b6c2ca8017 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 3e9e25c799f..01264f0e070 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 6f7fe3054fa..897d8ad5107 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Ни једна категорија није означена за бр msgid "Error removing %s from favorites." msgstr "Грешка приликом уклањања %s из омиљених" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Недеља" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понедељак" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Уторак" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Среда" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четвртак" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Петак" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Субота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Јануар" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Фебруар" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Март" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Април" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Мај" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Јун" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Јул" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Август" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Септембар" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Октобар" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Новембар" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Децембар" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Поставке" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "пре 1 минут" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "пре {minutes} минута" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "Пре једног сата" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "Пре {hours} сата (сати)" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "данас" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "јуче" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "пре {days} дана" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "Пре {months} месеца (месеци)" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "месеци раније" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "прошле године" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "година раније" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 27b206e3b30..da6fe98e273 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 4fc8bfe2210..80baec36632 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 7b6b712ad79..d5abb116120 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index efab4ba7df8..3395790f161 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 94ce49629ec..c0445fda7aa 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 0edacd55f88..e4b1506ff99 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 8f6660299ba..c5e4184e070 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 7f2cbe42947..e2d4a5c73ac 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Nedelja" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Ponedeljak" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Utorak" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Sreda" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Četvrtak" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Petak" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Subota" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januar" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februar" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mart" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Jun" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Jul" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Avgust" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Septembar" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktobar" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Novembar" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Decembar" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index e1dfef82c02..ed6cfd0f327 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index d4d6757e284..6446de912d3 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index f10e3f4586c..7581c978982 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 9563c8558ca..7098f5c2ac5 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index fb70bae00ab..ed7d135a6c3 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index a03d4492b05..e690317c36b 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index eb44e4ddb96..675310b67fb 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -64,135 +64,135 @@ msgstr "Inga kategorier valda för radering." msgid "Error removing %s from favorites." msgstr "Fel vid borttagning av %s från favoriter." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Söndag" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Måndag" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Tisdag" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Fredag" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Lördag" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Januari" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Februari" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mars" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "April" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Maj" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Juni" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Juli" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Augusti" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "September" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Oktober" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "November" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "December" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Inställningar" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "i dag" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "i går" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "förra månaden" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "månader sedan" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "förra året" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "år sedan" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index e3ab3a8b0fa..7cd3e31c819 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Gunnar Norin <blittan@xbmc.org>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 8293e77ee14..032e828c4e5 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index bbbe8d804af..f7d01ee5047 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index c06663ba391..31bf987d3f6 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 507f7fe2be2..8d3173e04e4 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 6a21f615f47..353d14591b6 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 2ec1cd88767..659525a737a 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index de4b95d8dfc..900b2209548 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "நீக்குவதற்கு எந்தப் பிரிவ msgid "Error removing %s from favorites." msgstr "விருப்பத்திலிருந்து %s ஐ அகற்றுவதில் வழு.உஇஇ" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "ஞாயிற்றுக்கிழமை" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "திங்கட்கிழமை" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "செவ்வாய்க்கிழமை" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "புதன்கிழமை" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "வியாழக்கிழமை" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "வெள்ளிக்கிழமை" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "சனிக்கிழமை" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "தை" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "மாசி" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "பங்குனி" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "சித்திரை" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "வைகாசி" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "ஆனி" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "ஆடி" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "ஆவணி" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "புரட்டாசி" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ஐப்பசி" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "கார்த்திகை" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "மார்கழி" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "இன்று" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{நாட்கள்} நாட்களுக்கு முன்" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "வருடங்களுக்கு முன்" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index fcf558d7b33..a2b3ad473e4 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 91c73433118..dda6a6339e3 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index fa992fcda39..89718d4286f 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index e9dbed5ce59..c31758defe0 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index f3723f122f2..d9e007ee80a 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 0e962dc0c4f..c37eb589824 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 20cebcc8404..2e00a6891d8 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index ca0b7c1279a..42870b6b6b5 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "ఆదివారం" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "సోమవారం" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "మంగళవారం" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "బుధవారం" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "గురువారం" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "శుక్రవారం" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "శనివారం" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "జనవరి" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "ఫిబ్రవరి" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "మార్చి" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "ఏప్రిల్" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "మే" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "జూన్" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "జూలై" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "ఆగస్ట్" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "సెప్టెంబర్" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "అక్టోబర్" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "నవంబర్" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "డిసెంబర్" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 నిమిషం క్రితం" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} నిమిషాల క్రితం" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 గంట క్రితం" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} గంటల క్రితం" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "ఈరోజు" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} రోజుల క్రితం" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} నెలల క్రితం" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "సంవత్సరాల క్రితం" diff --git a/l10n/te/files.po b/l10n/te/files.po index e9399d377c9..3da76a284d6 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index e23bc5a06a2..6e6e4783906 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 183a3b5af12..699cce94b68 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index b0d30e54b9b..1d928317ce7 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 00:14+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 3645b758858..76f1847e40a 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 5795cb7c3d3..2f595b3fe9d 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d0440871c34..db739ba85bb 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-06-26 02:00+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 0e29168897c..4207afcfd51 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-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index db3121dbd31..90ba19ef1bb 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-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 7007062249f..c5004183190 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-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 12b381fd721..df0d39e194c 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-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 31bfae35d98..6f2e9ad664a 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-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 13326efe046..e1f89189446 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-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 7b9eb60885a..c3384c2cdf0 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-06-26 02:00+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 177a75f01e1..2f9854b8bd3 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-06-26 02:00+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 9479b50b68c..d02d53a2b54 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-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index e6d1550b779..ea0db57fa6f 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-06-26 01:59+0200\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 3a3393804f6..b1f727195fa 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "ยังไม่ได้เลือกหมวดหมู่ที msgid "Error removing %s from favorites." msgstr "เกิดข้อผิดพลาดในการลบ %s ออกจากรายการโปรด" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "วันอาทิตย์" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "วันจันทร์" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "วันอังคาร" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "วันพุธ" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "วันพฤหัสบดี" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "วันศุกร์" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "วันเสาร์" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "มกราคม" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "กุมภาพันธ์" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "มีนาคม" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "เมษายน" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "พฤษภาคม" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "มิถุนายน" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "กรกฏาคม" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "สิงหาคม" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "กันยายน" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ตุลาคม" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "พฤศจิกายน" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "ธันวาคม" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 นาทีก่อนหน้านี้" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} นาทีก่อนหน้านี้" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} ชั่วโมงก่อนหน้านี้" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "วันนี้" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{day} วันก่อนหน้านี้" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} เดือนก่อนหน้านี้" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "ปี ที่ผ่านมา" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 61815d1e936..4b6e1d460eb 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 4341cd5cf42..f2ee0df7cbd 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index cf172ba893e..6a807467898 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 39875c6c052..e93c3b7ffa7 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 9ffcadec3d6..0989dbd9cfa 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 0ab25361c6a..b17614bd44c 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 93493763a77..be96bd4e87f 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 4e66cbc4cfd..c72977f9499 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Silmek için bir kategori seçilmedi" msgid "Error removing %s from favorites." msgstr "%s favorilere çıkarılırken hata oluştu" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Pazar" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Pazartesi" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Salı" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Çarşamba" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Perşembe" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Cuma" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Cumartesi" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Ocak" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Şubat" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Mart" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Nisan" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Mayıs" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Haziran" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Temmuz" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Ağustos" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Eylül" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Ekim" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Kasım" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Aralık" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "bugün" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "dün" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "geçen ay" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "ay önce" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "geçen yıl" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "yıl önce" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index cc38053168b..f068a117539 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: ismail yenigül <ismail.yenigul@surgate.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 418f0a3bcd7..4fe357be5d9 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index e2294c4feda..65b6cd5bd92 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 188c11017a2..3c9fcdbb03d 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index f21d2dd4370..63aea08ae37 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: ismail yenigül <ismail.yenigul@surgate.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 6a3b63dc046..6099530aff3 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 7ba36267212..42ba932378b 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: ismail yenigül <ismail.yenigul@surgate.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 6089b3606d8..caf73f807b8 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "يەكشەنبە" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "دۈشەنبە" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "سەيشەنبە" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "چارشەنبە" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "پەيشەنبە" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "جۈمە" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "شەنبە" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "قەھرىتان" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "ھۇت" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "نەۋرۇز" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "ئۇمۇت" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "باھار" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "سەپەر" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "چىللە" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "تومۇز" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "مىزان" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "ئوغۇز" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "ئوغلاق" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "كۆنەك" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 مىنۇت ئىلگىرى" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 سائەت ئىلگىرى" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "بۈگۈن" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index a73cbb01acd..82619800af5 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index bd5ffff3a22..0d56f719e5e 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Abduqadir Abliz <sahran.ug@gmail.com>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 28bc0bfd755..cd5743bfab5 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 0684a53b3fb..ea01bb0418e 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Abduqadir Abliz <sahran.ug@gmail.com>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 2aceb7019ec..46b95ee9f3b 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: Abduqadir Abliz <sahran.ug@gmail.com>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index d8b3c96b2b7..8bec3375cb1 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index a6fb13c8f0c..3ffb8f09c49 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 4dea6f8b180..fcf106f2743 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "Жодної категорії не обрано для видален msgid "Error removing %s from favorites." msgstr "Помилка при видалені %s із обраного." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Неділя" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Понеділок" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Вівторок" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Середа" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Четвер" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "П'ятниця" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Субота" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Січень" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Лютий" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Березень" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Квітень" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Травень" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Червень" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Липень" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Серпень" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Вересень" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Жовтень" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Листопад" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Грудень" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Налаштування" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "сьогодні" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "вчора" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "минулого місяця" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "місяці тому" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "минулого року" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "роки тому" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 008c0f85f18..26dc5840696 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 1b5e6a3f234..31417d42132 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 6232d2ee417..c20c81f0205 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 50805230f8d..97e6dba77ae 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index ea816a426dc..2ce5571dffe 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 370bbb936f3..d109fda842e 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index b70c1e42374..3cf3f78ade6 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 6cbc956d8cb..3ac680bf45e 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "ختم کرنے کے لیے کسی زمرہ جات کا انتخاب ن msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "جنوری" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "فرورئ" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "مارچ" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "اپریل" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "مئی" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "جون" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "جولائی" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "اگست" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "ستمبر" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "اکتوبر" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "نومبر" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "دسمبر" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 18bde9e30a2..ece71548a7d 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index a15724fbb66..5a78c3b947d 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 1d699bc38a6..52b8565ddfb 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-27 02:04+0200\n" +"PO-Revision-Date: 2013-06-27 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 6d887cd7d19..cef2cb328ba 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 8da1c6a159f..2f52ca8deba 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index ab937a595ee..5ba2579182b 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "Bạn chưa chọn mục để xóa" msgid "Error removing %s from favorites." msgstr "Lỗi xóa %s từ mục yêu thích." -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "Chủ nhật" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "Thứ 2" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "Thứ 3" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "Thứ 4" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "Thứ 5" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "Thứ " -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "Thứ 7" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "Tháng 1" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "Tháng 2" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "Tháng 3" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "Tháng 4" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "Tháng 5" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "Tháng 6" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "Tháng 7" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "Tháng 8" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "Tháng 9" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "Tháng 10" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "Tháng 11" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "Tháng 12" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 phút trước" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} phút trước" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 giờ trước" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} giờ trước" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "hôm nay" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} ngày trước" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "tháng trước" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} tháng trước" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "tháng trước" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "năm trước" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "năm trước" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 9087c7d8efc..eb1334a82f4 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index e7b6e40ae3b..94e66d87b52 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: xtdv <truong.tx8@gmail.com>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 921957dacd5..7434e860ffc 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 89cefe5b3b9..1d11dd20576 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 6f3be6d060d..c71b84999d5 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 665ca3aff96..84a950d0e77 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index d41ff5365af..845e98b9e76 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index cabc3fa2cf7..17f8906dada 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "没有选中要删除的分类。" msgid "Error removing %s from favorites." msgstr "在移除收藏夹中的 %s 时发生错误。" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "星期天" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "星期一" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "星期二" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "星期三" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "星期四" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "星期五" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "星期六" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "一月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "二月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "三月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "四月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "五月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "六月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "七月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "八月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "九月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "十月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "十一月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "十二月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "设置" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "秒前" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours}小时前" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今天" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨天" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "上个月" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months}月前" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "月前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "去年" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 7ea290bef6e..4eb98e767dd 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 27e3bb2f033..5902b97e537 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: hyy0591 <yangyu.huang@gmail.com>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 5ddada9bda5..2dcd4cbe2e2 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 03a068568de..6732d9a5a62 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 5f575f56efd..5aafff4af4b 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 6ec7f7cff76..c4809f80d08 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 4c6b07207df..3ffa357f7bf 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 7b713baa214..cf859bcc04f 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -62,135 +62,135 @@ msgstr "没有选择要删除的类别" msgid "Error removing %s from favorites." msgstr "从收藏夹中移除%s时出错。" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "星期日" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "星期一" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "星期二" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "星期三" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "星期四" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "星期五" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "星期六" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "一月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "二月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "三月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "四月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "五月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "六月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "七月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "八月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "九月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "十月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "十一月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "十二月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "设置" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "秒前" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今天" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨天" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "上月" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "月前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "去年" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 1c792153cd3..2fe5f4dd9c8 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: zhangmin <zm1990s@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 94375cf1b8a..37924fa6220 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 111e094460e..bd4527b0b3d 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 74bc91c661e..4f9b8f4464a 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index e8e6179f197..d6dd4f2e1ab 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: modokwang <modokwang@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 976de08fc87..c374a790f0b 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 315a0ac33ab..e9d8ec160bd 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: modokwang <modokwang@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index c3282eca957..25c1332c839 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -61,135 +61,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "星期日" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "星期一" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "星期二" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "星期三" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "星期四" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "星期五" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "星期六" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "一月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "二月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "三月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "四月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "五月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "六月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "七月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "八月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "九月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "十月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "十一月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "十二月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "設定" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今日" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨日" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "前一月" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "個月之前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 8b9823ccea1..0ed24005561 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index a180f2b4568..4c0bc76f750 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index d8f8f0bcc2b..2fc02c0b4f6 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 9a5d074e4d7..5aaf67f4bd4 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 5e3b13ad018..82432cc9bb9 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 787dfe4975d..192792e641f 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 055359846a7..702d2308acc 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index c2abc1a16f7..69b1b4b0fe4 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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:14+0000\n" "Last-Translator: chenanyeh <chnjsn1221@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -63,135 +63,135 @@ msgstr "沒有選擇要刪除的分類。" msgid "Error removing %s from favorites." msgstr "從最愛移除 %s 時發生錯誤。" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "週日" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "週一" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "週二" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "週三" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "週四" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "週五" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "週六" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "一月" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "二月" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "三月" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "四月" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "五月" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "六月" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "七月" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "八月" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "九月" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "十月" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "十一月" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "十二月" -#: js/js.js:286 +#: js/js.js:289 msgid "Settings" msgstr "設定" -#: js/js.js:718 +#: js/js.js:721 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:719 +#: js/js.js:722 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:720 +#: js/js.js:723 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:721 +#: js/js.js:724 msgid "1 hour ago" msgstr "1 小時之前" -#: js/js.js:722 +#: js/js.js:725 msgid "{hours} hours ago" msgstr "{hours} 小時前" -#: js/js.js:723 +#: js/js.js:726 msgid "today" msgstr "今天" -#: js/js.js:724 +#: js/js.js:727 msgid "yesterday" msgstr "昨天" -#: js/js.js:725 +#: js/js.js:728 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:726 +#: js/js.js:729 msgid "last month" msgstr "上個月" -#: js/js.js:727 +#: js/js.js:730 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:728 +#: js/js.js:731 msgid "months ago" msgstr "幾個月前" -#: js/js.js:729 +#: js/js.js:732 msgid "last year" msgstr "去年" -#: js/js.js:730 +#: js/js.js:733 msgid "years ago" msgstr "幾年前" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 4896947e1dd..7fc21aaa73e 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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:14+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: pellaeon <nfsmwlin@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 1aca2dcbc34..5ffc2f64184 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: pellaeon <nfsmwlin@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 6c75be8ce99..b6c3aeb8972 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 86ccf90cda6..e7dd0155da3 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 246177c3609..1550437e429 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-26 00:02+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: pellaeon <nfsmwlin@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index f1377e02810..ef9523a328a 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/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-06-26 02:00+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 9932a5abb00..c6bc4fc15b9 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.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-06-26 01:59+0200\n" -"PO-Revision-Date: 2013-06-25 23:15+0000\n" +"POT-Creation-Date: 2013-06-28 01:58+0200\n" +"PO-Revision-Date: 2013-06-27 23:16+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/connector/sabre/directory.php b/lib/connector/sabre/directory.php index 6ccb54b79ab..3d15a2a584d 100644 --- a/lib/connector/sabre/directory.php +++ b/lib/connector/sabre/directory.php @@ -45,9 +45,15 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa * * @param string $name Name of the file * @param resource|string $data Initial payload + * @throws Sabre_DAV_Exception_Forbidden * @return null|string */ public function createFile($name, $data = null) { + + if (!\OC\Files\Filesystem::isCreatable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } + if (isset($_SERVER['HTTP_OC_CHUNKED'])) { $info = OC_FileChunking::decodeName($name); if (empty($info)) { @@ -102,10 +108,15 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa * Creates a new subdirectory * * @param string $name + * @throws Sabre_DAV_Exception_Forbidden * @return void */ public function createDirectory($name) { + if (!\OC\Files\Filesystem::isCreatable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } + $newPath = $this->path . '/' . $name; if(!\OC\Files\Filesystem::mkdir($newPath)) { throw new Sabre_DAV_Exception_Forbidden('Could not create directory '.$newPath); @@ -203,9 +214,13 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa * Deletes all files in this directory, and then itself * * @return void + * @throws Sabre_DAV_Exception_Forbidden */ public function delete() { + if (!\OC\Files\Filesystem::isDeletable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } if ($this->path != "/Shared") { foreach($this->getChildren() as $child) $child->delete(); \OC\Files\Filesystem::rmdir($this->path); diff --git a/lib/connector/sabre/file.php b/lib/connector/sabre/file.php index 91646312e90..438d9871c22 100644 --- a/lib/connector/sabre/file.php +++ b/lib/connector/sabre/file.php @@ -41,24 +41,29 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * return an ETag, and just return null. * * @param resource $data + * @throws Sabre_DAV_Exception_Forbidden * @return string|null */ public function put($data) { + if (!\OC\Files\Filesystem::isUpdatable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } + // mark file as partial while uploading (ignored by the scanner) $partpath = $this->path . '.part'; \OC\Files\Filesystem::file_put_contents($partpath, $data); //detect aborted upload - if (isset ($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'PUT' ) { + if (isset ($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] === 'PUT') { if (isset($_SERVER['CONTENT_LENGTH'])) { $expected = $_SERVER['CONTENT_LENGTH']; $actual = \OC\Files\Filesystem::filesize($partpath); if ($actual != $expected) { \OC\Files\Filesystem::unlink($partpath); throw new Sabre_DAV_Exception_BadRequest( - 'expected filesize ' . $expected . ' got ' . $actual); + 'expected filesize ' . $expected . ' got ' . $actual); } } } @@ -69,7 +74,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D //allow sync clients to send the mtime along in a header $mtime = OC_Request::hasModificationTime(); if ($mtime !== false) { - if(\OC\Files\Filesystem::touch($this->path, $mtime)) { + if (\OC\Files\Filesystem::touch($this->path, $mtime)) { header('X-OC-MTime: accepted'); } } @@ -92,9 +97,13 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D * Delete the current file * * @return void + * @throws Sabre_DAV_Exception_Forbidden */ public function delete() { + if (!\OC\Files\Filesystem::isDeletable($this->path)) { + throw new \Sabre_DAV_Exception_Forbidden(); + } \OC\Files\Filesystem::unlink($this->path); } diff --git a/lib/connector/sabre/locks.php b/lib/connector/sabre/locks.php index 7aca2e43712..69496c15ada 100644 --- a/lib/connector/sabre/locks.php +++ b/lib/connector/sabre/locks.php @@ -182,7 +182,7 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { } $result = OC_DB::executeAudited( $sql, array(OC_User::getUser(), $uri, $lockInfo->token)); - return $result->numRows() === 1; + return $result === 1; } diff --git a/lib/db.php b/lib/db.php index a6b81aaba69..4d6788f2bda 100644 --- a/lib/db.php +++ b/lib/db.php @@ -326,11 +326,12 @@ class OC_DB { * @param string $query Query string * @param int $limit * @param int $offset + * @param bool $isManipulation * @return MDB2_Statement_Common prepared SQL query * * SQL query via MDB2 prepare(), needs to be execute()'d! */ - static public function prepare( $query , $limit=null, $offset=null ) { + static public function prepare( $query , $limit = null, $offset = null, $isManipulation = null) { if (!is_null($limit) && $limit != -1) { if (self::$backend == self::BACKEND_MDB2) { @@ -367,12 +368,23 @@ class OC_DB { OC_Log::write('core', 'DB prepare : '.$query, OC_Log::DEBUG); } self::connect(); + + if ($isManipulation === null) { + //try to guess, so we return the number of rows on manipulations + $isManipulation = self::isManipulation($query); + } + // return the result if(self::$backend==self::BACKEND_MDB2) { - $result = self::$connection->prepare( $query ); + // differentiate between query and manipulation + if ($isManipulation) { + $result = self::$connection->prepare( $query, null, MDB2_PREPARE_MANIP ); + } else { + $result = self::$connection->prepare( $query, null, MDB2_PREPARE_RESULT ); + } // Die if we have an error (error means: bad query, not 0 results!) - if( PEAR::isError($result)) { + if( self::isError($result)) { throw new DatabaseException($result->getMessage(), $query); } }else{ @@ -381,7 +393,8 @@ class OC_DB { }catch(PDOException $e) { throw new DatabaseException($e->getMessage(), $query); } - $result=new PDOStatementWrapper($result); + // differentiate between query and manipulation + $result = new PDOStatementWrapper($result, $isManipulation); } if ((is_null($limit) || $limit == -1) and self::$cachingEnabled ) { $type = OC_Config::getValue( "dbtype", "sqlite" ); @@ -391,7 +404,33 @@ class OC_DB { } return $result; } - + + /** + * tries to guess the type of statement based on the first 10 characters + * the current check allows some whitespace but does not work with IF EXISTS or other more complex statements + * + * @param string $sql + */ + static public function isManipulation( $sql ) { + $selectOccurence = stripos ($sql, "SELECT"); + if ($selectOccurence !== false && $selectOccurence < 10) { + return false; + } + $insertOccurence = stripos ($sql, "INSERT"); + if ($insertOccurence !== false && $insertOccurence < 10) { + return true; + } + $updateOccurence = stripos ($sql, "UPDATE"); + if ($updateOccurence !== false && $updateOccurence < 10) { + return true; + } + $deleteOccurance = stripos ($sql, "DELETE"); + if ($deleteOccurance !== false && $deleteOccurance < 10) { + return true; + } + return false; + } + /** * @brief execute a prepared statement, on error write log and throw exception * @param mixed $stmt PDOStatementWrapper | MDB2_Statement_Common , @@ -718,6 +757,9 @@ class OC_DB { } catch(PDOException $e) { OC_Template::printExceptionErrorPage( $e ); } + if ($result === 0) { + return true; + } return $result; } @@ -754,6 +796,7 @@ class OC_DB { }elseif( $type == 'oci' ) { $query = str_replace( '`', '"', $query ); $query = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); + $query = str_ireplace( 'UNIX_TIMESTAMP()', '((CAST(SYS_EXTRACT_UTC(systimestamp) AS DATE))-TO_DATE(\'1970101000000\',\'YYYYMMDDHH24MiSS\'))*24*3600', $query ); }elseif( $type == 'mssql' ) { $query = preg_replace( "/\`(.*?)`/", "[$1]", $query ); $query = str_replace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); @@ -919,7 +962,7 @@ class OC_DB { * @return bool */ public static function isError($result) { - if(!$result) { + if(self::$backend==self::BACKEND_PDO and $result === false) { return true; }elseif(self::$backend==self::BACKEND_MDB2 and PEAR::isError($result)) { return true; @@ -997,11 +1040,13 @@ class PDOStatementWrapper{ /** * @var PDOStatement */ - private $statement=null; - private $lastArguments=array(); + private $statement = null; + private $isManipulation = false; + private $lastArguments = array(); - public function __construct($statement) { - $this->statement=$statement; + public function __construct($statement, $isManipulation = false) { + $this->statement = $statement; + $this->isManipulation = $isManipulation; } /** @@ -1023,16 +1068,19 @@ class PDOStatementWrapper{ $input = $this->tryFixSubstringLastArgumentDataForMSSQL($input); } - $result=$this->statement->execute($input); + $result = $this->statement->execute($input); } else { - $result=$this->statement->execute(); + $result = $this->statement->execute(); } - if ($result) { - return $this; - } else { + if ($result === false) { return false; } + if ($this->isManipulation) { + return $this->statement->rowCount(); + } else { + return $this; + } } private function tryFixSubstringLastArgumentDataForMSSQL($input) { diff --git a/lib/files/stream/staticstream.php b/lib/files/stream/staticstream.php index 7725a6a5a04..45b1a7a81f8 100644 --- a/lib/files/stream/staticstream.php +++ b/lib/files/stream/staticstream.php @@ -9,6 +9,8 @@ namespace OC\Files\Stream; class StaticStream { + const MODE_FILE = 0100000; + public $context; protected static $data = array(); @@ -26,6 +28,10 @@ class StaticStream { public function stream_flush() { } + public static function clear() { + self::$data = array(); + } + public function stream_open($path, $mode, $options, &$opened_path) { switch ($mode[0]) { case 'r': @@ -94,36 +100,7 @@ class StaticStream { } public function stream_stat() { - $size = strlen(self::$data[$this->path]); - $time = time(); - return array( - 0 => 0, - 'dev' => 0, - 1 => 0, - 'ino' => 0, - 2 => 0777, - 'mode' => 0777, - 3 => 1, - 'nlink' => 1, - 4 => 0, - 'uid' => 0, - 5 => 0, - 'gid' => 0, - 6 => '', - 'rdev' => '', - 7 => $size, - 'size' => $size, - 8 => $time, - 'atime' => $time, - 9 => $time, - 'mtime' => $time, - 10 => $time, - 'ctime' => $time, - 11 => -1, - 'blksize' => -1, - 12 => -1, - 'blocks' => -1, - ); + return $this->url_stat($this->path); } public function stream_tell() { @@ -157,34 +134,22 @@ class StaticStream { if (isset(self::$data[$path])) { $size = strlen(self::$data[$path]); $time = time(); - return array( - 0 => 0, + $data = array( 'dev' => 0, - 1 => 0, 'ino' => 0, - 2 => 0777, - 'mode' => 0777, - 3 => 1, + 'mode' => self::MODE_FILE | 0777, 'nlink' => 1, - 4 => 0, 'uid' => 0, - 5 => 0, 'gid' => 0, - 6 => '', 'rdev' => '', - 7 => $size, 'size' => $size, - 8 => $time, 'atime' => $time, - 9 => $time, 'mtime' => $time, - 10 => $time, 'ctime' => $time, - 11 => -1, 'blksize' => -1, - 12 => -1, 'blocks' => -1, ); + return array_values($data) + $data; } return false; } diff --git a/lib/files/view.php b/lib/files/view.php index 25071709fbe..d8d99698023 100644 --- a/lib/files/view.php +++ b/lib/files/view.php @@ -754,7 +754,7 @@ class View { if ($subStorage) { $subCache = $subStorage->getCache(''); $rootEntry = $subCache->get(''); - $data['size'] += $rootEntry['size']; + $data['size'] += isset($rootEntry['size']) ? $rootEntry['size'] : 0; } } } diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 7f8827d17f3..2073f545232 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -24,6 +24,7 @@ "%s set the database host." => "%s - vnos gostitelja podatkovne zbirke.", "PostgreSQL username and/or password not valid" => "Uporabniško ime ali geslo PostgreSQL ni veljavno", "You need to enter either an existing account or the administrator." => "Prijaviti se je treba v obstoječi ali pa skrbniški račun.", +"Oracle connection could not be established" => "Povezava z bazo Oracle ni uspela.", "MySQL username and/or password not valid" => "Uporabniško ime ali geslo MySQL ni veljavno", "DB Error: \"%s\"" => "Napaka podatkovne zbirke: \"%s\"", "Offending command was: \"%s\"" => "Napačni ukaz je: \"%s\"", diff --git a/lib/public/share.php b/lib/public/share.php index 122ab3fa030..de7025d7b15 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -662,7 +662,13 @@ class Share { // Remove the permissions for all reshares of this item if (!empty($ids)) { $ids = "'".implode("','", $ids)."'"; - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = `permissions` & ?' + // TODO this should be done with Doctrine platform objects + if (\OC_Config::getValue( "dbtype") === 'oci') { + $andOp = 'BITAND(`permissions`, ?)'; + } else { + $andOp = '`permissions` & ?'; + } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = '.$andOp .' WHERE `id` IN ('.$ids.')'); $query->execute(array($permissions)); } @@ -963,6 +969,30 @@ class Share { $switchedItems = array(); $mounts = array(); while ($row = $result->fetchRow()) { + if (isset($row['id'])) { + $row['id']=(int)$row['id']; + } + if (isset($row['share_type'])) { + $row['share_type']=(int)$row['share_type']; + } + if (isset($row['parent'])) { + $row['parent']=(int)$row['parent']; + } + if (isset($row['file_parent'])) { + $row['file_parent']=(int)$row['file_parent']; + } + if (isset($row['file_source'])) { + $row['file_source']=(int)$row['file_source']; + } + if (isset($row['permissions'])) { + $row['permissions']=(int)$row['permissions']; + } + if (isset($row['storage'])) { + $row['storage']=(int)$row['storage']; + } + if (isset($row['stime'])) { + $row['stime']=(int)$row['stime']; + } // Filter out duplicate group shares for users with unique targets if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { $row['share_type'] = self::SHARE_TYPE_GROUP; @@ -978,7 +1008,7 @@ class Share { // Check if the same owner shared with the user twice // through a group and user share - this is allowed $id = $targets[$row[$column]]; - if ($items[$id]['uid_owner'] == $row['uid_owner']) { + if (isset($items[$id]) && $items[$id]['uid_owner'] == $row['uid_owner']) { // Switch to group share type to ensure resharing conditions aren't bypassed if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) { $items[$id]['share_type'] = self::SHARE_TYPE_GROUP; diff --git a/lib/vcategories.php b/lib/vcategories.php index 7bac6e7d4e3..84036958359 100644 --- a/lib/vcategories.php +++ b/lib/vcategories.php @@ -125,7 +125,7 @@ class OC_VCategories { OC_Log::write('core', __METHOD__. 'DB error: ' . OC_DB::getErrorMessage($result), OC_Log::ERROR); return false; } - return ($result->numRows() == 0); + return ($result->numRows() === 0); } catch(Exception $e) { OCP\Util::writeLog('core', __METHOD__.', exception: '.$e->getMessage(), OCP\Util::ERROR); diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index f8876ca7046..9f147f8f2d8 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -1,37 +1,37 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Imposible cargar la lista desde el App Store", "Authentication error" => "Error al autenticar", -"Your display name has been changed." => "El nombre mostrado fue cambiado", +"Your display name has been changed." => "El nombre mostrado que usás fue cambiado.", "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 puede habilitar la aplicación.", +"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 eliminar el grupo", -"Unable to delete user" => "No fue posible eliminar el usuario", +"Invalid email" => "El e-mail no es válido ", +"Unable to delete group" => "No fue posible borrar el grupo", +"Unable to delete user" => "No fue posible borrar el usuario", "Language changed" => "Idioma cambiado", -"Invalid request" => "Pedido no válido", -"Admins can't remove themself from the admin group" => "Los administradores no se pueden quitar a ellos mismos del grupo administrador. ", -"Unable to add user to group %s" => "No fue posible añadir el usuario al grupo %s", -"Unable to remove user from group %s" => "No es posible eliminar al usuario del grupo %s", -"Couldn't update app." => "No se pudo actualizar la aplicación.", -"Update to {appversion}" => "Actualizado a {appversion}", +"Invalid request" => "Pedido inválido", +"Admins can't remove themself from the admin group" => "Los administradores no se pueden quitar a si mismos del grupo administrador. ", +"Unable to add user to group %s" => "No fue posible agregar el usuario al grupo %s", +"Unable to remove user from group %s" => "No es posible borrar al usuario del grupo %s", +"Couldn't update app." => "No se pudo actualizar la App.", +"Update to {appversion}" => "Actualizar a {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", "Please wait...." => "Por favor, esperá....", "Error" => "Error", "Updating...." => "Actualizando....", -"Error while updating app" => "Error al actualizar", +"Error while updating app" => "Error al actualizar App", "Updated" => "Actualizado", "Saving..." => "Guardando...", "deleted" => "borrado", "undo" => "deshacer", -"Unable to remove user" => "Imposible remover usuario", +"Unable to remove user" => "Imposible borrar usuario", "Groups" => "Grupos", "Group Admin" => "Grupo Administrador", "Delete" => "Borrar", -"add group" => "Agregar grupo", +"add group" => "agregar grupo", "A valid username must be provided" => "Debe ingresar un nombre de usuario válido", "Error creating user" => "Error creando usuario", "A valid password must be provided" => "Debe ingresar una contraseña válida", @@ -41,38 +41,38 @@ "Setup Warning" => "Alerta de Configuración", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar.", "Please double check the <a href='%s'>installation guides</a>." => "Por favor, comprobá nuevamente la <a href='%s'>guía de instalación</a>.", -"Module 'fileinfo' missing" => "Modulo 'fileinfo' no existe", -"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 existe. Es muy recomendable que active este modulo para obtener mejores resultados con la detección mime-type", +"Module 'fileinfo' missing" => "El módulo 'fileinfo' no existe", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type", "Locale not working" => "\"Locale\" no está funcionando", -"This ownCloud server can't set system locale 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." => "El servidor ownCloud no pude asignar la localización de sistema a %s. Esto puede hacer que hayan problemas con algunos caracteres en los nombres de los archivos. Te sugerimos que instales los paquetes necesarios en tu sistema para dar soporte a %s.", +"This ownCloud server can't set system locale 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." => "El servidor ownCloud no puede asignar la localización de sistema a %s. Esto puede provocar que existan problemas con algunos caracteres en los nombres de los archivos. Te sugerimos que instales los paquetes necesarios en tu sistema para dar soporte a %s.", "Internet connection not working" => "La conexión a Internet no esta funcionando. ", -"This ownCloud 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 of ownCloud." => "Este servidor ownCloud no tiene una conexión a internet que funcione. Esto significa que alguno de sus servicios como montar dispositivos externos, notificaciones de actualizaciones o instalar aplicaciones de otros desarrolladores no funcionan. Acceder a archivos remotos y mandar e-mails puede ser que tampoco funcione. Te sugerimos que actives una conexión a internet si querés estas características de ownCloud.", +"This ownCloud 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 of ownCloud." => "Este servidor ownCloud no tiene una conexión a internet que funcione. Esto significa que alguno de sus servicios, tales como montar dispositivos externos, notificación de actualizaciones o instalar Apps de otros desarrolladores no funcionan. Puede ser que tampoco puedas acceder a archivos remotos y mandar e-mails. Te sugerimos que actives una conexión a internet si querés estas características en ownCloud.", "Cron" => "Cron", -"Execute one task with each page loaded" => "Ejecute una tarea con cada pagina cargada.", +"Execute one task with each page loaded" => "Ejecutá una tarea con cada pagina cargada.", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio webcron. Llamar la página cron.php en la raíz de ownCloud una vez al minuto sobre http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usa el servicio de sistema cron. Llama al archivo cron.php en la carpeta de ownCloud a través del sistema cronjob cada un minuto.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usar el servicio de sistema cron. Llama al archivo cron.php en la carpeta de ownCloud a través del sistema cronjob cada un minuto.", "Sharing" => "Compartiendo", "Enable Share API" => "Habilitar Share API", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la Share API", "Allow links" => "Permitir enlaces", "Allow users to share items to the public with links" => "Permitir a los usuarios compartir enlaces públicos", "Allow resharing" => "Permitir Re-Compartir", -"Allow users to share items shared with them again" => "Permite a los usuarios volver a compartir items que le han compartido", -"Allow users to share with anyone" => "Permitir a los usuarios compartir con todos.", -"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir solo con los de su propio grupo", +"Allow users to share items shared with them again" => "Permite a los usuarios volver a compartir items que les fueron compartidos", +"Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquiera.", +"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los de sus mismos grupos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Forzar a los clientes conectar a ownCloud vía conexión encriptada", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Por favor conectese a este ownCloud vía HTTPS para habilitar o des-habilitar el forzado de SSL", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "Forzar a los clientes conectar a ownCloud vía conexión encriptada.", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Por favor conectate a este ownCloud vía HTTPS para habilitar o deshabilitar el SSL.", "Log" => "Log", "Log level" => "Nivel de Log", "More" => "Más", "Less" => "Menos", "Version" => "Versión", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Desarrollado por la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidad ownCloud</a>, el <a href=\"https://github.com/owncloud\" target=\"_blank\">código fuente</a> está bajo licencia <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", -"Add your App" => "Añadí tu aplicación", -"More Apps" => "Más aplicaciones", -"Select an App" => "Seleccionar una aplicación", +"Add your App" => "Añadí tu App", +"More Apps" => "Más Apps", +"Select an App" => "Elegí una App", "See application page at apps.owncloud.com" => "Mirá la web de aplicaciones apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licenciado por <span class=\"author\">", "Update" => "Actualizar", @@ -82,9 +82,9 @@ "Forum" => "Foro", "Bugtracker" => "Informar errores", "Commercial Support" => "Soporte comercial", -"Get the apps to sync your files" => "Obtené aplicaciones para sincronizar tus archivos", +"Get the apps to sync your files" => "Obtené Apps para sincronizar tus archivos", "Show First Run Wizard again" => "Mostrar de nuevo el asistente de primera ejecución", -"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Usaste <strong>%s</strong> de los <strong>%s</strong> disponibles", +"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Usás <strong>%s</strong> de los <strong>%s</strong> disponibles", "Password" => "Contraseña", "Your password was changed" => "Tu contraseña fue cambiada", "Unable to change your password" => "No fue posible cambiar tu contraseña", @@ -92,14 +92,14 @@ "New password" => "Nueva contraseña:", "Change password" => "Cambiar contraseña", "Display Name" => "Nombre a mostrar", -"Email" => "Correo Electrónico", +"Email" => "e-mail", "Your email address" => "Tu dirección de e-mail", -"Fill in an email address to enable password recovery" => "Escribí una dirección de correo electrónico para restablecer la contraseña", +"Fill in an email address to enable password recovery" => "Escribí una dirección de e-mail para restablecer la contraseña", "Language" => "Idioma", "Help translate" => "Ayudanos a traducir", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Utiliza esta dirección para conectarte con ownCloud en tu Administrador de Archivos", -"Login Name" => "Nombre de ", +"Use this address to connect to your ownCloud in your file manager" => "Usá esta dirección para conectarte con ownCloud en tu Administrador de Archivos", +"Login Name" => "Nombre de Usuario", "Create" => "Crear", "Admin Recovery Password" => "Recuperación de contraseña de administrador", "Enter the recovery password in order to recover the users files during password change" => "Ingresá la contraseña de recuperación para recuperar los archivos de usuario al cambiar contraseña", @@ -108,7 +108,7 @@ "Other" => "Otros", "Username" => "Nombre de usuario", "Storage" => "Almacenamiento", -"change display name" => "Cambiar el nombre que se muestra", +"change display name" => "Cambiar el nombre mostrado", "set new password" => "Configurar nueva contraseña", "Default" => "Predeterminado" ); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 21c10abf0fe..63fb86485c9 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -101,6 +101,8 @@ "Use this address to connect to your ownCloud in your file manager" => "Ta naslov uporabite za povezavo upravljalnika datotek z oblakom ownCloud.", "Login Name" => "Prijavno ime", "Create" => "Ustvari", +"Admin Recovery Password" => "Obnovitev administratorjevega gesla", +"Enter the recovery password in order to recover the users files during password change" => "Vnesite geslo za obnovitev, ki ga boste uporabljali za obnovitev datotek uporabnikov med spremembo gesla", "Default Storage" => "Privzeta shramba", "Unlimited" => "Neomejeno", "Other" => "Drugo", diff --git a/tests/lib/backgroundjob/timedjob.php b/tests/lib/backgroundjob/timedjob.php index 0af933afef8..f3c3eb4d0dd 100644 --- a/tests/lib/backgroundjob/timedjob.php +++ b/tests/lib/backgroundjob/timedjob.php @@ -41,6 +41,7 @@ class TimedJob extends \PHPUnit_Framework_TestCase { $this->fail("job should have run"); } catch (JobRun $e) { } + $this->assertTrue(true); } public function testShouldNotRunWithinInterval() { @@ -50,6 +51,7 @@ class TimedJob extends \PHPUnit_Framework_TestCase { } catch (JobRun $e) { $this->fail("job should not have run"); } + $this->assertTrue(true); } public function testShouldNotTwice() { @@ -64,5 +66,6 @@ class TimedJob extends \PHPUnit_Framework_TestCase { $this->fail("job should not have run the second time"); } } + $this->assertTrue(true); } } diff --git a/tests/lib/db.php b/tests/lib/db.php index afbdb413c3d..0ba7d5d4b06 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -40,7 +40,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { $this->assertFalse((bool)$row); //PDO returns false, MDB2 returns null $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); $result = $query->execute(array('fullname test', 'uri_1')); - $this->assertTrue((bool)$result); + $this->assertEquals('1', $result); $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_1')); $this->assertTrue((bool)$result); @@ -57,7 +57,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { public function testNOW() { $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (NOW(),?)'); $result = $query->execute(array('uri_2')); - $this->assertTrue((bool)$result); + $this->assertEquals('1', $result); $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_2')); $this->assertTrue((bool)$result); @@ -66,7 +66,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { public function testUNIX_TIMESTAMP() { $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (UNIX_TIMESTAMP(),?)'); $result = $query->execute(array('uri_3')); - $this->assertTrue((bool)$result); + $this->assertEquals('1', $result); $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_3')); $this->assertTrue((bool)$result); @@ -105,7 +105,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { // Normal test to have same known data inserted. $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)'); $result = $query->execute(array($fullname, $uri, $carddata)); - $this->assertTrue((bool)$result); + $this->assertEquals('1', $result); $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array($uri)); $this->assertTrue((bool)$result); diff --git a/tests/lib/files/stream/staticstream.php b/tests/lib/files/stream/staticstream.php new file mode 100644 index 00000000000..d55086196a0 --- /dev/null +++ b/tests/lib/files/stream/staticstream.php @@ -0,0 +1,68 @@ +<?php +/** + * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Files\Stream; + +class StaticStream extends \PHPUnit_Framework_TestCase { + + private $sourceFile; + private $sourceText; + + public function __construct() { + $this->sourceFile = \OC::$SERVERROOT . '/tests/data/lorem.txt'; + $this->sourceText = file_get_contents($this->sourceFile); + } + + public function tearDown() { + \OC\Files\Stream\StaticStream::clear(); + } + + public function testContent() { + file_put_contents('static://foo', $this->sourceText); + $this->assertEquals($this->sourceText, file_get_contents('static://foo')); + } + + public function testMultipleFiles() { + file_put_contents('static://foo', $this->sourceText); + file_put_contents('static://bar', strrev($this->sourceText)); + $this->assertEquals($this->sourceText, file_get_contents('static://foo')); + $this->assertEquals(strrev($this->sourceText), file_get_contents('static://bar')); + } + + public function testOverwrite() { + file_put_contents('static://foo', $this->sourceText); + file_put_contents('static://foo', 'qwerty'); + $this->assertEquals('qwerty', file_get_contents('static://foo')); + } + + public function testIsFile() { + $this->assertFalse(is_file('static://foo')); + file_put_contents('static://foo', $this->sourceText); + $this->assertTrue(is_file('static://foo')); + } + + public function testIsDir() { + $this->assertFalse(is_dir('static://foo')); + file_put_contents('static://foo', $this->sourceText); + $this->assertFalse(is_dir('static://foo')); + } + + public function testFileType() { + file_put_contents('static://foo', $this->sourceText); + $this->assertEquals('file', filetype('static://foo')); + } + + public function testUnlink() { + $this->assertFalse(file_exists('static://foo')); + file_put_contents('static://foo', $this->sourceText); + $this->assertTrue(file_exists('static://foo')); + unlink('static://foo'); + clearstatcache(); + $this->assertFalse(file_exists('static://foo')); + } +} diff --git a/tests/lib/hooks/basicemitter.php b/tests/lib/hooks/basicemitter.php index f48dc53c563..0eae730d030 100644 --- a/tests/lib/hooks/basicemitter.php +++ b/tests/lib/hooks/basicemitter.php @@ -155,6 +155,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->listen('Test', 'test', $listener); $this->emitter->removeListener('Test', 'test', $listener); $this->emitter->emitEvent('Test', 'test'); + + $this->assertTrue(true); } public function testRemoveWildcardListener() { @@ -168,6 +170,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->listen('Test', 'test', $listener2); $this->emitter->removeListener('Test', 'test'); $this->emitter->emitEvent('Test', 'test'); + + $this->assertTrue(true); } public function testRemoveWildcardMethod() { @@ -179,6 +183,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->removeListener('Test', null, $listener); $this->emitter->emitEvent('Test', 'test'); $this->emitter->emitEvent('Test', 'foo'); + + $this->assertTrue(true); } public function testRemoveWildcardScope() { @@ -190,6 +196,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->removeListener(null, 'test', $listener); $this->emitter->emitEvent('Test', 'test'); $this->emitter->emitEvent('Bar', 'test'); + + $this->assertTrue(true); } public function testRemoveWildcardScopeAndMethod() { @@ -203,6 +211,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->emitEvent('Test', 'test'); $this->emitter->emitEvent('Test', 'foo'); $this->emitter->emitEvent('Bar', 'foo'); + + $this->assertTrue(true); } /** @@ -219,6 +229,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->listen('Test', 'test', $listener2); $this->emitter->removeListener('Test', 'test', $listener1); $this->emitter->emitEvent('Test', 'test'); + + $this->assertTrue(true); } /** @@ -232,6 +244,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->listen('Test', 'foo', $listener); $this->emitter->removeListener('Test', 'foo', $listener); $this->emitter->emitEvent('Test', 'test'); + + $this->assertTrue(true); } /** @@ -245,6 +259,8 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->listen('Bar', 'test', $listener); $this->emitter->removeListener('Bar', 'test', $listener); $this->emitter->emitEvent('Test', 'test'); + + $this->assertTrue(true); } /** @@ -257,5 +273,7 @@ class BasicEmitter extends \PHPUnit_Framework_TestCase { $this->emitter->listen('Test', 'test', $listener); $this->emitter->removeListener('Bar', 'test', $listener); $this->emitter->emitEvent('Test', 'test'); + + $this->assertTrue(true); } } diff --git a/tests/lib/session/session.php b/tests/lib/session/session.php index 72dee44e7cb..9ce11274c84 100644 --- a/tests/lib/session/session.php +++ b/tests/lib/session/session.php @@ -44,7 +44,9 @@ abstract class Session extends \PHPUnit_Framework_TestCase { } public function testRemoveNonExisting() { + $this->assertFalse($this->instance->exists('foo')); $this->instance->remove('foo'); + $this->assertFalse($this->instance->exists('foo')); } public function testNotExistsAfterClear() { diff --git a/tests/lib/streamwrappers.php b/tests/lib/streamwrappers.php index c7e51ccfa48..d15b712139d 100644 --- a/tests/lib/streamwrappers.php +++ b/tests/lib/streamwrappers.php @@ -33,18 +33,6 @@ class Test_StreamWrappers extends PHPUnit_Framework_TestCase { $this->assertEquals(count($items), count($result)); } - public function testStaticStream() { - $sourceFile = OC::$SERVERROOT . '/tests/data/lorem.txt'; - $staticFile = 'static://test'; - $this->assertFalse(file_exists($staticFile)); - file_put_contents($staticFile, file_get_contents($sourceFile)); - $this->assertTrue(file_exists($staticFile)); - $this->assertEquals(file_get_contents($sourceFile), file_get_contents($staticFile)); - unlink($staticFile); - clearstatcache(); - $this->assertFalse(file_exists($staticFile)); - } - public function testCloseStream() { //ensure all basic stream stuff works $sourceFile = OC::$SERVERROOT . '/tests/data/lorem.txt'; diff --git a/tests/phpunit.xml b/tests/phpunit.xml.dist index 510c38a3c8b..25dfc64cfeb 100644 --- a/tests/phpunit.xml +++ b/tests/phpunit.xml.dist @@ -15,7 +15,4 @@ </exclude> </whitelist> </filter> - <listeners> - <listener class="PHPUnit_Util_Log_JSON"></listener> - </listeners> </phpunit> |